Package | Description |
---|---|
org.openstreetmap.josm.data.projection |
Provides the classes for JOSM map projection.
|
org.openstreetmap.josm.data.projection.datum |
Provides the classes for datums used in map projections.
|
Modifier and Type | Field and Description |
---|---|
protected Datum |
AbstractProjection.datum |
Modifier and Type | Field and Description |
---|---|
(package private) static java.util.Map<java.lang.String,Datum> |
Projections.datums |
Modifier and Type | Method and Description |
---|---|
Datum |
AbstractProjection.getDatum()
Gets the datum this projection is based on.
|
static Datum |
Projections.getDatum(java.lang.String id)
Get a geodetic datum by id.
|
Datum |
CustomProjection.parseDatum(java.util.Map<java.lang.String,java.lang.String> parameters,
Ellipsoid ellps)
Gets the datum
|
Datum |
CustomProjection.parseToWGS84(java.lang.String paramList,
Ellipsoid ellps) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractDatum |
class |
CentricDatum
A datum with different ellipsoid than WGS84, but does not require
shift, rotation or scaling.
|
class |
GRS80Datum
This datum indicates, that GRS80 ellipsoid is used and no conversion
is necessary to get from or to the WGS84 datum.
|
class |
NTV2Datum
Datum based of NTV2 grid shift file.
|
class |
NullDatum
Null Datum does not convert from / to WGS84 ellipsoid, but simply "casts"
the coordinates.
|
class |
SevenParameterDatum
Datum provides general conversion from one ellipsoid to another.
|
class |
ThreeParameterDatum
Datum provides 3 dimensional offset and ellipsoid conversion.
|
class |
WGS84Datum
WGS84 datum.
|