public class DoubleStereographic extends AbstractProj
| Modifier and Type | Field and Description |
|---|---|
private double |
c |
private double |
chi0 |
private Ellipsoid |
ellps |
private static double |
EPSILON |
private double |
n |
private double |
r |
| Constructor and Description |
|---|
DoubleStereographic() |
| 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.
|
private void |
initialize(double lat0) |
void |
initialize(ProjParameters params)
Initialize the projection using the provided parameters.
|
double[] |
invproject(double x,
double y)
Convert east/north to lat/lon.
|
double[] |
project(double phi,
double lambda)
Convert lat/lon to east/north.
|
aasin, cphi2, invMlfn, isGeographic, mlfn, msfn, tsfnclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitlonIsLinearToEastprivate double n
private double c
private double chi0
private double r
private static final double EPSILON
public DoubleStereographic()
public java.lang.String getName()
Projpublic java.lang.String getProj4Id()
Projnull.public void initialize(ProjParameters params) throws ProjectionConfigurationException
Projinitialize in interface Projinitialize in class AbstractProjparams - The projection parametersProjectionConfigurationException - in case parameters are not suitableprivate void initialize(double lat0)
public double[] project(double phi, double lambda)
Projphi - the latitude in radianslambda - the longitude in radianspublic double[] invproject(double x, double y)
Projx - east value in meters, divided by the semi major axis of the ellipsoidy - north value in meters, divided by the semi major axis of the ellipsoidpublic Bounds getAlgorithmBounds()
Proj