| Package | Description |
|---|---|
| ucar.unidata.geoloc |
Support library for georeferencing coordinate systems and transformations.
|
| ucar.unidata.geoloc.projection.proj4 |
| Modifier and Type | Class and Description |
|---|---|
class |
EarthEllipsoid
Type-safe enumeration of Earth Ellipsoids.
|
| Modifier and Type | Method and Description |
|---|---|
static Bearing |
Bearing.calculateBearing(Earth e,
double lat1,
double lon1,
double lat2,
double lon2,
Bearing result)
Computes distance (in km), azimuth (degrees clockwise positive
from North, 0 to 360), and back azimuth (degrees clockwise positive
from North, 0 to 360), from latitude-longituide point pt1 to
latitude-longituide pt2.
|
static Bearing |
Bearing.calculateBearing(Earth e,
LatLonPoint pt1,
LatLonPoint pt2,
Bearing result)
Calculate the bearing between the 2 points.
|
static LatLonPointImpl |
Bearing.findPoint(Earth e,
double lat1,
double lon1,
double az,
double dist,
LatLonPointImpl result)
Calculate a position given an azimuth and distance from
another point.
|
static LatLonPointImpl |
Bearing.findPoint(Earth e,
LatLonPoint pt1,
double az,
double dist,
LatLonPointImpl result)
Calculate a position given an azimuth and distance from
another point.
|
| Modifier and Type | Method and Description |
|---|---|
Earth |
LambertConformalConicEllipse.getEarth() |
Earth |
AlbersEqualAreaEllipse.getEarth() |
| Constructor and Description |
|---|
AlbersEqualAreaEllipse(double lat0,
double lon0,
double par1,
double par2,
double falseEasting,
double falseNorthing,
Earth earth)
Construct a AlbersEqualAreaEllipse Projection, two standard parellels.
|
LambertConformalConicEllipse(double lat0,
double lon0,
double par1,
double par2,
double falseEasting,
double falseNorthing,
Earth earth)
Construct a LambertConformal Projection, two standard parellels.
|
StereographicAzimuthalProjection(double latt,
double lont,
double scale,
double trueScaleLat,
double false_easting,
double false_northing,
Earth earth)
Construct a Stereographic Projection.
|
TransverseMercatorProjection(Earth ellipsoid,
double lon_0_deg,
double lat_0_deg,
double k,
double falseEast,
double falseNorth)
Set up a projection suitable for State Plane Coordinates.
|