Changeset 35976 in osm for applications/editors/josm/plugins/trustosm
- Timestamp:
- 2022-06-14T20:11:21+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/data/TrustNode.java
r33869 r35976 25 25 26 26 public static String generateNodeSigtext(Node node) { 27 LatLon point = node.getCoor();28 27 String sigtext = node.getUniqueId() + "("; 29 sigtext += DecimalDegreesCoordinateFormat.INSTANCE.latToString( point) + ",";30 sigtext += DecimalDegreesCoordinateFormat.INSTANCE.lonToString( point) + ")";28 sigtext += DecimalDegreesCoordinateFormat.INSTANCE.latToString(node) + ","; 29 sigtext += DecimalDegreesCoordinateFormat.INSTANCE.lonToString(node) + ")"; 31 30 return sigtext; 32 31 }
Note:
See TracChangeset
for help on using the changeset viewer.