/usr/include/ossim/base/ossimWgs72Datum.h is in libossim-dev 2.2.2-1.
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 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts (gpotts@imagelinks.com)
//
// Description:
//
// Wgs72Datum. Special hardcoded datum. It will create a static
// instance of a Wgs72Ellipsoid and set the initial defaults for
// that are specific to a Wgs72Datum
//*******************************************************************
// $ID$
#ifndef ossimWgs72Datum_HEADER
#define ossimWgs72Datum_HEADER
#include <ossim/base/ossimThreeParamDatum.h>
class OSSIMDLLEXPORT ossimWgs72Datum : public ossimThreeParamDatum
{
public:
ossimWgs72Datum();
virtual ~ossimWgs72Datum(){}
virtual ossimGpt shift(const ossimGpt &aPt)const;
virtual ossimGpt shiftToWgs84(const ossimGpt &aPt)const;
virtual ossimGpt shiftFromWgs84(const ossimGpt &aPt)const;
TYPE_DATA;
};
#endif
|