/usr/include/ossim/elevation/ossimImageElevationDatabase.h is in libossim-dev 1.8.16-3+b1.
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | //----------------------------------------------------------------------------
//
// File: ossimImageElevationDatabase.h
//
// License: LGPL
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: David Burken
//
// Description: See description for class below.
//
//----------------------------------------------------------------------------
// $Id$
#ifndef ossimImageElevationDatabase_HEADER
#define ossimImageElevationDatabase_HEADER 1
#include <ossim/elevation/ossimElevationDatabase.h>
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimFilename.h>
#include <ossim/base/ossimGrect.h>
#include <ossim/base/ossimRefPtr.h>
#include <ossim/base/ossimRtti.h>
#include <map>
class ossimString;
/**
* @class ossimTiledElevationDatabase
*
* Elevation source used for working with generic images opened by an
* ossimImageHandler. This class is typically utilized through the
* ossimElevManager.
*/
class OSSIM_DLL ossimImageElevationDatabase : public ossimElevationCellDatabase
{
public:
/** default constructor */
ossimImageElevationDatabase();
/**
* @brief Open a connection to a database.
*
* @param connectionString File or directory to open. In most cases this
* will point to a directory containing DEMs. Satisfies pure virtual
* ossimElevationDatabase::open().
*
* @return true on success, false on error.
*/
virtual bool open(const ossimString& connectionString);
/** @brief close method. Unreferences all data. */
virtual void close();
/**
* @brief Maps elevation data for region to a grid.
*
* This uses connectionString passed to open method as starting point.
*/
void mapRegion(const ossimGrect& region);
/**
* @brief Get height above MSL for point.
*
* Satisfies pure virtual ossimElevSource::getHeightAboveMSL().
*
* @return Height above MSL.
*/
virtual double getHeightAboveMSL(const ossimGpt& gpt);
/**
* @brief Get height above ellipsoid for point.
*
* Satisfies pure virtual ossimElevSource::getHeightAboveMSL().
*
* @return Height above MSL.
*/
virtual double getHeightAboveEllipsoid(const ossimGpt&);
/**
* Satisfies pure virtual ossimElevSource::pointHasCoverage
*
* @return true if database has coverage for point.
*/
virtual bool pointHasCoverage(const ossimGpt& gpt) const;
virtual bool getAccuracyInfo(ossimElevationAccuracyInfo& info, const ossimGpt& gpt) const;
/**
* Statisfies pure virtual ossimElevSource::getAccuracyLE90.
* @return The vertical accuracy (90% confidence) in the
* region of gpt:
*/
//virtual double getAccuracyLE90(const ossimGpt& gpt) const;
/**
* Statisfies pure virtual ossimElevSource::getAccuracyCE90.
* @return The horizontal accuracy (90% confidence) in the
* region of gpt.
*/
//virtual double getAccuracyCE90(const ossimGpt& gpt) const;
/** @brief Initialize from keyword list. */
virtual bool loadState(const ossimKeywordlist& kwl, const char* prefix=0);
/** @brief Save the state to a keyword list. */
virtual bool saveState(ossimKeywordlist& kwl, const char* prefix)const;
/**
* @brief Gets the bounding rectangle/coverage of elevation.
*
* @param rect Rectangle to initialize.
*/
void getBoundingRect(ossimGrect& rect) const;
/**
* @brief ProcessFile method.
*
* This method is linked to the ossimFileWalker::walk method via a callback
* mechanism. So it is called by the ossimFileWalk (caller). This class
* (callee) sets recurse and return flags accordingly to control
* the ossimFileWalker, e.g. don't recurse, stop altogether.
*
* @param file to process.
*/
void processFile(const ossimFilename& file);
protected:
/**
* @Brief Protected destructor.
*
* This class is derived from ossimReferenced so users should always use
* ossimRefPtr<ossimImageElevationDatabase> to hold instance.
*/
~ossimImageElevationDatabase();
virtual ossimRefPtr<ossimElevCellHandler> createCell(const ossimGpt& gpt);
// virtual ossim_uint64 createId(const ossimGpt& pt) const;
/**
* @brief Gets cell for point.
*
* This override ossimElevationCellDatabase::getOrCreateCellHandler as we cannot use
* the createId as our cells could be of any size.
*/
virtual ossimRefPtr<ossimElevCellHandler> getOrCreateCellHandler(const ossimGpt& gpt);
/**
* @brief Removes an entry from the m_cacheMap and m_entryMap maps.
*/
virtual void remove(ossim_uint64 id);
private:
// Private container to hold bounding rect and image handler.
struct ossimImageElevationFileEntry
{
/** @brief default constructor */
ossimImageElevationFileEntry();
/** @brief Constructor that takes a file name. */
ossimImageElevationFileEntry(const ossimFilename& file);
/** file name */
ossimFilename m_file;
/** Bounding rectangle in decimal degrees. */
ossimGrect m_rect;
/** True if in ossimElevationCellDatabase::m_cacheMap. */
bool m_loadedFlag;
};
/**
* @brief Initializes m_entryMap with all loadable files from
* m_connectionString.
*/
void loadFileMap();
/** Hidden from use copy constructor */
ossimImageElevationDatabase(const ossimImageElevationDatabase& copy_this);
/** Hidden from use assignment operator */
const ossimImageElevationDatabase& operator=(const ossimImageElevationDatabase& rhs);
std::map<ossim_uint64, ossimImageElevationFileEntry> m_entryMap;
ossim_uint64 m_lastMapKey;
ossim_uint64 m_lastAccessedId;
TYPE_DATA
};
inline void ossimImageElevationDatabase::remove(ossim_uint64 id)
{
std::map<ossim_uint64, ossimImageElevationFileEntry>::iterator entryIter = m_entryMap.find(id);
if ( entryIter != m_entryMap.end() )
{
(*entryIter).second.m_loadedFlag = false;
}
ossimElevationCellDatabase::remove(id);
}
#endif /* ossimImageElevationDatabase_HEADER */
|