Package | Description |
---|---|
org.openstreetmap.josm.data.coor |
Provides the classes for geographic
coordinates
(east/north and lat/lon systems). |
org.openstreetmap.josm.data.gpx |
Provides the classes for JOSM
GPX data (points, tracks, routes). |
org.openstreetmap.josm.data.osm |
Provides the classes for OSM data:
Primitives :
Node ,
Way ,
Relation
Users
Tags
Changesets
Utilities classes
|
org.openstreetmap.josm.data.projection |
Provides the classes for JOSM map projection.
|
org.openstreetmap.josm.gui |
Provides the classes for JOSM graphical user interface.
|
org.openstreetmap.josm.gui.layer.imagery |
Provides classes for handling imagery background layers.
|
Modifier and Type | Method and Description |
---|---|
EastNorth |
CachedLatLon.getEastNorth(Projecting projecting)
Replies the projected east/north coordinates.
|
default EastNorth |
ILatLon.getEastNorth(Projecting projecting)
Replies the projected east/north coordinates.
|
Modifier and Type | Method and Description |
---|---|
EastNorth |
WayPoint.getEastNorth(Projecting projecting) |
Modifier and Type | Method and Description |
---|---|
EastNorth |
Node.getEastNorth(Projecting projection) |
Modifier and Type | Interface and Description |
---|---|
interface |
Projection
A projection, i.e. a class that supports conversion from lat/lon
to east/north and back.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractProjection
Implementation of the Projection interface that represents a coordinate reference system and delegates
the real projection and datum conversion to other classes.
|
class |
CustomProjection
Custom projection.
|
class |
ShiftedProjecting
This is a projecting instance that shifts the projection by a given eastnorth offset.
|
Modifier and Type | Field and Description |
---|---|
private Projecting |
ShiftedProjecting.base |
Modifier and Type | Method and Description |
---|---|
java.util.Map<ProjectionBounds,Projecting> |
AbstractProjection.getProjectingsForArea(ProjectionBounds area) |
java.util.Map<ProjectionBounds,Projecting> |
Projecting.getProjectingsForArea(ProjectionBounds area)
Returns an map or (subarea, projecting) paris that contains projecting instances to convert the coordinates inside the given area.
|
java.util.Map<ProjectionBounds,Projecting> |
ShiftedProjecting.getProjectingsForArea(ProjectionBounds area) |
Constructor and Description |
---|
ShiftedProjecting(Projecting base,
EastNorth offset)
Create a new
ShiftedProjecting |
Modifier and Type | Field and Description |
---|---|
private Projecting |
MapViewState.projecting |
Modifier and Type | Method and Description |
---|---|
Projecting |
MapViewState.getProjecting()
Gets the current projecting instance that is used to convert between east/north and lat/lon space.
|
Constructor and Description |
---|
MapViewState(Projecting projection,
int viewWidth,
int viewHeight,
double scale,
EastNorth topLeft) |
MapViewState(Projecting projection,
int viewWidth,
int viewHeight,
double scale,
EastNorth topLeft,
java.awt.Point topLeftInWindow,
java.awt.Point topLeftOnScreen)
Create a new
MapViewState |
MapViewState(Projecting projecting,
MapViewState mvs) |
Modifier and Type | Method and Description |
---|---|
Projecting |
TileCoordinateConverter.getProjecting()
Gets the projecting instance to use to convert between latlon and eastnorth coordinates.
|