/usr/include/ossim/imaging/ossimGeoPolyCutter.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 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts (gpotts@imagelinks)
//
//*************************************************************************
// $Id: ossimGeoPolyCutter.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimGeoPolyCutter_HEADER
#define ossimGeoPolyCutter_HEADER
#include <ossim/imaging/ossimPolyCutter.h>
#include <ossim/base/ossimViewInterface.h>
#include <ossim/base/ossimGeoPolygon.h>
#include <vector>
class ossimImageData;
class ossimProjection;
/*!
* ossimGeoPolyCutter.
*
* This classes overrides the 2-d counter part ossimPolyCutter. It will automatically
* map 2-D to 3-D (ground) polygons if you add 2-D polygons and will automatically
* compute the forward transform when adding a ground polygon.
*
* you can set the view trough the ossimViewInterface by calling setView(object, true);
* it will cast to an ossimProjection and use that as the transformation. For igen this is
* set automatically and does not need to be set by the user.
*
* This class has no keywords but does use 2 prefix values to store out the view
* and the ground polygon for example if we have only one polygon then here is a sample
* keyword list for the polygons: NOTE we can have any number of polygons just increment
* the geo_polygon0 to geo_polygon1 .. geo_polygonN for the Nth one
*
* <pre>
*
* geo_polygon0.datum: WGE
* geo_polygon0.number_vertices: 18
* geo_polygon0.type: ossimGeoPolygon
* geo_polygon0.v0: 38.023634368488452 -122.542245818545709 nan
* geo_polygon0.v1: 38.016619667868909 -122.548990722987568 nan
* geo_polygon0.v2: 38.018238444934966 -122.546292761210807 nan
* geo_polygon0.v3: 38.012932453440698 -122.547911538276864 nan
* geo_polygon0.v4: 38.014731094625191 -122.542065954427244 nan
* geo_polygon0.v5: 38.007446597827986 -122.541796158249582 nan
* geo_polygon0.v6: 38.009694899308606 -122.537569351466018 nan
* geo_polygon0.v7: 38.005108364288141 -122.537119691169892 nan
* geo_polygon0.v8: 38.008255986361007 -122.532353292030976 nan
* geo_polygon0.v9: 38.003039926925965 -122.531274107320272 nan
* geo_polygon0.v10: 38.013292181677599 -122.529565398195004 nan
* geo_polygon0.v11: 38.009874763427050 -122.526867436418243 nan
* geo_polygon0.v12: 38.019587425823332 -122.528306349365849 nan
* geo_polygon0.v13: 38.023904164666128 -122.537299555288328 nan
* geo_polygon0.v14: 38.024983349376825 -122.544584052085540 nan
* geo_polygon0.v15: 38.023904164666128 -122.548720926809878 nan
* geo_polygon0.v16: 38.022195455540853 -122.562210735693611 nan
* geo_polygon0.v17: 38.019317629645663 -122.562930192167400 nan
*
*
* the example for the view information is
*
* view.central_meridian: -123.000000000000000
* view.datum: WGE
* view.decimal_degrees_per_pixel_lat: 0.000089932059225
* view.decimal_degrees_per_pixel_lon: 0.000089932059225
* view.ellipse_code: WE
* view.ellipse_name: WGS 84
* view.false_easting: 0.000000000000000
* view.false_northing: 0.000000000000000
* view.major_axis: 6378137.000000000000000
* view.meters_per_pixel_x: 10.000000000000000
* view.meters_per_pixel_y: 10.000000000000000
* view.minor_axis: 6356752.314199999906123
* view.origin_latitude: 0.000000000000000
* view.rotation: 0.000000000000000
* view.scale_x: 1.000000000000000
* view.scale_y: 1.000000000000000
* view.tie_point_easting: 0.000000000000000
* view.tie_point_lat: 0.000000000000000
* view.tie_point_lon: -123.000000000000000
* view.tie_point_northing: 0.000000000000000
* view.translation_x: 0.000000000000000
* view.translation_y: 0.000000000000000
* view.type: ossimEquDistCylProjection
*
* </pre>
*/
class OSSIM_DLL ossimGeoPolyCutter : public ossimPolyCutter,
public ossimViewInterface
{
public:
ossimGeoPolyCutter();
virtual ~ossimGeoPolyCutter();
virtual bool saveState(ossimKeywordlist& kwl,
const char* prefix=0)const;
/*!
* Method to the load (recreate) the state of an object from a keyword
* list. Return true if ok or false on error.
*/
virtual bool loadState(const ossimKeywordlist& kwl,
const char* prefix=0);
/*!
* Sets the polygon to the specified polygon index.
* /param polygon A vector of points in projected 2-D.
* /param i index of the polygon to change.
*/
virtual void setPolygon(const vector<ossimDpt>& polygon,
ossim_uint32 i = 0);
/*!
* Sets the polygon to the specified polygon index.
* /param polygon A vector of points in projected 2-D.
* /param i index of the polygon to change.
*/
virtual void setPolygon(const vector<ossimIpt>& polygon,
ossim_uint32 i = 0);
/*!
* Sets the polygon to the specified polygon index.
* /param polygon A Ground polygon.
* /param i index of the polygon to change.
*/
virtual void setPolygon(const vector<ossimGpt>& polygon,
ossim_uint32 i = 0);
virtual void setPolygon(const ossimGeoPolygon& polygon,
ossim_uint32 i = 0);
/*!
* Will invert this polygon out to world space and add it to the
* polygon list
*/
virtual void addPolygon(const vector<ossimIpt>& polygon);
/*!
* Will invert the passed in polygon to world space and add to the
* polygon list
*/
virtual void addPolygon(const vector<ossimDpt>& polygon);
/*!
* Will add the ground polygon to the list
*/
virtual void addPolygon(const vector<ossimGpt>& polygon);
/*!
* Will invert te polygon to ground and add.
*/
virtual void addPolygon(const ossimPolygon& polygon);
/*!
* Will add the passed in polygon.
*/
virtual void addPolygon(const ossimGeoPolygon& polygon);
/*!
* Will set the number of polygons and will call the base
* class set number of polygons.
*/
virtual void setNumberOfPolygons(ossim_uint32 count)
{
if(!count)
{
theGeoPolygonList.clear();
}
else
{
theGeoPolygonList.resize(count);
}
ossimPolyCutter::setNumberOfPolygons(count);
}
/*!
* This should only be used for informational uses only. If updates
* are to be made please go through the access methods that change
* the polygon data.
*/
virtual std::vector<ossimGeoPolygon>& getGeoPolygonList()
{
return theGeoPolygonList;
}
virtual const std::vector<ossimGeoPolygon>& getGeoPolygonList()const
{
return theGeoPolygonList;
}
/*!
* Will set the view to the passed in object. Once set it will project the
* ground polygon relative to the passed in view.
*/
virtual bool setView(ossimObject* baseObject,
bool ownsTheView = false);
/*!
* \return The current view for this object.
*/
virtual ossimObject* getView();
/*!
* \return The constant pointer to the current view for this object.
*/
virtual const ossimObject* getView()const;
protected:
/*!
* The view projection used to project the ground coordinates.
*/
ossimProjection* theViewProjection;
/*!
* Specifies whether the view is owned by this object or not.
*/
bool theOwnsViewFlag;
std::vector<ossimGeoPolygon> theGeoPolygonList;
/*!
* Utility method used to invert any passed in projected polygons to
* be changed or added to the list.
* \param polygonNumber the index of the polygon to invert to ground.
*/
void invertPolygon(int polygonNumber);
/*!
* Transforms all vertices based on the current theViewProjection.
*/
void transformVertices();
/*!
* Transforms the specified polygon index.
* \param i The polygon index to project.
*/
void transformVertices(int i);
TYPE_DATA
};
#endif
|