Package | Description |
---|---|
org.openstreetmap.josm.data.coor.conversion |
Provides the classes for geographic
coordinates
conversion. |
org.openstreetmap.josm.gui |
Provides the classes for JOSM graphical user interface.
|
org.openstreetmap.josm.gui.preferences.projection |
Provides classes for handling projection preferences.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractCoordinateFormat
Abstract base class for
ICoordinateFormat implementations. |
class |
DecimalDegreesCoordinateFormat
Coordinate format that converts coordinates to simple floating point decimal format.
|
class |
DMSCoordinateFormat
Coordinate format that converts a coordinate to degrees, minutes and seconds.
|
class |
NauticalCoordinateFormat
Coordinate format that converts a coordinate to degrees and minutes (nautical format).
|
class |
ProjectedCoordinateFormat
Coordinate format that projects a coordinate and returns northing and easting in
decimal format.
|
Modifier and Type | Field and Description |
---|---|
private static ICoordinateFormat |
CoordinateFormatManager.defaultCoordinateFormat |
Modifier and Type | Field and Description |
---|---|
private static java.util.List<ICoordinateFormat> |
CoordinateFormatManager.formats |
Modifier and Type | Method and Description |
---|---|
static ICoordinateFormat |
CoordinateFormatManager.getCoordinateFormat(java.lang.String id)
Get registered coordinate format by id
|
static ICoordinateFormat |
CoordinateFormatManager.getDefaultFormat()
Replies the default coordinate format to be use
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<ICoordinateFormat> |
CoordinateFormatManager.getCoordinateFormats()
Get the list of all registered coordinate formats.
|
Modifier and Type | Method and Description |
---|---|
static void |
CoordinateFormatManager.registerCoordinateFormat(ICoordinateFormat format)
Register a coordinate format.
|
static void |
CoordinateFormatManager.setCoordinateFormat(ICoordinateFormat format)
Sets the default coordinate format
|
Modifier and Type | Field and Description |
---|---|
private ICoordinateFormat |
MapStatus.previousCoordinateFormat
The
ICoordinateFormat set in the previous update |
Modifier and Type | Field and Description |
---|---|
private JosmComboBox<ICoordinateFormat> |
ProjectionPreference.coordinatesCombo
Combobox with all coordinate display possibilities
|