⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 geokeys.h

📁 GIS系统支持库Geospatial Data Abstraction Library代码.GDAL is a translator library for raster geospatial dat
💻 H
字号:
/********************************************************************** * *  geokeys.h - Public registry for valid GEOTIFF GeoKeys. * *   Written By: Niles D. Ritter * *  Revision History: * *     Rev.#  Author  M/D/Y Date     Key Changes/Additions *     -----  ------  ----------  ------------------------------------- *       0      ndr    06/10/95      Inital Beta Release *       1      ndr    09/18/95      Final 1.0 Release * **********************************************************************/#ifndef __geokeys_h_#define __geokeys_h_/* The GvCurrentRevision number should be incremented whenever a  * new set of Keys are defined or modified in "geokeys.inc", and comments  * added to the "Revision History" section above. If only code * _values_ are augmented, the "GvCurrentMinorRev" number should * be incremented instead (see "geovalues.h"). Whenever the  * GvCurrentRevision is incremented, the GvCurrentMinorRev should * be reset to zero. * * * The Section Numbers below refer to the GeoTIFF Spec sections * in which these values are documented. * */#define GvCurrentRevision  1  /* Final 1.0 Release */#ifdef ValuePair#  undef ValuePair#endif#define ValuePair(name,value)    name = value,typedef enum {   BaseGeoKey   =  1024,               /* First valid code */#  include "geokeys.inc"         /* geokey database */   ReservedEndGeoKey  =  32767,      /* Key space available for Private or internal use */   PrivateBaseGeoKey = 32768,    /* Consistent with TIFF Private tags */   PrivateEndGeoKey  = 65535,          EndGeoKey = 65535             /* Largest Possible GeoKey ID */} geokey_t;#endif /* __geokeys_h_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -