1 # The node model represents a current existing node, that is, the latest version. Use OldNode for historical nodes.
6 set_table_name 'current_nodes'
8 validates_presence_of :user_id, :timestamp
9 validates_inclusion_of :visible, :in => [ true, false ]
10 validates_numericality_of :latitude, :longitude
11 validate :validate_position
13 has_many :ways, :through => :way_nodes
14 has_many :old_nodes, :foreign_key => :id
18 # Sanity check the latitude and longitude and add an error if it's broken
20 errors.add_to_base("Node is not in the world") unless in_world?
23 # Is this node withing -90 > latitude > 90 and -180 > longitude > 180>
24 # * returns true/false
26 return false if self.lat < -90 or self.lat > 90
27 return false if self.lon < -180 or self.lon > 180
32 # Search for nodes matching tags within bounding_box
34 # Also adheres to limitations such as within max_number_of_nodes
36 def self.search(bounding_box, tags = {})
37 min_lon, min_lat, max_lon, max_lat = *bounding_box
38 # @fixme a bit of a hack to search for only visible nodes
39 # couldn't think of another to add to tags condition
40 #conditions_hash = tags.merge({ 'visible' => 1 })
42 # using named placeholders http://www.robbyonrails.com/articles/2005/10/21/using-named-placeholders-in-ruby
46 #conditions_hash.each do |key,value|
47 # keys << "#{key} = :#{key}"
48 # values[key.to_sym] = value
50 #conditions = keys.join(' AND ')
52 find_by_area(min_lat, min_lon, max_lat, max_lon,
53 :conditions => 'visible = 1',
54 :limit => APP_CONFIG['max_number_of_nodes']+1)
57 # Read in xml as text and return it's Node object representation
58 def self.from_xml(xml, create=false)
66 doc.find('//osm/node').each do |pt|
67 node.lat = pt['lat'].to_f
68 node.lon = pt['lon'].to_f
70 return nil unless node.in_world?
74 node.id = pt['id'].to_i
78 node.visible = pt['visible'] and pt['visible'] == 'true'
81 node.timestamp = Time.now
84 node.timestamp = Time.parse(pt['timestamp'])
90 pt.find('tag').each do |tag|
91 tags << [tag['k'],tag['v']]
94 node.tags = Tags.join(tags)
103 # Save this node with the appropriate OldNode object to represent it's history.
104 def save_with_history!
106 self.timestamp = Time.now
108 old_node = OldNode.from_node(self)
113 # Turn this Node in to a complete OSM XML object with <osm> wrapper
115 doc = OSM::API.new.get_xml_doc
116 doc.root << to_xml_node()
120 # Turn this Node in to an XML Node without the <osm> wrapper.
121 def to_xml_node(user_display_name_cache = nil)
122 el1 = XML::Node.new 'node'
123 el1['id'] = self.id.to_s
124 el1['lat'] = self.lat.to_s
125 el1['lon'] = self.lon.to_s
127 user_display_name_cache = {} if user_display_name_cache.nil?
129 if user_display_name_cache and user_display_name_cache.key?(self.user_id)
130 # use the cache if available
131 elsif self.user.data_public?
132 user_display_name_cache[self.user_id] = self.user.display_name
134 user_display_name_cache[self.user_id] = nil
137 el1['user'] = user_display_name_cache[self.user_id] unless user_display_name_cache[self.user_id].nil?
139 Tags.split(self.tags) do |k,v|
140 el2 = XML::Node.new('tag')
146 el1['visible'] = self.visible.to_s
147 el1['timestamp'] = self.timestamp.xmlschema
151 # Return the node's tags as a Hash of keys and their values
154 Tags.split(self.tags) do |k,v|