Cartography-Projection-GCTP
view release on metacpan or search on metacpan
gctpc/lamazinv.c view on Meta::CPAN
/*******************************************************************************
NAME LAMBERT AZIMUTHAL EQUAL-AREA
PURPOSE: Transforms input Easting and Northing to longitude and
latitude for the Lambert Azimuthal Equal Area projection. The
Easting and Northing must be in meters. The longitude
and latitude values will be returned in radians.
PROGRAMMER DATE
---------- ----
D. Steinwand, EROS March, 1991
S. Nelson,EROS Dec, 1993 changed asin() to asinz() because
NaN resulted expecting poles.
This function was adapted from the Lambert Azimuthal Equal Area projection
code (FORTRAN) in the General Cartographic Transformation Package software
which is available from the U.S. Geological Survey National Mapping Division.
ALGORITHM REFERENCES
1. "New Equal-Area Map Projections for Noncircular Regions", John P. Snyder,
The American Cartographer, Vol 15, No. 4, October 1988, pp. 341-355.
2. Snyder, John P., "Map Projections--A Working Manual", U.S. Geological
Survey Professional Paper 1395 (Supersedes USGS Bulletin 1532), United
State Government Printing Office, Washington D.C., 1987.
3. "Software Documentation for GCTP General Cartographic Transformation
Package", U.S. Geological Survey National Mapping Division, May 1982.
*******************************************************************************/
#include "cproj.h"
/* Variables common to all subroutines in this code file
-----------------------------------------------------*/
static double lon_center; /* Center longitude (projection center) */
static double lat_center; /* Center latitude (projection center) */
static double R; /* Radius of the earth (sphere) */
static double sin_lat_o; /* Sine of the center latitude */
static double cos_lat_o; /* Cosine of the center latitude */
static double false_easting; /* x offset in meters */
static double false_northing; /* y offset in meters */
/* Initialize the Lambert Azimuthal Equal Area projection
------------------------------------------------------*/
long lamazinvint(r, center_long, center_lat,false_east,false_north)
double r; /* (I) Radius of the earth (sphere) */
double center_long; /* (I) Center longitude */
double center_lat; /* (I) Center latitude */
double false_east; /* x offset in meters */
double false_north; /* y offset in meters */
{
/* Place parameters in static storage for common use
-------------------------------------------------*/
R = r;
lon_center = center_long;
lat_center = center_lat;
false_easting = false_east;
false_northing = false_north;
sincos(center_lat, &sin_lat_o, &cos_lat_o);
/* Report parameters to the user
-----------------------------*/
ptitle("LAMBERT AZIMUTHAL EQUAL-AREA");
radius(r);
cenlon(center_long);
cenlat(center_lat);
offsetp(false_easting,false_northing);
return(OK);
}
/* Lambert Azimuthal Equal Area inverse equations--mapping x,y to lat,long
-----------------------------------------------------------------------*/
long lamazinv(x, y, lon, lat)
( run in 1.448 second using v1.01-cache-2.11-cpan-98e64b0badf )