/usr/include/ossim/base/ossimGeoidManager.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 75 76 77 78 79 80 81 82 83 84 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// AUTHOR: Oscar Kramer
//
// DESCRIPTION: Contains declaration of class ossimGeoidManager. Maintains
// a list of geoids.
//
// LIMITATIONS: None.
//
//*****************************************************************************
// $Id: ossimGeoidManager.h 12319 2008-01-16 19:55:24Z gpotts $
#ifndef ossimGeoidManager_HEADER
#define ossimGeoidManager_HEADER
#include <vector>
#include <ossim/base/ossimRefPtr.h>
#include <ossim/base/ossimGeoid.h>
/*****************************************************************************
*
* CLASS: ossimGeoidManager
*
*****************************************************************************/
class OSSIMDLLEXPORT ossimGeoidManager : public ossimGeoid
{
public:
virtual ~ossimGeoidManager();
/**
* Implements singelton pattern:
*/
static ossimGeoidManager* instance();
/**
* Permits initialization of geoids from directory name. Should never be
* called since called on specific geoid types:
*/
virtual bool open(const ossimFilename& dir, ossimByteOrder byteOrder);
/**
* @return The offset from the ellipsoid to the geoid or ossim::nan()
* if grid does not contain the point.
*/
virtual double offsetFromEllipsoid(const ossimGpt& gpt) const;
/**
* Method to save the state of the object to a keyword list.
* Return true if ok or false on error. DO NOTHING
*/
virtual bool saveState(ossimKeywordlist& kwl,
const char* prefix=0) const;
/**
* Method to the load (recreate) the state of the object from a keyword
* list. Return true if ok or false on error.
*/
virtual bool loadState(const ossimKeywordlist& kwl,
const char* prefix=0);
/**
* Permits adding additional geoids to the list:
*/
virtual void addGeoid(ossimRefPtr<ossimGeoid> geoid, bool toFrontFlag=false);
const ossimRefPtr<ossimGeoid> findGeoidByShortName(const ossimString& shortName,
bool caseSensitive=true)const;
private:
/**
* Private constructor. Use "instance" method.
*/
ossimGeoidManager();
static ossimGeoidManager* theInstance;
mutable std::vector< ossimRefPtr<ossimGeoid> > theGeoidList;
TYPE_DATA
};
#endif
|