+ def to_xml
+ doc = OSM::API.new.get_xml_doc
+ doc.root << to_xml_node
+ doc
+ end
+
+ def to_xml_node(changeset_cache = {}, user_display_name_cache = {})
+ el = XML::Node.new "node"
+ el["id"] = node_id.to_s
+
+ add_metadata_to_xml_node(el, self, changeset_cache, user_display_name_cache)
+
+ if visible?
+ el["lat"] = lat.to_s
+ el["lon"] = lon.to_s
+ end
+
+ add_tags_to_xml_node(el, old_tags)
+
+ el
+ end
+
+ def save_with_dependencies!
+ save!
+
+ tags.each do |k, v|
+ tag = OldNodeTag.new
+ tag.k = k
+ tag.v = v
+ tag.node_id = node_id
+ tag.version = version
+ tag.save!
+ end
+ end
+
+ def tags
+ @tags ||= Hash[old_tags.collect { |t| [t.k, t.v] }]
+ end
+
+ attr_writer :tags
+
+ def tags_as_hash
+ tags
+ end
+
+ # Pretend we're not in any ways
+ def ways
+ []
+ end
+
+ # Pretend we're not in any relations
+ def containing_relation_members
+ []
+ end
+
+ # check whether this element is the latest version - that is,
+ # has the same version as its "current" counterpart.
+ def is_latest_version?
+ current_node.version == version
+ end