01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2005-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.gce.geotiff.IIOMetadataAdpaters.utils.codes;
17:
18: /**
19: *
20: * @author Simone Giannecchini
21: * @since 2.3
22: *
23: */
24: public final class GeoTiffVCSCodes {
25:
26: /**
27: * VerticalCitationGeoKey Key ID = 4097 Type = ASCII Values = text This key
28: * may be used to document the vertical coordinate system used, and its
29: * parameters.
30: */
31: public static final int VerticalCitationGeoKey = 4097;
32:
33: /**
34: * VerticalCSTypeGeoKey Key ID = 4096 Type = SHORT (code) Values = Section
35: * 6.3.4.1 Codes
36: * http://www.remotesensing.org/geotiff/spec/geotiff6.html#6.3.4.1 This key
37: * may be used to specify the vertical coordinate system.
38: */
39: public static final int VerticalCSTypeGeoKey = 4096;
40:
41: /**
42: * VerticalDatumGeoKey Key ID = 4098 Type = SHORT (code) Values = Section
43: * 6.3.4.2 codes
44: * http://www.remotesensing.org/geotiff/spec/geotiff6.html#6.3.4.2 This key
45: * may be used to specify the vertical datum for the vertical coordinate
46: * system.
47: */
48: public static final int VerticalDatumGeoKey = 4098;
49:
50: /**
51: * VerticalUnitsGeoKey Key ID = 4099 Type = SHORT (code) Values = Section
52: * 6.3.1.3 Codes
53: * http://www.remotesensing.org/geotiff/spec/geotiff6.html#6.3.1.3 This key
54: * may be used to specify the vertical units of measurement used in the
55: * geographic coordinate system, in cases where geographic CS's need to
56: * reference the vertical coordinate. This, together with the Citation key,
57: * comprise the only fully implemented keys in this section, at present.
58: */
59: public static final int VerticalUnitsGeoKey = 4099;
60:
61: private GeoTiffVCSCodes() {
62: }
63:
64: }
|