001    //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/branches/2.3_testing/src/org/deegree/io/geotiff/GeoTiffTag.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    
037    package org.deegree.io.geotiff;
038    
039    /**
040     * This class represents the possible GeoTIFF tags (from 256 to 34737)
041     *
042     *
043     * @author <a href="mailto:schaefer@lat-lon.de">Axel Schaefer</A>
044     * @author last edited by: $Author: mschneider $
045     * @version 2.0. $Revision: 18195 $, $Date: 2009-06-18 17:55:39 +0200 (Do, 18. Jun 2009) $
046     * @since
047     */
048    public class GeoTiffTag {
049    
050        // general tiff tags
051        public static final int ImageWidth = 256;
052    
053        public static final int ImageLength = 257;
054    
055        public static final int BitsPerSample = 258;
056    
057        public static final int Compression = 259;
058    
059        public static final int PhotometricInterpretation = 262;
060    
061        public static final int FillOrder = 266;
062    
063        public static final int DocumentName = 269;
064    
065        public static final int ImageDescription = 270;
066    
067        public static final int StripOffsets = 273;
068    
069        public static final int Orientation = 274;
070    
071        public static final int SamplesPerPixel = 277;
072    
073        public static final int RowsPerStrip = 278;
074    
075        public static final int StripByteCounts = 279;
076    
077        public static final int XResolution = 282;
078    
079        public static final int YResolution = 283;
080    
081        public static final int PlanarConfiguration = 284;
082    
083        public static final int ResolutionUnit = 296;
084    
085        public static final int Software = 305;
086    
087        public static final int ColorMap = 320;
088    
089        public static final int TileWidth = 322;
090    
091        public static final int TileLength = 323;
092    
093        public static final int TileOffsets = 324;
094    
095        public static final int TileByteCounts = 325;
096    
097        public static final int SampleFormat = 339;
098    
099        public static final int SMinSampleValue = 340;
100    
101        public static final int SMaxSampleValue = 341;
102    
103        // tiff tags used for geotiff
104        public static final int ModelPixelScaleTag = 33550;
105    
106        public static final int IntergraphMatrixTag = 33920;
107    
108        public static final int ModelTiepointTag = 33922;
109    
110        public static final int ModelTransformationTag = 34264;
111    
112        public static final int GeoKeyDirectoryTag = 34735;
113    
114        public static final int GeoDoubleParamsTag = 34736;
115    
116        public static final int GeoAsciiParamsTag = 34737;
117    
118        /**
119         * private default constructor prevents instantiation
120         */
121        private GeoTiffTag() {
122        }
123    }