gis.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. /*
  2. *****************************************************************************
  3. *
  4. * MODULE: Grass Include Files
  5. * AUTHOR(S): Original author unknown - probably CERL
  6. * Justin Hickey - Thailand - jhickey@hpcc.nectec.or.th
  7. * PURPOSE: This file contains definitions of variables and data types
  8. * for use with most, if not all, Grass programs. This file is
  9. * usually included in every Grass program.
  10. * COPYRIGHT: (C) 2000-2011 by the GRASS Development Team
  11. *
  12. * This program is free software under the GNU General Public
  13. * License (>=v2). Read the file COPYING that comes with GRASS
  14. * for details.
  15. *
  16. *****************************************************************************/
  17. #ifndef GRASS_GIS_H
  18. #define GRASS_GIS_H
  19. /*============================= Include Files ==============================*/
  20. /* System include files */
  21. #include <stdio.h>
  22. #include <stdarg.h>
  23. /* Grass and local include files */
  24. #include <grass/config.h>
  25. #include <grass/datetime.h>
  26. /*=========================== Constants/Defines ============================*/
  27. #if !defined __GNUC__ || __GNUC__ < 2
  28. #undef __attribute__
  29. #define __attribute__(x)
  30. #endif
  31. static const char *GRASS_copyright __attribute__ ((unused))
  32. = "GRASS GNU GPL licensed Software";
  33. #define GIS_H_VERSION "$Revision$"
  34. #define GIS_H_DATE "$Date$"
  35. #define G_gisinit(pgm) G__gisinit(GIS_H_VERSION, (pgm))
  36. #define G_no_gisinit() G__no_gisinit(GIS_H_VERSION)
  37. /* Define TRUE and FALSE for boolean comparisons */
  38. #ifndef TRUE
  39. #define TRUE 1
  40. #endif
  41. #ifndef FALSE
  42. #define FALSE 0
  43. #endif
  44. #if defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64
  45. #define PRI_OFF_T "lld"
  46. #else
  47. #define PRI_OFF_T "ld"
  48. #endif
  49. /*! \brief Cross-platform Newline Character */
  50. #define NEWLINE '\n'
  51. #ifdef __MINGW32__
  52. # define HOST_NEWLINE "\r\n"
  53. #else
  54. # define HOST_NEWLINE "\n"
  55. #endif
  56. /*!
  57. \brief List of units
  58. */
  59. #define U_UNDEFINED -1
  60. #define U_UNKNOWN 0
  61. #define U_ACRES 1
  62. #define U_HECTARES 2
  63. #define U_KILOMETERS 3
  64. #define U_METERS 4
  65. #define U_MILES 5
  66. #define U_FEET 6
  67. #define U_RADIANS 7
  68. #define U_DEGREES 8
  69. #define U_USFEET 9
  70. /* Temporal units from the datetime library */
  71. #define U_YEARS DATETIME_YEAR
  72. #define U_MONTHS DATETIME_MONTH
  73. #define U_DAYS DATETIME_DAY
  74. #define U_HOURS DATETIME_HOUR
  75. #define U_MINUTES DATETIME_MINUTE
  76. #define U_SECONDS DATETIME_SECOND
  77. /*! \brief Projection code - XY coordinate system (unreferenced data) */
  78. #define PROJECTION_XY 0
  79. /*! \brief Projection code - UTM */
  80. #define PROJECTION_UTM 1
  81. /*! \brief Projection code - State Plane */
  82. #define PROJECTION_SP 2
  83. /*! \brief Projection code - Latitude-Longitude */
  84. #define PROJECTION_LL 3
  85. /*! \brief Projection code - other projection (other then noted above) */
  86. #define PROJECTION_OTHER 99
  87. #define PROJECTION_FILE "PROJ_INFO"
  88. #define UNIT_FILE "PROJ_UNITS"
  89. #define EPSG_FILE "PROJ_EPSG"
  90. #ifdef __MINGW32__
  91. #define CONFIG_DIR "GRASS7"
  92. #else
  93. #define CONFIG_DIR ".grass7"
  94. #endif
  95. /* define PI and friends */
  96. #undef M_PI
  97. #define M_PI 3.14159265358979323846 /* pi */
  98. #undef M_PI_2
  99. #define M_PI_2 1.57079632679489661923 /* pi/2 */
  100. #undef M_PI_4
  101. #define M_PI_4 0.78539816339744830962 /* pi/4 */
  102. /* epsilon (IEEE: 2.220446e-16) */
  103. #define GRASS_EPSILON 1.0e-15
  104. /* Location of envariment variables */
  105. #define G_VAR_GISRC 0
  106. #define G_VAR_MAPSET 1
  107. /* Where to find/store variables */
  108. #define G_GISRC_MODE_FILE 0 /* files */
  109. #define G_GISRC_MODE_MEMORY 1 /* memory only */
  110. /* for G_parser() */
  111. #define TYPE_INTEGER 1
  112. #define TYPE_DOUBLE 2
  113. #define TYPE_STRING 3
  114. #define YES 1
  115. #define NO 0
  116. /* File/directory name lengths */
  117. #define GNAME_MAX 256
  118. #define GMAPSET_MAX 256
  119. #define GPATH_MAX 4096
  120. /* Basename default separator */
  121. #define GBASENAME_SEP "_"
  122. /* Macros for type size independent integers */
  123. /* Use these for portability to ensure integers are truly 32bit */
  124. /* and are handled in a uniform manner */
  125. /* Convert integer to 4 bytes - little endian */
  126. #define serialize_int32_le(buf, x) do { \
  127. (buf)[0] = ((x) >> 0) & 0xFF; \
  128. (buf)[1] = ((x) >> 8) & 0xFF; \
  129. (buf)[2] = ((x) >> 16) & 0xFF; \
  130. (buf)[3] = ((x) >> 24) & 0xFF; \
  131. } while(0)
  132. /* Convert 4 bytes to an integer - little endian */
  133. #define deserialize_int32_le(buf) (((buf)[0] << 0) | \
  134. ((buf)[1] << 8) | \
  135. ((buf)[2] << 16) | \
  136. ((buf)[3] << 24))
  137. /* Convert integer to 4 bytes - big endian */
  138. #define serialize_int32_be(buf, x) do { \
  139. (buf)[0] = ((x) >> 24) & 0xFF; \
  140. (buf)[1] = ((x) >> 16) & 0xFF; \
  141. (buf)[2] = ((x) >> 8) & 0xFF; \
  142. (buf)[3] = ((x) >> 0) & 0xFF; \
  143. } while(0)
  144. /* Convert 4 bytes to an integer - big endian */
  145. #define deserialize_int32_be(buf) (((buf)[0] << 24) | \
  146. ((buf)[1] << 16) | \
  147. ((buf)[2] << 8) | \
  148. ((buf)[3] << 0))
  149. /* Cross-platform Directory Separator Character and null device stuff */
  150. #define GRASS_DIRSEP '/'
  151. #ifdef __MINGW32__
  152. # define HOST_DIRSEP '\\'
  153. # define G_DEV_NULL "NUL:"
  154. #else
  155. # define HOST_DIRSEP '/'
  156. # define G_DEV_NULL "/dev/null"
  157. #endif
  158. /*!
  159. \typedef STD_OPT
  160. \brief Standard option identifiers (enum)
  161. Identifies of all recognized standard options.
  162. The term <em>old</em> in the descriptions means existing map which
  163. is supposed to exist before the module is called.
  164. On the other hand, the term <em>new</em> in the descriptions means
  165. that the map is not supposed to exist and that module will create one.
  166. Used by the G_parser() system.
  167. IMPORTANT NOTE: when adding new item to STD_OPT you should also
  168. update STD_OPT_STRINGS array in general/g.parser/standard_option.c.
  169. */
  170. typedef enum
  171. {
  172. G_OPT_UNDEFINED,
  173. G_OPT_DB_SQL, /*!< SQL statements */
  174. G_OPT_DB_WHERE, /*!< SQL where conditions */
  175. G_OPT_DB_TABLE, /*!< table name */
  176. G_OPT_DB_DRIVER, /*!< driver name */
  177. G_OPT_DB_DATABASE, /*!< database name */
  178. G_OPT_DB_SCHEMA, /*!< database schema */
  179. G_OPT_DB_COLUMN, /*!< one attr column */
  180. G_OPT_DB_COLUMNS, /*!< one or more attr columns */
  181. G_OPT_DB_KEYCOLUMN, /*!< key column */
  182. G_OPT_I_GROUP, /*!< old input imagery group */
  183. G_OPT_I_SUBGROUP, /*!< old input imagery subgroup */
  184. G_OPT_R_INPUT, /*!< old input raster map */
  185. G_OPT_R_INPUTS, /*!< old input raster maps */
  186. G_OPT_R_OUTPUT, /*!< new output raster map */
  187. G_OPT_R_OUTPUTS, /*!< new output raster maps */
  188. G_OPT_R_MAP, /*!< old input raster map */
  189. G_OPT_R_MAPS, /*!< old input rasters map */
  190. G_OPT_R_BASE, /*!< old input base raster map */
  191. G_OPT_R_COVER, /*!< old input cover raster map */
  192. G_OPT_R_ELEV, /*!< old input elevation raster map */
  193. G_OPT_R_ELEVS, /*!< old input elevation raster maps */
  194. G_OPT_R_TYPE, /*!< raster map type */
  195. G_OPT_R_INTERP_TYPE, /*!< interpolation type */
  196. G_OPT_R_BASENAME_INPUT, /*!< old input basename raster maps */
  197. G_OPT_R_BASENAME_OUTPUT, /*!< new output basename raster maps */
  198. G_OPT_R3_INPUT, /*!< old input raster3d map */
  199. G_OPT_R3_INPUTS, /*!< old input raster3d maps */
  200. G_OPT_R3_OUTPUT, /*!< new output raster3d map */
  201. G_OPT_R3_MAP, /*!< old input raster3d map */
  202. G_OPT_R3_MAPS, /*!< old input raster3d maps */
  203. G_OPT_R3_TYPE, /*!< Type (FCELL or DCELL) of a new created raster3d map */
  204. G_OPT_R3_PRECISION, /*!< The precision of the new generated raster3d map */
  205. G_OPT_R3_TILE_DIMENSION, /*!< The tile dimension of a new generated raster3d map */
  206. G_OPT_R3_COMPRESSION, /*!< The kind of compression of a new created raster3d map */
  207. G_OPT_V_INPUT, /*!< old input vector map */
  208. G_OPT_V_INPUTS, /*!< old input vector maps */
  209. G_OPT_V_OUTPUT, /*!< new output vector map */
  210. G_OPT_V_MAP, /*!< old input vector map */
  211. G_OPT_V_MAPS, /*!< old input vector maps */
  212. G_OPT_V_TYPE, /*!< primitive type */
  213. G_OPT_V3_TYPE, /*!< primitive type, 2D and 3D */
  214. G_OPT_V_FIELD, /*!< layer number (layers used to be called fields) */
  215. G_OPT_V_FIELD_ALL, /*!< layer number (layers used to be called fields) */
  216. G_OPT_V_CAT, /*!< one category */
  217. G_OPT_V_CATS, /*!< more categories */
  218. G_OPT_V_ID, /*!< one feature id */
  219. G_OPT_V_IDS, /*!< more feature ids */
  220. G_OPT_F_INPUT, /*!< old input file */
  221. G_OPT_F_BIN_INPUT, /*!< old binary input file */
  222. G_OPT_F_OUTPUT, /*!< new output file */
  223. G_OPT_F_SEP, /*!< data field separator */
  224. G_OPT_C, /*!< color */
  225. G_OPT_CN, /*!< color or none */
  226. G_OPT_M_UNITS, /*!< units */
  227. G_OPT_M_DATATYPE, /*!< datatype */
  228. G_OPT_M_MAPSET, /*!< mapset */
  229. G_OPT_M_LOCATION, /*!< location */
  230. G_OPT_M_DBASE, /*!< dbase */
  231. G_OPT_M_COORDS, /*!< coordinates */
  232. G_OPT_M_COLR, /*!< color rules */
  233. G_OPT_M_DIR, /*!< directory input */
  234. G_OPT_M_REGION, /*!< saved region */
  235. G_OPT_M_NULL_VALUE, /*!< null value string */
  236. G_OPT_STDS_INPUT, /*!< old input space time dataset of type strds, str3ds or stvds */
  237. G_OPT_STDS_INPUTS, /*!< old input space time datasets */
  238. G_OPT_STDS_OUTPUT, /*!< new output space time dataset */
  239. G_OPT_STRDS_INPUT, /*!< old input space time raster dataset */
  240. G_OPT_STRDS_INPUTS, /*!< old input space time raster datasets */
  241. G_OPT_STRDS_OUTPUT, /*!< new output space time raster dataset */
  242. G_OPT_STR3DS_INPUT, /*!< old input space time raster3d dataset */
  243. G_OPT_STR3DS_INPUTS, /*!< old input space time raster3d datasets */
  244. G_OPT_STR3DS_OUTPUT, /*!< new output space time raster3d dataset */
  245. G_OPT_STVDS_INPUT, /*!< old input space time vector dataset */
  246. G_OPT_STVDS_INPUTS, /*!< old input space time vector datasets */
  247. G_OPT_STVDS_OUTPUT, /*!< new output space time vector dataset */
  248. G_OPT_MAP_INPUT, /*!< old input map of type raster, vector or raster3d */
  249. G_OPT_MAP_INPUTS, /*!< old input maps of type raster, vector or raster3d */
  250. G_OPT_STDS_TYPE, /*!< the type of a space time dataset: strds, str3ds, stvds */
  251. G_OPT_MAP_TYPE, /*!< The type of an input map: raster, vect, rast3d */
  252. G_OPT_T_TYPE, /*!< The temporal type of a space time dataset */
  253. G_OPT_T_WHERE, /*!< A temporal GIS framework SQL WHERE statement */
  254. G_OPT_T_SAMPLE, /*!< Temporal sample methods */
  255. } STD_OPT;
  256. /*!
  257. \typedef STD_FLG
  258. \brief Standard flag identifiers (enum)
  259. Identifies of all recognized standard flags.
  260. Used by the G_parser() system.
  261. */
  262. /**/ typedef enum
  263. {
  264. G_FLG_UNDEFINED,
  265. G_FLG_V_TABLE, /*!< do not create attribute table */
  266. G_FLG_V_TOPO, /*!< do not build topology */
  267. } STD_FLG;
  268. /* Parser rules for G__option_rule() */
  269. enum rule_type {
  270. RULE_EXCLUSIVE,
  271. RULE_REQUIRED,
  272. RULE_REQUIRES,
  273. RULE_REQUIRES_ALL,
  274. RULE_EXCLUDES,
  275. RULE_COLLECTIVE
  276. };
  277. /* Message format */
  278. #define G_INFO_FORMAT_STANDARD 0 /* GRASS_MESSAGE_FORMAT=standard or not defined */
  279. #define G_INFO_FORMAT_GUI 1 /* GRASS_MESSAGE_FORMAT=gui */
  280. #define G_INFO_FORMAT_SILENT 2 /* GRASS_MESSAGE_FORMAT=silent */
  281. #define G_INFO_FORMAT_PLAIN 3 /* GRASS_MESSAGE_FORMAT=plain */
  282. /* Icon types */
  283. #define G_ICON_CROSS 0
  284. #define G_ICON_BOX 1
  285. #define G_ICON_ARROW 2
  286. /* default colors */
  287. #define DEFAULT_FG_COLOR "black"
  288. #define DEFAULT_BG_COLOR "white"
  289. #define DEFAULT_COLOR_TABLE "viridis"
  290. /* error codes */
  291. #define G_FATAL_EXIT 0
  292. #define G_FATAL_PRINT 1
  293. #define G_FATAL_RETURN 2
  294. /*! \brief Endian check */
  295. #define ENDIAN_LITTLE 0
  296. #define ENDIAN_BIG 1
  297. #define ENDIAN_OTHER 2
  298. /* for vector maps */
  299. /*!
  300. \brief Name of default key column
  301. */
  302. #define GV_KEY_COLUMN "cat"
  303. /*!
  304. \brief Element types identifiers (enum)
  305. Identifies various element types. Element can be raster map,
  306. vector map, etc.
  307. */
  308. enum
  309. { /* Dir */
  310. G_ELEMENT_RASTER = 1, /*!< raster */
  311. G_ELEMENT_RASTER3D = 2, /*!< 3d raster */
  312. G_ELEMENT_VECTOR = 3, /*!< vector */
  313. G_ELEMENT_ASCIIVECTOR = 4, /*!< ASCII vector */
  314. G_ELEMENT_LABEL = 5, /*!< labels */
  315. G_ELEMENT_REGION = 6, /*!< region */
  316. G_ELEMENT_GROUP = 7, /*!< group */
  317. };
  318. /*=========================== Typedefs/Structures ==========================*/
  319. /*!
  320. \brief 2D/3D raster map header (used also for region)
  321. */
  322. struct Cell_head
  323. {
  324. /*! \brief Max number of bytes per raster data value minus 1 (raster header only)
  325. Note: -1 for FP raster maps
  326. */
  327. int format;
  328. /*! \brief Compression mode (raster header only)
  329. - 0: uncompressed
  330. - 1: compressed
  331. - -1: pre GRASS 3.0
  332. */
  333. int compressed;
  334. /*! \brief Number of rows for 2D data */
  335. int rows;
  336. /*! \brief Number of rows for 3D data */
  337. int rows3;
  338. /*! \brief Number of columns for 2D data */
  339. int cols;
  340. /*! \brief Number of columns for 3D data */
  341. int cols3;
  342. /*! \brief number of depths for 3D data */
  343. int depths;
  344. /*! \brief Projection code
  345. - PROJECTION_XY
  346. - PROJECTION_UTM
  347. - PROJECTION_SP
  348. - PROJECTION_LL
  349. - PROJECTION_OTHER
  350. */
  351. int proj;
  352. /*! \brief Projection zone (UTM) */
  353. int zone;
  354. /*! \brief Resolution - east to west cell size for 2D data */
  355. double ew_res;
  356. /*! \brief Resolution - east to west cell size for 3D data */
  357. double ew_res3;
  358. /*! \brief Resolution - north to south cell size for 2D data */
  359. double ns_res;
  360. /*! \brief Resolution - north to south cell size for 3D data */
  361. double ns_res3;
  362. /*! \brief Resolution - top to bottom cell size for 3D data */
  363. double tb_res;
  364. /*! \brief Extent coordinates (north) */
  365. double north;
  366. /*! \brief Extent coordinates (south) */
  367. double south;
  368. /*! \brief Extent coordinates (east) */
  369. double east;
  370. /*! \brief Extent coordinates (west) */
  371. double west;
  372. /*! \brief Extent coordinates (top) - 3D data*/
  373. double top;
  374. /*! \brief Extent coordinates (bottom) - 3D data */
  375. double bottom;
  376. };
  377. /*
  378. ** Structure for I/O of 3dview files (view.c)
  379. */
  380. struct G_3dview
  381. {
  382. char pgm_id[40]; /* user-provided identifier */
  383. float from_to[2][3]; /* eye position & lookat position */
  384. float fov; /* field of view */
  385. float twist; /* right_hand rotation about from_to */
  386. float exag; /* terrain elevation exageration */
  387. int mesh_freq; /* cells per grid line */
  388. int poly_freq; /* cells per polygon */
  389. int display_type; /* 1 for mesh, 2 for poly, 3 for both */
  390. int lightson; /* boolean */
  391. int dozero; /* boolean */
  392. int colorgrid; /* boolean */
  393. int shading; /* boolean */
  394. int fringe; /* boolean */
  395. int surfonly; /* boolean */
  396. int doavg; /* boolean */
  397. char grid_col[40]; /* colors */
  398. char bg_col[40]; /* colors */
  399. char other_col[40]; /* colors */
  400. float lightpos[4]; /* east, north, height, 1.0 for local 0.0 infin */
  401. float lightcol[3]; /* values between 0.0 to 1.0 for red, grn, blu */
  402. float ambient;
  403. float shine;
  404. struct Cell_head vwin;
  405. };
  406. struct Key_Value
  407. {
  408. int nitems;
  409. int nalloc;
  410. char **key;
  411. char **value;
  412. };
  413. /*!
  414. \brief Structure that stores option information
  415. The descriptions member contains pairs of option and option
  416. descriptions separated by semicolon ';'.
  417. For example, when options member is set using:
  418. \code
  419. opt->options = "break,rmdupl"
  420. \endcode
  421. the descriptions member should be set to:
  422. \verbatim
  423. "break;break lines on intersections;"
  424. "rmdupl;remove duplicates"
  425. \endverbatim
  426. Parsed descriptions are stored in the same order as options.
  427. GUI dependency is a list of options (separated by commas) to be updated
  428. if the value is changed.
  429. Used by the G_parser() system.
  430. */
  431. struct Option
  432. {
  433. const char *key; /*!< Key word used on command line */
  434. int type; /*!< Option type */
  435. int required; /*!< REQUIRED or OPTIONAL */
  436. int multiple; /*!< Multiple entries OK */
  437. const char *options; /*!< Approved values or range or NULL */
  438. const char **opts; /*!< NULL or NULL terminated array of parsed options */
  439. const char *key_desc; /*!< one word describing the key */
  440. const char *label; /*!< Optional short label, used in GUI as item label */
  441. const char *description; /*!< String describing option */
  442. const char *descriptions; /*!< ';' separated pairs of option and option descriptions */
  443. const char **descs; /*!< parsed descriptions, array of either NULL or string */
  444. char *answer; /*!< Option answer */
  445. const char *def; /*!< Where original answer gets saved */
  446. char **answers; /*!< Option answers (for multiple=YES) */
  447. struct Option *next_opt; /*!< Pointer to next option struct */
  448. const char *gisprompt; /*!< Interactive prompt guidance */
  449. const char *guisection; /*!< GUI Layout guidance: ';' delimited hierarchical tree position */
  450. const char *guidependency; /*!< GUI dependency */
  451. int (*checker)(const char *);/*!< Routine to check answer or NULL */
  452. int count;
  453. };
  454. /*!
  455. \brief Structure that stores flag info
  456. Used by the G_parser() system.
  457. */
  458. struct Flag
  459. {
  460. char key; /*!< Key char used on command line */
  461. char answer; /*!< Stores flag state: 0/1 */
  462. char suppress_required; /*!< Suppresses checking of required options */
  463. const char *label; /*!< Optional short label, used in GUI as item label */
  464. const char *description; /*!< String describing flag meaning */
  465. const char *guisection; /*!< GUI Layout guidance: ';' delimited hierarchical tree position */
  466. struct Flag *next_flag; /*!< Pointer to next flag struct */
  467. };
  468. /*!
  469. \brief Structure that stores module info
  470. Used by the G_parser() system.
  471. */
  472. struct GModule
  473. {
  474. const char *label; /*!< Optional short description for GUI */
  475. const char *description; /*!< String describing module */
  476. const char **keywords; /*!< Keywords describing module */
  477. /* further items are possible: author(s), version, year */
  478. int overwrite; /*!< overwrite old files */
  479. int verbose; /*!< print all information about progress and so on */
  480. };
  481. struct TimeStamp
  482. {
  483. DateTime dt[2]; /* two datetimes */
  484. int count;
  485. };
  486. struct Counter {
  487. int value;
  488. };
  489. struct Popen {
  490. FILE *fp;
  491. int pid;
  492. };
  493. typedef int CELL;
  494. typedef double DCELL;
  495. typedef float FCELL;
  496. struct _Color_Value_
  497. {
  498. DCELL value;
  499. unsigned char red;
  500. unsigned char grn;
  501. unsigned char blu;
  502. };
  503. struct _Color_Rule_
  504. {
  505. struct _Color_Value_ low, high;
  506. struct _Color_Rule_ *next;
  507. struct _Color_Rule_ *prev;
  508. };
  509. struct _Color_Info_
  510. {
  511. struct _Color_Rule_ *rules;
  512. int n_rules;
  513. struct
  514. {
  515. unsigned char *red;
  516. unsigned char *grn;
  517. unsigned char *blu;
  518. unsigned char *set;
  519. int nalloc;
  520. int active;
  521. } lookup;
  522. struct
  523. {
  524. DCELL *vals;
  525. /* pointers to color rules corresponding to the intervals btwn vals */
  526. struct _Color_Rule_ **rules;
  527. int nalloc;
  528. int active;
  529. } fp_lookup;
  530. DCELL min, max;
  531. };
  532. struct Colors
  533. {
  534. int version; /* set by read_colors: -1=old,1=new */
  535. DCELL shift;
  536. int invert;
  537. int is_float; /* defined on floating point raster data? */
  538. int null_set; /* the colors for null are set? */
  539. unsigned char null_red;
  540. unsigned char null_grn;
  541. unsigned char null_blu;
  542. int undef_set; /* the colors for cells not in range are set? */
  543. unsigned char undef_red;
  544. unsigned char undef_grn;
  545. unsigned char undef_blu;
  546. struct _Color_Info_ fixed;
  547. struct _Color_Info_ modular;
  548. DCELL cmin;
  549. DCELL cmax;
  550. int organizing;
  551. };
  552. /*!
  553. \brief List of integers
  554. */
  555. struct ilist
  556. {
  557. /*!
  558. \brief Array of values
  559. */
  560. int *value;
  561. /*!
  562. \brief Number of values in the list
  563. */
  564. int n_values;
  565. /*!
  566. \brief Allocated space for values
  567. */
  568. int alloc_values;
  569. };
  570. /*============================== Prototypes ================================*/
  571. /* Since there are so many prototypes for the gis library they are stored */
  572. /* in the file gisdefs.h */
  573. #include <grass/defs/gis.h>
  574. #endif /* GRASS_GIS_H */