public interface Proj
Modifier and Type | Method and Description |
---|---|
Bounds |
getAlgorithmBounds()
Return the bounds where this projection is applicable.
|
java.lang.String |
getName()
Replies a human readable name of this projection.
|
java.lang.String |
getProj4Id()
Replies the Proj.4 identifier.
|
void |
initialize(ProjParameters params)
Initialize the projection using the provided parameters.
|
double[] |
invproject(double east,
double north)
Convert east/north to lat/lon.
|
boolean |
isGeographic()
Return true, if a geographic coordinate reference system is represented.
|
double[] |
project(double lat_rad,
double lon_rad)
Convert lat/lon to east/north.
|
java.lang.String getName()
java.lang.String getProj4Id()
null
.void initialize(ProjParameters params) throws ProjectionConfigurationException
params
- The projection parametersProjectionConfigurationException
- in case parameters are not suitabledouble[] project(double lat_rad, double lon_rad)
lat_rad
- the latitude in radianslon_rad
- the longitude in radiansdouble[] invproject(double east, double north)
east
- east value in meters, divided by the semi major axis of the ellipsoidnorth
- north value in meters, divided by the semi major axis of the ellipsoidBounds getAlgorithmBounds()
boolean isGeographic()