- el1['id'] = this.id.to_s
- el1['lat'] = this.latitude.to_s
- el1['lon'] = this.longitude.to_s
- split_tags(el1, this.tags)
- el1['visible'] = thiss.visible.to_s
- el1['timestamp'] = this.timestamp.xmlschema
- root << el1
-
- return root
-
+ el1['id'] = self.id.to_s
+ el1['lat'] = self.latitude.to_s
+ el1['lon'] = self.longitude.to_s
+ el1['user'] = self.user.display_name if self.user.data_public?
+ Node.split_tags(el1, self.tags)
+ el1['visible'] = self.visible.to_s
+ el1['timestamp'] = self.timestamp.xmlschema
+ return el1