/usr/include/ossim/imaging/ossimIgenGenerator.h is in libossim-dev 1.7.21-3ubuntu2.
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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts (gpotts@imagelinks.com)
//
//*************************************************************************
// $Id: ossimIgenGenerator.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimIgenGenerator_HEADER
#define ossimIgenGenerator_HEADER
#include <stack>
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimKeywordlist.h>
#include <ossim/base/ossimFilename.h>
#include <ossim/base/ossimGrect.h>
#include <ossim/base/ossimGeoPolygon.h>
#include <ossim/imaging/ossimImageSource.h>
#include <ossim/projection/ossimProjection.h>
#include <ossim/imaging/ossimImageFileWriter.h>
class OSSIMDLLEXPORT ossimIgenGenerator
{
public:
ossimIgenGenerator(ossimConnectableObject* input=NULL,
ossimConnectableObject* output=NULL,
ossimObject* view=NULL)
:thePixelType(OSSIM_PIXEL_IS_POINT),
theTilingFlag(false),
theTileSpacing(7.5, 7.5),
theTileSpacingUnits(OSSIM_MINUTES),
theTilePadding(0,0),
theTilePaddingUnits(OSSIM_PIXEL),
theNamingConvention("DEFAULT"),
theSpecFileLocation(""),
theIgenExecutable("igen"),
theSpecFileIndex(0),
theSpecListIndex(0),
theTileNamingConvention("id")
{
theUpperLeftTileStart.makeNan();
setInput(input);
setOutput(output);
setView(view);
theInputBoundingRect.makeNan();
}
~ossimIgenGenerator()
{
}
void setOutput(ossimConnectableObject* output)
{
theSpecList.clear();
generateOutputKwl(output);
}
void setOutput(const ossimKeywordlist& kwl);
void setInput(ossimConnectableObject* input);
void setView(ossimObject* view)
{
generateViewKwl(view);
}
void generateSpecList(bool outputToFileFlag = false);
void getImageFilenamesFromSpecList(std::vector<ossimFilename>& filenameList);
ossimGrect getBoundingGround()const;
void executeSpecList();
void setIteratorsToStart()
{
theSpecFileIndex = 0;
theSpecListIndex = 0;
}
bool nextSpecFile(ossimFilename& specFile)
{
if(theSpecFileIndex >= theSpecFileList.size())
{
return false;
}
specFile = theSpecFileList[theSpecFileIndex];
++theSpecFileIndex;
return true;
}
void getSpecs(vector<ossimKeywordlist>& specList)const
{
specList = theSpecList;
}
ossim_uint32 getNumberOfSpecFiles()const
{
return theSpecFileList.size();
}
ossimFilename getSpecFilename(ossim_uint32 specFileIndex = 0)const
{
if(specFileIndex < theSpecFileList.size())
{
return theSpecFileList[specFileIndex];
}
return ossimFilename("");
}
ossimFilename buildExe(ossim_uint32 i = 0)const
{
ossimFilename igenExe = getIgenExecutable();
ossimFilename specFile = getSpecFilename(i);
return ossimFilename( igenExe + " " + specFile);
}
void getSpec(ossimKeywordlist& kwl,
ossim_uint32 specIndex=0)
{
kwl.clear();
if(specIndex < theSpecList.size())
{
kwl = theSpecList[specIndex];
}
}
void getInput(ossimKeywordlist& kwl,
const char* prefix=NULL)const
{
kwl.add(prefix,
theInputKwl,
true);
}
void getOutput(ossimKeywordlist& kwl,
const char* prefix=NULL)const
{
kwl.add(prefix,
theOutputKwl,
true);
}
void getView(ossimKeywordlist& kwl,
const char* prefix=NULL)const
{
kwl.add(prefix,
theViewKwl,
true);
}
void setView(ossimKeywordlist& kwl,
const char* prefix = NULL)
{
theViewKwl.clear();
theViewKwl.add(prefix,
kwl,
true);
}
void setOutput(ossimKeywordlist& kwl,
const char* prefix = NULL)
{
theOutputKwl.clear();
theOutputKwl.add(prefix,
kwl,
true);
}
void setSpecFileLocation(const ossimFilename& filename)
{
theSpecFileLocation = filename;
}
const ossimFilename& getSpecFileLocation()const
{
return theSpecFileLocation;
}
void setIgenExecutable(const ossimFilename& igenExecutable)
{
theIgenExecutable = igenExecutable;
}
const ossimFilename& getIgenExecutable()const
{
return theIgenExecutable;
}
void setOutputPolygon(const ossimGeoPolygon& poly)
{
theOutputGeoPolygon = poly;
}
void setPixelType(ossimPixelType pixelType)
{
thePixelType = pixelType;
}
void getOutputGeoPolygon(ossimGeoPolygon& poly)const
{
poly = theOutputGeoPolygon;
}
const ossimGeoPolygon& getOutputGeoPolygon()const
{
return theOutputGeoPolygon;
}
void setTilingFlag(bool flag)
{
theTilingFlag = flag;
}
void setTileSpacing(const ossimDpt& spacing)
{
theTileSpacing = spacing;
}
void setTilePadding(const ossimDpt& padding)
{
theTilePadding = padding;
}
void setTileSpacingUnits(ossimUnitType unitType)
{
theTileSpacingUnits = unitType;
}
void setTilePaddingUnits(ossimUnitType unitType)
{
theTilePaddingUnits = unitType;
}
bool getTilingFlag()const
{
return theTilingFlag;
}
const ossimDpt& getTileSpacing()const
{
return theTileSpacing;
}
const ossimDpt& getTilePadding()const
{
return theTilePadding;
}
ossimUnitType getTileSpacingUnits()const
{
return theTileSpacingUnits;
}
ossimUnitType getTilePaddingUnits()const
{
return theTilePaddingUnits;
}
ossimPixelType getPixelType()const
{
return thePixelType;
}
/*!
* Tile naming convention is a string that can be "id" or "usgs".
* this is used if tiling is enabled. If id is used it will use the filename
* as the prefix and then add to it the id's. If usgs is used it will name
* it based on the USGS name.
*/
void setTileNamingConvention(const ossimString& namingConvention)
{
theTileNamingConvention = namingConvention;
theTileNamingConvention = theTileNamingConvention.downcase();
}
const ossimString& getTileNamingConvention()const
{
return theTileNamingConvention;
}
ossimIrect getInputBoundingRect()const;
ossimProjection* createProductProjection()const;
ossimObject* createOutput()const;
ossimObject* createInput()const;
protected:
ossimKeywordlist theInputKwl;
ossimKeywordlist theOutputKwl;
ossimKeywordlist theViewKwl;
ossimPixelType thePixelType;
bool theTilingFlag;
ossimDpt theUpperLeftTileStart;
ossimDpt theTileSpacing;
ossimUnitType theTileSpacingUnits;
ossimDpt theTilePadding;
ossimUnitType theTilePaddingUnits;
ossimString theNamingConvention;
ossimFilename theSpecFileLocation;
ossimFilename theIgenExecutable;
ossim_uint32 theSpecFileIndex;
ossim_uint32 theSpecListIndex;
ossimIrect theInputBoundingRect;
ossimGeoPolygon theOutputGeoPolygon;
ossimString theTileNamingConvention;
vector<ossimKeywordlist> theSpecList;
vector<ossimFilename> theSpecFileList;
void generateInputKwl(ossimConnectableObject* connectable);
void generateOutputKwl(ossimConnectableObject* connectable);
void generateViewKwl(ossimObject* view);
void setDefaultOutput();
void generateTiledSpecList(bool outputToFileFlag);
void generateGeoTiledSpecList(const ossimDpt& spacing, bool outputToFileFlag);
void generatePixelTiledSpecList(bool outputToFileFlag);
void generateNoTiledSpecList(bool outputToFileFlag);
void generateChainForMultiInput(ossimConnectableObject* connectable);
void generateChainForMultiInputRecurse(std::stack<ossimConnectableObject*>& aStack,
ossimConnectableObject* connectable);
int getTileId(const ossimDrect& rect,
const ossimDpt& currentPt,
const ossimDpt& spacing)const;
void addPadding(ossimGeoPolygon& output,
const ossimGeoPolygon& input)const;
void addPixelType(ossimKeywordlist& kwl, const char* prefix="product.");
};
#endif
|