X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4424cd5b947432848fe7f5bc7518fd1b718ecf6c..3d6e1c67fb2291c6933f37bac3b9a3f518e8487a:/app/models/node.rb?ds=sidebyside diff --git a/app/models/node.rb b/app/models/node.rb index 17521428e..872c5c922 100644 --- a/app/models/node.rb +++ b/app/models/node.rb @@ -55,40 +55,43 @@ class Node < GeoRecord p = XML::Parser.new p.string = xml doc = p.parse - - node = Node.new doc.find('//osm/node').each do |pt| - node.lat = pt['lat'].to_f - node.lon = pt['lon'].to_f - - return nil unless node.in_world? + return Node.from_xml_node(pt, create) + end + rescue + return nil + end + end - unless create - if pt['id'] != '0' - node.id = pt['id'].to_i - end - end + def self.from_xml_node(pt, create=false) + node = Node.new - node.visible = pt['visible'] and pt['visible'] == 'true' + node.lat = pt['lat'].to_f + node.lon = pt['lon'].to_f - if create - node.timestamp = Time.now - else - if pt['timestamp'] - node.timestamp = Time.parse(pt['timestamp']) - end - end + return nil unless node.in_world? - tags = [] + unless create + if pt['id'] != '0' + node.id = pt['id'].to_i + end + end - pt.find('tag').each do |tag| - node.add_tag_key_val(tag['k'],tag['v']) - end + node.visible = pt['visible'] and pt['visible'] == 'true' + if create + node.timestamp = Time.now + else + if pt['timestamp'] + node.timestamp = Time.parse(pt['timestamp']) end - rescue - node = nil + end + + tags = [] + + pt.find('tag').each do |tag| + node.add_tag_key_val(tag['k'],tag['v']) end return node @@ -152,6 +155,7 @@ class Node < GeoRecord el1['visible'] = self.visible.to_s el1['timestamp'] = self.timestamp.xmlschema + el1['version'] = self.version.to_s return el1 end