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