/******************************************************************************* NAME ORTHOGRAPHIC PURPOSE: Transforms input Easting and Northing to longitude and latitude for the Orthographic projection. The Easting and Northing must be in meters. The longitude and latitude values will be returned in radians. PROGRAMMER DATE ---------- ---- T. Mittan Mar, 1993 ALGORITHM REFERENCES 1. 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. 2. Snyder, John P. and Voxland, Philip M., "An Album of Map Projections", U.S. Geological Survey Professional Paper 1453 , United State Government Printing Office, Washington D.C., 1989. *******************************************************************************/ #include "cproj.h" /* Variables common to all subroutines in this code file -----------------------------------------------------*/ static double r_major; /* major axis */ static double lon_center; /* Center longitude (projection center) */ static double lat_origin; /* center latitude */ static double false_northing; /* y offset in meters */ static double false_easting; /* x offset in meters */ static double sin_p14; /* sin of center latitude */ static double cos_p14; /* cos of center latitude */ /* Initialize the Orthographic projection -------------------------------------*/ long orthinvint(r_maj,center_lon,center_lat,false_east,false_north) double r_maj; /* major axis */ double center_lon; /* center longitude */ double center_lat; /* 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_major = r_maj; lon_center = center_lon; lat_origin = center_lat; false_northing = false_north; false_easting = false_east; sincos(center_lat,&sin_p14,&cos_p14); /* Report parameters to the user -----------------------------*/ ptitle("ORTHOGRAPHIC"); radius(r_major); cenlonmer(lon_center); origin(lat_origin); offsetp(false_easting,false_northing); return(OK); } /* Orthographic inverse equations--mapping x,y to lat/long ------------------------------------------------------*/ long orthinv(x, y, lon, lat) double x; /* (O) X projection coordinate */ double y; /* (O) Y projection coordinate */ double *lon; /* (I) Longitude */ double *lat; /* (I) Latitude */ { double rh; /* height above ellipsoid */ double z; /* angle */ double sinz,cosz; /* sin of z and cos of z */ double temp; double con; /* Inverse equations -----------------*/ x -= false_easting; y -= false_northing; rh = sqrt(x * x + y * y); if (rh > r_major + .0000001) { p_error("Input data error","orth-inv"); return(145); } z = asinz(rh / r_major); sincos(z,&sinz,&cosz); *lon = lon_center; if (fabs(rh) <= EPSLN) { *lat = lat_origin; return(OK); } *lat = asinz(cosz * sin_p14 + (y * sinz * cos_p14)/rh); con = fabs(lat_origin) - HALF_PI; if (fabs(con) <= EPSLN) { if (lat_origin >= 0) { *lon = adjust_lon(lon_center + atan2(x, -y)); return(OK); } else { *lon = adjust_lon(lon_center - atan2(-x, y)); return(OK); } } con = cosz - sin_p14 * sin(*lat); if ((fabs(con) >= EPSLN) || (fabs(x) >= EPSLN)) *lon = adjust_lon(lon_center + atan2((x * sinz * cos_p14), (con * rh))); return(OK); }