@Immutable public class LambertAzimuthalEqualArea extends AbstractProjection
Projection| Constructor and Description |
|---|
LambertAzimuthalEqualArea()
Constructor with default parameters
|
LambertAzimuthalEqualArea(double lat0,
double lon0)
Construct a LambertAzimuthalEqualArea Projection.
|
LambertAzimuthalEqualArea(double lat0,
double lon0,
double false_easting,
double false_northing,
double earthRadius)
Construct a LambertAzimuthalEqualArea Projection.
|
| Modifier and Type | Method and Description |
|---|---|
Projection |
constructCopy()
copy constructor - avoid clone !!
|
boolean |
crossSeam(ProjectionPoint pt1,
ProjectionPoint pt2)
This returns true when the line between pt1 and pt2 crosses the seam.
|
boolean |
equals(Object o) |
double |
getFalseEasting()
Get the false easting, in km.
|
double |
getFalseNorthing()
Get the false northing, in km.
|
double |
getOriginLat()
Get the origin latitude in degrees.
|
double |
getOriginLon()
Get the origin longitude in degrees.
|
String |
getProjectionTypeLabel()
Get the label to be used in the gui for this type of projection
|
int |
hashCode() |
ProjectionPoint |
latLonToProj(LatLonPoint latLon)
Convert a LatLonPoint to projection coordinates.
|
String |
paramsToString()
Create a String of the parameters.
|
LatLonPoint |
projToLatLon(ProjectionPoint world)
Convert projection coordinates to a LatLonPoint.
|
String |
toString()
Get a String representation of this projection.
|
addParameter, addParameter, addParameter, addParameter, findProjectionParameter, getClassName, getHeader, getMinOrMaxLon, getName, getProjectionAttributes, getProjectionParameters, isLatLon, latLonToProjBB, projToLatLonBBclone, finalize, getClass, notify, notifyAll, wait, wait, waitlatLonToProj, projToLatLonpublic LambertAzimuthalEqualArea()
public LambertAzimuthalEqualArea(double lat0,
double lon0)
lat0 - lat origin of the coord system on the projection planelon0 - lon origin of the coord system on the projection planepublic LambertAzimuthalEqualArea(double lat0,
double lon0,
double false_easting,
double false_northing,
double earthRadius)
lat0 - lat origin of the coord system on the projection planelon0 - lon origin of the coord system on the projection planefalse_easting - natural_x_coordinate + false_easting = x coordinate in kmfalse_northing - natural_y_coordinate + false_northing = y coordinate in kmearthRadius - radius of the earth in kmIllegalArgumentException - if lat0, par1, par2 = +/-90 degpublic Projection constructCopy()
AbstractProjectionconstructCopy in class AbstractProjectionpublic double getOriginLon()
public double getOriginLat()
public double getFalseEasting()
public double getFalseNorthing()
public String getProjectionTypeLabel()
getProjectionTypeLabel in class AbstractProjectionpublic String paramsToString()
paramsToString in interface ProjectionparamsToString in class AbstractProjectionpublic String toString()
AbstractProjectiontoString in class AbstractProjectionpublic boolean crossSeam(ProjectionPoint pt1, ProjectionPoint pt2)
pt1 - point 1pt2 - point 2public ProjectionPoint latLonToProj(LatLonPoint latLon)
Projectionpublic LatLonPoint projToLatLon(ProjectionPoint world)
Projection