Changeset 32127 in osm
- Timestamp:
- 2016-03-27T19:11:42+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/KmlReader.java
r30723 r32127 123 123 String[] values = tab[i].split(","); 124 124 if (values.length >= 2) { 125 LatLon ll = new LatLon(Double.valueOf(values[1]), Double.valueOf(values[0])).getRoundedToOsmPrecision Strict();125 LatLon ll = new LatLon(Double.valueOf(values[1]), Double.valueOf(values[0])).getRoundedToOsmPrecision(); 126 126 node = nodes.get(ll); 127 127 if (node == null) {
Note:
See TracChangeset
for help on using the changeset viewer.