/usr/include/ossim/projection/ossimGoogleProjection.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 32 33 34 | //*******************************************************************
//
// License: MIT
//
// See LICENSE.txt file in the top level directory for more details.
//
//
//*******************************************************************
#ifndef ossimGoogleProjection_HEADER
#define ossimGoogleProjection_HEADER 1
#include <ossim/projection/ossimMapProjection.h>
class OSSIM_DLL ossimGoogleProjection : public ossimMapProjection
{
public:
ossimGoogleProjection(const ossimEllipsoid& ellipsoid = ossimEllipsoid(),
const ossimGpt& origin = ossimGpt());
ossimGoogleProjection(const ossimGoogleProjection&);
~ossimGoogleProjection();
virtual ossimObject *dup()const{return new ossimGoogleProjection(*this);}
virtual ossimDpt forward(const ossimGpt &worldPoint) const;
virtual ossimGpt inverse(const ossimDpt &projectedPoint)const;
virtual void update();
virtual bool loadState(const ossimKeywordlist& kwl, const char* prefix=0);
virtual bool saveState(ossimKeywordlist& kwl, const char* prefix=0)const;
virtual bool operator==(const ossimProjection& projection) const;
protected:
TYPE_DATA;
};
#endif
|