/usr/include/ossim/projection/ossimNitfProjectionFactory.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 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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | //----------------------------------------------------------------------------
//
// License: See top level LICENSE.txt file.
//
// Author: Matt Revelle
// David Burken
//
// Description:
//
// Contains class declaration for ossimNitfProjectionFactory.
//
// $Id: ossimNitfProjectionFactory.h 18905 2011-02-16 13:30:11Z dburken $
//----------------------------------------------------------------------------
#ifndef ossimNitfProjectionFactory_HEADER
#define ossimNitfProjectionFactory_HEADER 1
#include <vector>
#include <ossim/projection/ossimProjectionFactoryBase.h>
class ossimProjection;
class ossimString;
class ossimGpt;
class ossimNitfTileSource;
class ossimNitfImageHeader;
class ossimNitfFileHeader;
class ossimDpt;
class OSSIMDLLEXPORT ossimNitfProjectionFactory : public ossimProjectionFactoryBase
{
public:
/**
* METHOD: instance()
*
* @return Singleton instance of this class.
*/
static ossimNitfProjectionFactory* instance();
/**
* destructor
*/
virtual ~ossimNitfProjectionFactory();
/**
* @param filename This filename can be an image file or
* it can also be a ossim .geom file. It could be other
* forms of geom files as well. The factories job will be to
* determine what parser to use and return a projection if
* successful.
*
* @return ossimProjection* on success or NULL if not handled.
*/
virtual ossimProjection* createProjection(const ossimFilename& filename,
ossim_uint32 entryIdx)const;
/**
* @param name This would be a projection name.
*
* @return ossimProjection* on success or NULL if not handled.
*/
virtual ossimProjection* createProjection(const ossimString& name)const;
/**
* @param kwl Keyword list to instantiate projection from.
*
* @return ossimProjection* on success or NULL if not handled.
*/
virtual ossimProjection* createProjection(const ossimKeywordlist& kwl,
const char* prefix = 0)const;
virtual ossimProjection* createProjection(ossimImageHandler* handler)const;
/**
* Creates an object given a type name.
*
* @return ossimObject on success or NULL if not handled.
*/
virtual ossimObject* createObject(const ossimString& typeName)const;
/**
* Creates and object given a keyword list.
*
* @return ossimObject on success or NULL if not handled.
*/
virtual ossimObject* createObject(const ossimKeywordlist& kwl,
const char* prefix=0)const;
/**
* This should return the type name of all objects in all factories.
* This is the name used to construct the objects dynamially and this
* name must be unique.
*
* @param typeList List to append names to.
*/
virtual void getTypeNameList(std::vector<ossimString>& typeList)const;
private:
ossimProjection* createProjectionFromHeaders(
ossimNitfFileHeader* fileHeader,
ossimNitfImageHeader* imageHeader)const;
/**
* @param hdr The nitf image header.
*
* @param coordianteSystem The coordinate system as a string.
*
* @param geographicLocation This should contain the four corner strings.
*
* @return Either an ossimEquDistCylProjection or ossimBilinearProjection
* depending upon if the corner points line up evenly.
*/
ossimProjection* makeGeographic(const ossimNitfImageHeader* hdr,
const ossimString& coordinateSysetm)const;//,
//const ossimFilename& filename) const;
/**
* @param hdr The nitf image header.
*
* @param coordianteSystem The coordinate system as a string.
*
* @param geographicLocation This should contain the four corner strings.
*
* @return ossimUtmProjection
*/
ossimProjection* makeUtm(const ossimNitfImageHeader* hdr,
const ossimString& coordinateSysetm)const;//,
/**
* @param hdr The nitf image header.
*
* @param gpts Four geographic corner points.
*
* @return ossimEquDistCylProjection* or null if a problem is found.
*/
ossimProjection* makeEuiDistant(const ossimNitfImageHeader* hdr,
const std::vector<ossimGpt>& gpts) const;
/**
* @return ossimBilinearProjection* or null if a problem is found.
*/
ossimProjection* makeBilinear(const ossimNitfImageHeader* hdr,
const std::vector<ossimGpt>& gpts) const;
/**
* Parses geographic stream. This will initialize the vector of ossimGpt's
* with the four corners. If the string geographicLocation is not the
* correct size the vector will be cleared.
*
* @param geographicLocation String containing corners.
*
* @param gpts Vector to initialize.
*/
void parseGeographicString(const ossimString& geographicLocation,
std::vector<ossimGpt>& gpts) const;
/**
* Parses Decimal degree stream. This will initialize the vector of ossimGpt's
* with the four corners. If the string geographicLocation is not the
* correct size the vector will be cleared.
*
* @param geographicLocation String containing corners.
*
* @param gpts Vector to initialize.
*/
void parseDecimalDegreesString(const ossimString& geographicLocation,
std::vector<ossimGpt>& gpts) const;
void parseUtmString(const ossimString& utmLocation,
ossim_uint32& zone,
std::vector<ossimDpt>& utmPoints)const;
/**
* @brief Gets UTM points, zone and hemisphere from IGEOLO field when ICORDS files = U which is
* UTM expressed in MGRS.
* @param mgrsLocationString String from IGEOLO field.
* @param zone Initialized in method.
* @param hemisphere Initialized in method.
* @param utmPoints Initialized in method.
* @return True on success, false on error.
*/
bool parseMgrsString(const ossimString& mgrsLocationString,
ossim_uint32& zone,
char& hemisphere,
std::vector<ossimDpt>& utmPoints) const;
/**
* Computes the scale in decimal degrees with scale.x being longitude,
* y being latitude.
*
* @param hdr The nitf image header from the currently opened nitf file.
*
* @param gpts Four geographic corner points.
*
* @param scale Scale to initialize.
*
* @note scale will be set to nan's on failure.
*/
void computeScaleInDecimalDegrees(const ossimNitfImageHeader* hdr,
const std::vector<ossimGpt>& gpts,
ossimDpt& scale) const;
/**
* Computes the scale in meters with scale.x being easting,
* y being northing.
*
* @param hdr The nitf image header from the currently opened nitf file.
*
* @param dpts Four utm corner points.
*
* @param scale Scale to initialize.
*
* @note scale will be set to nan's on failure.
*/
void computeScaleInMeters(const ossimNitfImageHeader* hdr,
const std::vector<ossimDpt>& dpts,
ossimDpt& scale) const;
/**
* @return true if corner points are parallel to each other, else false.
*/
bool isSkewed(const std::vector<ossimGpt>& gpts) const;
/**
* @return true if corner points are parallel to each other, else false.
*/
bool isSkewed(const std::vector<ossimDpt>& gpts) const;
/**
* @param hdr The nitf image header from the currently opened nitf file.
*
* @param gpts Ground points to initialize from BLOCKA tag. This should
* be an empty vector.
*
* @return true if BLOCKA tag was parsed.
*/
bool getBlockaPoints(const ossimNitfImageHeader* hdr,
std::vector<ossimGpt>& gpts)const;//,
//const ossimFilename& filename) const;
/**
* Private constructor, users must go through instance() method.
*/
ossimNitfProjectionFactory();
/**
* Private copy constructor to hide from use.
*/
ossimNitfProjectionFactory(const ossimNitfProjectionFactory& obj);
/**
* Private operator = to hide from use.
*/
ossimNitfProjectionFactory& operator=(const ossimNitfProjectionFactory& rhs);
static ossimNitfProjectionFactory* theInstance;
bool isNitf(const ossimFilename& filename)const;
};
#endif /* End of "#ifndef ossimNitfProjectionFactory_HEADER" */
|