bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
proj.h
1/*
2 0 = Geographic
3 1 = Universal Transverse Mercator (UTM)
4 2 = State Plane Coordinates
5 3 = Albers Conical Equal Area
6 4 = Lambert Conformal Conic
7 5 = Mercator
8 6 = Polar Stereographic
9 7 = Polyconic
10 8 = Equidistant Conic
11 9 = Transverse Mercator
12 10 = Stereographic
13 11 = Lambert Azimuthal Equal Area
14 12 = Azimuthal Equidistant
15 13 = Gnomonic
16 14 = Orthographic
17 15 = General Vertical Near-Side Perspective
18 16 = Sinusiodal
19 17 = Equirectangular
20 18 = Miller Cylindrical
21 19 = Van der Grinten
22 20 = (Hotine) Oblique Mercator
23 21 = Robinson
24 22 = Space Oblique Mercator (SOM)
25 23 = Alaska Conformal
26 24 = Interrupted Goode Homolosine
27 25 = Mollweide
28 26 = Interrupted Mollweide
29 27 = Hammer
30 28 = Wagner IV
31 29 = Wagner VII
32 30 = Oblated Equal Area
33 31 = Integerized Sinusoidal Grid (the same as 99)
34 97 = Cylindrical Equal Area (Grid corners set in meters for EASE grid)
35 98 = Cylindrical Equal Area (Grid corners set in DMS degs for EASE grid)
36 99 = Integerized Sinusoidal Grid (added by Raj Gejjagaraguppe ARC for MODIS)
37*/
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
43#define GEO 0
44#define UTM 1
45#define SPCS 2
46#define ALBERS 3
47#define LAMCC 4
48#define MERCAT 5
49#define PS 6
50#define POLYC 7
51#define EQUIDC 8
52#define TM 9
53#define STEREO 10
54#define LAMAZ 11
55#define AZMEQD 12
56#define GNOMON 13
57#define ORTHO 14
58#define GVNSP 15
59#define SNSOID 16
60#define EQRECT 17
61#define MILLER 18
62#define VGRINT 19
63#define HOM 20
64#define ROBIN 21
65#define SOM 22
66#define ALASKA 23
67#define GOODE 24
68#define MOLL 25
69#define IMOLL 26
70#define HAMMER 27
71#define WAGIV 28
72#define WAGVII 29
73#define OBEQA 30
74#define ISINUS1 31
75#define CEA 97
76#define BCEA 98
77#define ISINUS 99
78
79#define IN_BREAK -2
80#define COEFCT 15 /* projection coefficient count */
81#define PROJCT 31 /* projection count */
82#define DATMCT 20 /* datum count */
83
84#define MAXPROJ 100 /* Maximum projection number */
85#define MAXUNIT 5 /* Maximum unit code number */
86#define GEO_TERM 0 /* Array index for print-to-term flag */
87#define GEO_FILE 1 /* Array index for print-to-file flag */
88#define GEO_TRUE 1 /* True value for geometric true/false flags */
89#define GEO_FALSE -1 /* False val for geometric true/false flags */
90
91#ifdef __cplusplus
92}
93#endif