File: ease.h

package info (click to toggle)
gdal 1.10.1%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 84,320 kB
  • ctags: 74,726
  • sloc: cpp: 677,199; ansic: 162,820; python: 13,816; cs: 11,163; sh: 10,446; java: 5,279; perl: 4,429; php: 2,971; xml: 1,500; yacc: 934; makefile: 494; sql: 112
file content (18 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef EASE_H_
#define EASE_H_

#include <math.h>
#define BCEA_COLS25 1383 /* total number of columns for EASE grid */
#define BCEA_ROWS25 586  /* total number of rows for EASE grid */
#define BCEA_CELL_M 25067.525 /* Cell size for EASE grid */
#define BCEA_RE_M 6371228.0 /* Earth radius used in GCTP projection tools for
			       Behrmann Cylindrical Equal Area projection */
#define DEFAULT_BCEA_LTRUESCALE 30.00  /*Latitude of true scale in DMS */
#define BCEA_COS_PHI1 cos(DEFAULT_BCEA_LTRUESCALE *3.141592653589793238 /180.0)
#define PI      3.141592653589793238
#define EASE_GRID_DEFAULT_UPLEFT_LON -180.0
#define EASE_GRID_DEFAULT_UPLEFT_LAT  86.72 
#define EASE_GRID_DEFAULT_LOWRGT_LON  180.0
#define EASE_GRID_DEFAULT_LOWRGT_LAT -86.72

#endif  /* #ifndef EASE_H_ */