?? geokeys.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_ */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -