OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
hamfor.c
Go to the documentation of this file.
1 /*******************************************************************************
2 NAME HAMMER
3 
4 PURPOSE: Transforms input longitude and latitude to Easting and
5  Northing for the Hammer projection. The longitude
6  and latitude must be in radians. The Easting and
7  Northing values will be returned in meters.
8 
9 This function was adapted from the Lambert Azimuthal Equal Area projection
10 code (FORTRAN) in the General Cartographic Transformation Package software
11 which is available from the U.S. Geological Survey National Mapping Division.
12 
13 ALGORITHM REFERENCES
14 
15 1. "New Equal-Area Map Projections for Noncircular Regions", John P. Snyder,
16  The American Cartographer, Vol 15, No. 4, October 1988, pp. 341-355.
17 
18 2. Snyder, John P., "Map Projections--A Working Manual", U.S. Geological
19  Survey Professional Paper 1395 (Supersedes USGS Bulletin 1532), United
20  State Government Printing Office, Washington D.C., 1987.
21 
22 3. "Software Documentation for GCTP General Cartographic Transformation
23  Package", U.S. Geological Survey National Mapping Division, May 1982.
24 *******************************************************************************/
25 #include "oli_cproj.h"
26 #include "oli_local.h"
27 
28 /* Variables common to all subroutines in this code file
29  -----------------------------------------------------*/
30 static double lon_center; /* Center longitude (projection center) */
31 static double R; /* Radius of the earth (sphere) */
32 static double false_easting; /* x offset in meters */
33 static double false_northing; /* y offset in meters */
34 
35 /* Initialize the HAMMER projection
36  -------------------------------*/
37 long hamforint
38 (
39  double r, /* (I) Radius of the earth (sphere) */
40  double center_long, /* (I) Center longitude */
41  double false_east, /* x offset in meters */
42  double false_north /* y offset in meters */
43 )
44 {
45 /* Place parameters in static storage for common use
46  -------------------------------------------------*/
47 R = r;
48 lon_center = center_long;
49 false_easting = false_east;
50 false_northing = false_north;
51 
52 /* Report parameters to the user
53  -----------------------------*/
54 gctp_print_title("HAMMER");
56 gctp_print_cenlon(center_long);
57 gctp_print_offsetp(false_easting,false_northing);
58 return(OK);
59 }
60 
61 /* HAMMER forward equations--mapping lat,long to x,y
62  ------------------------------------------------------------*/
63 long hamfor
64 (
65  double lon, /* (I) Longitude */
66  double lat, /* (I) Latitude */
67  double *x, /* (O) X projection coordinate */
68  double *y /* (O) Y projection coordinate */
69 )
70 
71 {
72 double dlon;
73 double fac;
74 
75 /* Forward equations
76  -----------------*/
77 dlon = adjust_lon(lon - lon_center);
78 
79 fac = R * 1.414213562 / sqrt(1.0 + cos(lat) * cos(dlon / 2.0));
80 *x = false_easting + fac * 2.0 * cos(lat) * sin(dlon / 2.0);
81 *y = false_northing + fac * sin(lat);
82 
83 return(OK);
84 }
int r
Definition: decode_rs.h:73
void gctp_print_title(const char *proj_name)
Definition: gctp_report.c:14
long hamforint(double r, double center_long, double false_east, double false_north)
Definition: hamfor.c:38
void gctp_print_cenlon(double A)
Definition: gctp_report.c:40
long hamfor(double lon, double lat, double *x, double *y)
Definition: hamfor.c:64
float * lat
double adjust_lon(double x)
Definition: proj_cproj.c:349
#define fac
void gctp_print_offsetp(double A, double B)
Definition: gctp_report.c:91
#define OK
Definition: ancil.h:30
float * lon
void gctp_print_radius(double radius)
Definition: gctp_report.c:22
#define R
Definition: make_L3_v1.1.c:96