Changeset 32128 in osm for applications/editors/josm/plugins/pbf
- Timestamp:
- 2016-03-27T19:17:41+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/io/PbfReader.java
r30737 r32128 124 124 Node node = new Node(nodeId+=nodes.getId(i), nodes.getDenseinfo().getVersion(i)); 125 125 // Lat/Lon (delta) 126 node.setCoor(new LatLon(parseLat(nodeLat+=nodes.getLat(i)), parseLon(nodeLon+=nodes.getLon(i))).getRoundedToOsmPrecision Strict());126 node.setCoor(new LatLon(parseLat(nodeLat+=nodes.getLat(i)), parseLon(nodeLon+=nodes.getLon(i))).getRoundedToOsmPrecision()); 127 127 checkCoordinates(node.getCoor()); 128 128 // Changeset (delta) … … 165 165 final Info info = n.getInfo(); 166 166 final Node node = new Node(n.getId(), info.getVersion()); 167 node.setCoor(new LatLon(parseLat(n.getLat()), parseLon(n.getLon())).getRoundedToOsmPrecision Strict());167 node.setCoor(new LatLon(parseLat(n.getLat()), parseLon(n.getLon())).getRoundedToOsmPrecision()); 168 168 checkCoordinates(node.getCoor()); 169 169 checkChangesetId(info.getChangeset());
Note:
See TracChangeset
for help on using the changeset viewer.