1 class OldNode < ActiveRecord::Base
6 def self.from_node(node)
8 old_node.latitude = node.latitude
9 old_node.longitude = node.longitude
10 old_node.visible = node.visible
11 old_node.tags = node.tags
12 old_node.timestamp = node.timestamp
13 old_node.user_id = node.user_id
19 el1 = XML::Node.new 'node'
20 el1['id'] = self.id.to_s
21 el1['lat'] = self.latitude.to_s
22 el1['lon'] = self.longitude.to_s
23 el1['user'] = self.user.display_name if self.user.data_public?
24 Node.split_tags(el1, self.tags)
25 el1['visible'] = self.visible.to_s
26 el1['timestamp'] = self.timestamp.xmlschema