001    //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/branches/2.3_testing/src/org/deegree/io/geotiff/GeoTiffKey.java $
002    /*----------------------------------------------------------------------------
003     This file is part of deegree, http://deegree.org/
004     Copyright (C) 2001-2009 by:
005       Department of Geography, University of Bonn
006     and
007       lat/lon GmbH
008    
009     This library is free software; you can redistribute it and/or modify it under
010     the terms of the GNU Lesser General Public License as published by the Free
011     Software Foundation; either version 2.1 of the License, or (at your option)
012     any later version.
013     This library is distributed in the hope that it will be useful, but WITHOUT
014     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
015     FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
016     details.
017     You should have received a copy of the GNU Lesser General Public License
018     along with this library; if not, write to the Free Software Foundation, Inc.,
019     59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
020    
021     Contact information:
022    
023     lat/lon GmbH
024     Aennchenstr. 19, 53177 Bonn
025     Germany
026     http://lat-lon.de/
027    
028     Department of Geography, University of Bonn
029     Prof. Dr. Klaus Greve
030     Postfach 1147, 53001 Bonn
031     Germany
032     http://www.geographie.uni-bonn.de/deegree/
033    
034     e-mail: info@deegree.org
035    ----------------------------------------------------------------------------*/
036    package org.deegree.io.geotiff;
037    
038    /**
039     * This class represents the possible GeoTIFF keys (from 1024 to 4099) in the GeoKeyDirectoryTag
040     * (34735).
041     *
042     * @author <a href="mailto:schaefer@lat-lon.de">Axel Schaefer </A>
043     * @author last edited by: $Author: mschneider $
044     * @version 2.0. $Revision: 18195 $, $Date: 2009-06-18 17:55:39 +0200 (Do, 18. Jun 2009) $
045     * @since
046     */
047    public class GeoTiffKey {
048    
049        public static final int GTModelTypeGeoKey = 1024;
050    
051        public static final int GTRasterTypeGeoKey = 1025;
052    
053        public static final int GTCitationGeoKey = 1026;
054    
055        public static final int GeographicTypeGeoKey = 2048;
056    
057        public static final int GeogCitationGeoKey = 2049;
058    
059        public static final int GeogGeodeticDatumGeoKey = 2050;
060    
061        public static final int GeogPrimeMeridianGeoKey = 2051;
062    
063        public static final int GeogLinearUnitsGeoKey = 2052;
064    
065        public static final int GeogLinearUnitSizeGeoKey = 2053;
066    
067        public static final int GeogAngularUnitsGeoKey = 2054;
068    
069        public static final int GeogAngularUnitSizeGeoKey = 2055;
070    
071        public static final int GeogEllipsoidGeoKey = 2056;
072    
073        public static final int GeogSemiMajorAxisGeoKey = 2057;
074    
075        public static final int GeogSemiMinorAxisGeoKey = 2058;
076    
077        public static final int GeogInvFlatteningGeoKey = 2059;
078    
079        public static final int GeogAzimuthUnitsGeoKey = 2060;
080    
081        public static final int GeogPrimeMeridianLongGeoKey = 2061;
082    
083        public static final int ProjectedCSTypeGeoKey = 3072;
084    
085        public static final int PCSCitationGeoKey = 3073;
086    
087        public static final int ProjectionGeoKey = 3074;
088    
089        public static final int ProjCoordTransGeoKey = 3075;
090    
091        public static final int ProjLinearUnitsGeoKey = 3076;
092    
093        public static final int ProjLinearUnitSizeGeoKey = 3077;
094    
095        public static final int ProjStdParallel1GeoKey = 3078;
096    
097        // public static final int ProjStdParallelGeoKey =$ProjStdParallel1GeoKey;
098        public static final int ProjStdParallel2GeoKey = 3079;
099    
100        public static final int ProjNatOriginLongGeoKey = 3080;
101    
102        // public static final int ProjOriginLongGeoKey =$ProjNatOriginLongGeoKey
103        public static final int ProjNatOriginLatGeoKey = 3081;
104    
105        // public static final int ProjOriginLatGeoKey =$ProjNatOriginLatGeoKey
106        public static final int ProjFalseEastingGeoKey = 3082;
107    
108        public static final int ProjFalseNorthingGeoKey = 3083;
109    
110        public static final int ProjFalseOriginLongGeoKey = 3084;
111    
112        public static final int ProjFalseOriginLatGeoKey = 3085;
113    
114        public static final int ProjFalseOriginEastingGeoKey = 3086;
115    
116        public static final int ProjFalseOriginNorthingGeoKey = 3087;
117    
118        public static final int ProjCenterLongGeoKey = 3088;
119    
120        public static final int ProjCenterLatGeoKey = 3089;
121    
122        public static final int ProjCenterEastingGeoKey = 3090;
123    
124        public static final int ProjCenterNorthingGeoKey = 3091;
125    
126        public static final int ProjScaleAtNatOriginGeoKey = 3092;
127    
128        // public static final int ProjScaleAtOriginGeoKey
129        // =$ProjScaleAtNatOriginGeoKey
130        public static final int ProjScaleAtCenterGeoKey = 3093;
131    
132        public static final int ProjAzimuthAngleGeoKey = 3094;
133    
134        public static final int ProjStraightVertPoleLongGeoKey = 3095;
135    
136        public static final int VerticalCSTypeGeoKey = 4096;
137    
138        public static final int VerticalCitationGeoKey = 4097;
139    
140        public static final int VerticalDatumGeoKey = 4098;
141    
142        public static final int VerticalUnitsGeoKey = 4099;
143    
144        /**
145         * private default constructor prevents instantiation
146         */
147        private GeoTiffKey() {
148        }
149    
150    }