Modify ↓
Opened 16 years ago
Closed 16 years ago
#3620 closed defect (fixed)
JOSM is creating invisible nodes
| Reported by: | mjulius | Owned by: | team |
|---|---|---|---|
| Priority: | critical | Milestone: | |
| Component: | Core | Version: | latest |
| Keywords: | Cc: |
Description
In JOSM r2209:
- open new layer
- put a node in there
- save the layer
JOSM says: "The document contains no data."
- click on "Save anyway"
The file looks like this:
<?xml version='1.0' encoding='UTF-8'?>
<osm version='0.6' generator='JOSM'>
<node id='-1' action='modify' visible='false' lat='-1.3849332921057806' lon='-1.0229588474265718'>
<tag k='note' v='test' />
</node>
</osm>
Note the visible='false' property.
Attachments (0)
Note:
See TracTickets
for help on using tickets.



Actually, r2206 is already doing the same. r2196 is working correctly.
And here is a test including a way and a relation which are also invisible.
<?xml version='1.0' encoding='UTF-8'?> <osm version='0.6' generator='JOSM'> <node id='-1' visible='false' lat='0.9776477375020779' lon='-1.9644430963855404' /> <node id='-2' visible='false' lat='-1.0591094598296371' lon='0.4345311918272163' /> <way id='-3' visible='false'> <nd ref='-1' /> <nd ref='-2' /> </way> <relation id='-4' visible='false'> <member type='way' ref='-3' role='' /> <tag k='type' v='test' /> </relation> </osm>