Standard WGS84 Lon/Lat Projection extension of ProjBase - EPSG:4326. More...
#include <Projections.h>
Public Member Functions | |
void | print () const |
Print function for debugging. | |
int | forward (const cartesian_t &, cartesian_t &) const |
Function for transforming from LLH. More... | |
int | inverse (const cartesian_t &, cartesian_t &) const |
Function for transforming to LLH. More... | |
Public Member Functions inherited from isce3::core::ProjectionBase | |
ProjectionBase (int code) | |
Value constructor with EPSG code as input. More... | |
int | code () const |
Return EPSG code. | |
const Ellipsoid & | ellipsoid () const |
Return underlying ellipsoid. | |
Vec3 | inverse (const Vec3 &native) const |
virtual | ~ProjectionBase () |
Virtual destructor. | |
Standard WGS84 Lon/Lat Projection extension of ProjBase - EPSG:4326.
|
inlinevirtual |
Function for transforming from LLH.
This is similar to fwd or fwd3d in PROJ.4
[in] | llh | Lon/Lat/Height - Lon and Lat are in radians |
[out] | xyz | Coordinates in specified projection system |
Implements isce3::core::ProjectionBase.
|
inlinevirtual |
Function for transforming to LLH.
This is similar to inv or inv3d in PROJ.4
[in] | xyz | Coordinates in specified projection system |
[out] | llh | Lat/Lon/Height - Lon and Lat are in radians |
Implements isce3::core::ProjectionBase.