Public Member Functions | |
GnomonicData () | |
GnomonicData (double lat0, double lon0, double lat, double lon, double x, double y, double azi, double rk) | |
Public Attributes | |
double | azi |
double | lat |
double | lat0 |
double | lon |
double | lon0 |
double | rk |
double | x |
double | y |
The results of gnomonic projection.
This is used to return the results for a gnomonic projection of a point (lat, lon) given a center point of projection (lat0, lon0). The returned GnomonicData objects always include the parameters provided to Gnomonic.Forward and Gnomonic.Reverse and it always includes the fields x, y, azi. and rk.
Definition at line 24 of file GnomonicData.java.
|
inline |
Initialize all the fields to Double.NaN.
Definition at line 61 of file GnomonicData.java.
|
inline |
Constructor initializing all the fields for gnomonic projection of a point (lat, lon) given a center point of projection (lat0, lon0).
lat0 | latitude of center point of projection (degrees). |
lon0 | longitude of center point of projection (degrees). |
lat | latitude of point (degrees). |
lon | longitude of point (degrees). |
x | easting of point (meters). |
y | northing of point (meters). |
azi | azimuth of geodesic at point (degrees). |
rk | reciprocal of azimuthal scale at point. |
Definition at line 87 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.azi |
azimuth of geodesic at point (degrees).
Definition at line 52 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.lat |
latitude of point (degrees).
Definition at line 36 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.lat0 |
latitude of center point of projection (degrees).
Definition at line 28 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.lon |
longitude of point (degrees).
Definition at line 40 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.lon0 |
longitude of center point of projection (degrees).
Definition at line 32 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.rk |
reciprocal of azimuthal scale at point.
Definition at line 56 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.x |
easting of point (meters).
Definition at line 44 of file GnomonicData.java.
double net.sf.geographiclib.GnomonicData.y |
northing of point (meters).
Definition at line 48 of file GnomonicData.java.