-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathSpatialReference
308 lines (253 loc) · 11.3 KB
/
SpatialReference
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
306
307
308
/* -*-c++-*- */
/* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
* Copyright 2008-2010 Pelican Mapping
* http://osgearth.org
*
* osgEarth is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>
*/
#ifndef OSGEARTH_SPATIAL_REFERENCE_H
#define OSGEARTH_SPATIAL_REFERENCE_H 1
#include <osg/Referenced>
#include <osg/CoordinateSystemNode>
#include <osg/Vec3>
#include <OpenThreads/ReentrantMutex>
/*namespace osgEarth
{*/
//Definitions for the mercator extent
const double MERC_MINX = -2.00375e+007;
const double MERC_MINY = -2.00375e+007;
const double MERC_MAXX = 2.00375e+007;
const double MERC_MAXY = 2.00375e+007;
const double MERC_WIDTH = MERC_MAXX - MERC_MINX;
const double MERC_HEIGHT = MERC_MAXY - MERC_MINY;
// class OSGEARTH_EXPORT GeoLocator;
/**
* SpatialReference holds information describing the reference ellipsoid/datum
* and the projection of geospatial data.
*/
class SpatialReference : public osg::Referenced
{
public:
/**
* Creates an SRS from an initialization string. This can be a variety of
* things, including a WKT spec, a PROJ4 init string, or a "well-known"
* idenfitier (e.g., "WGS84" or "spherical-mercator").
*/
static SpatialReference* create( const std::string& init );
/**
* Attempts to create a spatial reference def from a pre-existing CSN, returning
* NULL if there is not enough information.
*/
static SpatialReference* create( osg::CoordinateSystemNode* csn );
/**
* Creates an SRS around a pre-existing OGR spatial reference handle. The new
* SpatialReference object takes ownership of the handle.
*
* @param xferOwnership
* If true, the SpatialReference object is responsible for releasing the handle
* upon destruction.
*/
static SpatialReference* createFromHandle( void* ogrHandle, bool xferOwnership =false );
public:
/**
* Transform a point to another SRS.
*/
virtual bool transform(
double x, double y, double z,
const SpatialReference* to_srs,
double& out_x, double& out_y, double& out_z,
void* context =0L ) const;
bool transform(
const osg::Vec3d& input,
const SpatialReference* to_srs,
osg::Vec3d& output,
void* context =0L) const
{
return transform(input.x(), input.y(), input.z(), to_srs, output.x(), output.y(), output.z(), context);
}
bool transform2D(
double x, double y,
const SpatialReference* to_srs,
double& out_x, double& out_y,
void* context =0L ) const
{
double dummyZ;
return transform(x, y, dummyZ, to_srs, out_x, out_y, dummyZ, context);
}
/**
* Transforms an array of 3D points from this SRS to another SRS.
*/
virtual bool transformPoints(
const SpatialReference* to_srs,
double* x, double* y, double* z,
unsigned int numPoints,
void* context =0L,
bool ignore_errors =false) const;
/**
* Transforms an array of points from this SRS to another SRS.
*/
virtual bool transformPoints(
const SpatialReference* to_srs,
std::vector<osg::Vec3d>& points,
void* context =0L,
bool ignore_errors =false) const;
/**
* Transforms a point to geocentric/ECEF coordinates.
*/
bool transformToECEF(
const osg::Vec3d& input,
osg::Vec3d& output ) const;
/**
* Transforms an array of points to geocentric/ECEF coordinates. The points
* are transformed in place.
*/
bool transformToECEF(
std::vector<osg::Vec3d>& points,
bool ignore_errors =false) const;
/**
* Transforms a point from geocentric/ECEF coordinates into this SRS (with a
* height above ellipsoid).
*/
bool transformFromECEF(
const osg::Vec3d& input,
osg::Vec3d& output ) const;
/**
* Transforms an array of points from geocentric/ECEF coordinates into this SRS
* (with a height-above-ellipoid). The points are transformed in place.
*/
bool transformFromECEF(
std::vector<osg::Vec3d>& points,
bool ignoreErrors =false) const;
/**
* Transforms a spatial extent to another SRS.
*
* TODO: Update this method to work for:
* a) Geographic extents that cross the date line; and
* b) Polar extents.
*/
virtual bool transformExtent(
const SpatialReference* to_srs,
double& in_out_xmin, double& in_out_ymin,
double& in_out_xmax, double& in_out_ymax,
void* context =0L ) const;
virtual bool transformExtentPoints(
const SpatialReference* to_srs,
double in_xmin, double in_ymin,
double in_xmax, double in_ymax,
double* x, double* y,
unsigned int numx, unsigned int numy,
void* context = 0L, bool ignore_errors = false ) const;
/** True is this is a geographic SRS (i.e. unprojected lat/long) */
virtual bool isGeographic() const;
/** True if this is a projected SRS (i.e. local coordinate system) */
virtual bool isProjected() const;
/** Tests whether this SRS represents a Mercator projection. */
bool isMercator() const;
/** Tests whether this SRS represents a polar sterographic projection. */
bool isNorthPolar() const;
bool isSouthPolar() const;
/** Tests whether this SRS is user-defined; i.e. whether it is other than a
well-known SRS. (i.e. whether the SRS is unsupported by GDAL) */
virtual bool isUserDefined() const;
/** Tests whether coordinates in this SRS form a contiguous space. A non-contiguous
SRS is one in which adjacent coordinates may not necessarily represent
adjacent map locations. */
virtual bool isContiguous() const;
/** Tests whether this SRS is a Unified Cube projection (osgEarth-internal) */
virtual bool isCube() const;
/** Tests whether this SRS is a Local Tangent Plane projection (osgEarth-internal) */
virtual bool isLTP() const { return _is_ltp; }
/** Gets the readable name of this SRS. */
const std::string& getName() const;
/** Gets the underlying reference ellipsoid of this SRS */
const osg::EllipsoidModel* getEllipsoid() const;
/** Gets the WKT string */
const std::string& getWKT() const;
/** Gets the initialization type (PROJ4, WKT, etc.) */
const std::string& getInitType() const;
/** Gets the string that was used to initialize this SRS */
const std::string& getInitString() const;
/** Gets the datum identifier of this SRS (or empty string if not available) */
const std::string& getDatumName() const;
/** Tests this SRS for equivalence with another. */
virtual bool isEquivalentTo( const SpatialReference* rhs ) const;
/** Gets a reference to this SRS's underlying geographic SRS. */
const SpatialReference* getGeographicSRS() const;
/** Creates and returns a local trangent plane SRS at the given reference location.
The reference location is expressed in this object's SRS, but it tangent to
the globe at getGeographicSRS(). LTP units are in meters. */
SpatialReference* createTangentPlaneSRS( const osg::Vec3d& refPos ) const;
/** Creates a new CSN based on this spatial reference. */
osg::CoordinateSystemNode* createCoordinateSystemNode() const;
/** Populates the provided CSN with information from this SRS. */
bool populateCoordinateSystemNode( osg::CoordinateSystemNode* csn ) const;
/**
* Creates a new Locator object based on this spatial reference.
*
* @param xmin, ymin, xmax, ymax
* Extents of the tile for which to create a locator. These should
* be in degrees for a geographic/geocentric scene.
* @param plate_carre
* Set this to true for the special case in which you are using a
* geographic SRS with a PROJECTED map (like flat-earth lat/long).
*/
/* virtual GeoLocator* createLocator(
double xmin, double ymin, double xmax, double ymax,
bool plate_carre =false ) const;
*/
protected:
virtual ~SpatialReference();
protected:
SpatialReference( void* handle, const std::string& type, const std::string& init_str, const std::string& name );
SpatialReference( void* handle, bool ownsHandle =true );
void init();
bool _initialized;
void* _handle;
bool _owns_handle;
bool _is_geographic;
bool _is_mercator;
bool _is_north_polar, _is_south_polar;
bool _is_cube;
bool _is_contiguous;
bool _is_user_defined;
bool _is_ltp;
std::string _name;
std::string _wkt;
std::string _proj4;
std::string _init_type;
std::string _init_str;
std::string _init_str_lc;
std::string _datum;
osg::ref_ptr<osg::EllipsoidModel> _ellipsoid;
osg::ref_ptr<SpatialReference> _geo_srs;
typedef std::map<std::string,void*> TransformHandleCache;
TransformHandleCache _transformHandleCache;
// user can override these methods in a subclass to perform custom functionality; must
// call the superclass version.
virtual void _init();
virtual bool _isEquivalentTo( const SpatialReference* srs ) const;
virtual bool preTransform(double& x, double& y, double& z, void* context) const { return true; }
virtual bool postTransform(double& x, double& y, double& z, void* context) const { return true;}
typedef std::map< std::string, osg::ref_ptr<SpatialReference> > SpatialReferenceCache;
static SpatialReferenceCache& getSpatialReferenceCache();
private:
static SpatialReference* createFromWKT(
const std::string& wkt, const std::string& alias, const std::string& name ="" );
static SpatialReference* createFromPROJ4(
const std::string& proj4, const std::string& alias, const std::string& name ="" );
static SpatialReference* createCube();
SpatialReference* validate();
};
//}
#endif // OSGEARTH_SPATIAL_REFERENCE_H