OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
ossimGeoTiffDatumLut.h
Go to the documentation of this file.
1 //*******************************************************************
2 // Copyright (C) 2001 ImageLinks Inc.
3 //
4 // License: MIT
5 //
6 // See LICENSE.txt file in the top level directory for more details.
7 //
8 // Author: David Burken
9 //
10 // Description:
11 //
12 // Contains class declaration for GeoTiffDatumLut. Used to map a
13 // geotiff coordinate transformation code to an ossim projection.
14 //*******************************************************************
15 // $Id: ossimGeoTiffDatumLut.h 9094 2006-06-13 19:12:40Z dburken $
16 
17 #ifndef ossimGeoTiffDatumLut_HEADER
18 #define ossimGeoTiffDatumLut_HEADER
19 
22 
24 {
25 public:
26 
27  enum
28  {
29  //---
30  // Datum codes cut from geotiff specification section 6.3.2.1.
31  //---
32  GCS_Adindan = 4201,
33  GCS_Arc_1950 = 4209,
34  GCS_Arc_1960 = 4210,
35  GCS_ED50 = 4230,
36  GCS_NAD27 = 4267,
37  GCS_NAD83 = 4269,
38  GCS_OSGB_1936 = 4277,
39  GCS_WGS_72 = 4322,
40  GCS_WGS_84 = 4326,
41  GCS_Tokyo = 4301,
42  GCS_NAD83_HARN = 4152,
43 
44  //---
45  // Datum codes cut from geotiff specification section 6.3.2.1.
46  // NOTE: These codes imply an ellipsoid only!
47  //---
48  GCS_Clark_1866 = 4008,
49 
50  //---
51  // Datum codes cut from geotiff specification section 6.3.2.2.
52  //---
53  DatumE_WGS84 = 6030,
54  Datum_Adindan = 6201,
55  Datum_Arc_1950 = 6209,
56  Datum_Arc_1960 = 6210,
57  Datum_European_Datum_1950 = 6230,
58  Datum_North_American_Datum_1927 = 6267,
59  Datum_North_American_Datum_1983 = 6269,
60  Datum_OSGB_1936 = 6277,
61  Datum_Tokyo = 6301,
62  Datum_WGS72 = 6322,
63  Datum_WGS84 = 6326,
64  Datum_NAD83_HARN = 6152
65  };
66 
68 
69  virtual ~ossimGeoTiffDatumLut();
70 
71  virtual ossimKeyword getKeyword() const;
72 };
73 
74 #endif
#define OSSIMDLLEXPORT
virtual ossimKeyword getKeyword() const