Changeset 35976 in osm for applications/editors/josm/plugins/jts
- Timestamp:
- 2022-06-14T20:11:21+02:00 (3 years ago)
- Location:
- applications/editors/josm/plugins/jts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/jts/build.xml
r35884 r35976 4 4 <property name="commit.message" value="Commit message"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value="1 0580"/>6 <property name="plugin.main.version" value="12164"/> 7 7 8 8 <property name="plugin.author" value="Josh Doe <josh@joshdoe.com>"/> -
applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSConverter.java
r35122 r35976 71 71 return new Coordinate(node.getEastNorth().getX(), node.getEastNorth().getY()); 72 72 else 73 return new Coordinate(node. getCoor().getX(), node.getCoor().getY());73 return new Coordinate(node.lon(), node.lat()); 74 74 } 75 75
Note:
See TracChangeset
for help on using the changeset viewer.