Changeset 33774 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetBase.java
- Timestamp:
- 2017-11-05T19:09:17+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/ImageryOffsetBase.java
r32528 r33774 5 5 import java.util.Map; 6 6 7 import org.openstreetmap.josm.data.coor.CoordinateFormat;8 7 import org.openstreetmap.josm.data.coor.LatLon; 8 import org.openstreetmap.josm.data.coor.conversion.DecimalDegreesCoordinateFormat; 9 9 10 10 /** … … 107 107 108 108 public void putServerParams(Map<String, String> map) { 109 map.put("lat", position.latToString(CoordinateFormat.DECIMAL_DEGREES));110 map.put("lon", position.lonToString(CoordinateFormat.DECIMAL_DEGREES));109 map.put("lat", DecimalDegreesCoordinateFormat.INSTANCE.latToString(position)); 110 map.put("lon", DecimalDegreesCoordinateFormat.INSTANCE.lonToString(position)); 111 111 map.put("author", author); 112 112 map.put("description", description);
Note:
See TracChangeset
for help on using the changeset viewer.
