![]() |
TerraLib 4.1
|
Provides methods that are required to handle the Polar Stereographic map projection. More...
#include <TeProjection.h>
Public Member Functions | |
| TePolarStereographic (const TeDatum &datum, double lon0, double offx=0., double offy=0., const string &units="Meters", const TeHemisphere hem=TeSOUTH_HEM) | |
| Constructor. | |
| ~TePolarStereographic () | |
| Destructor. | |
| virtual TeCoord2D | LL2PC (const TeCoord2D &p) |
| Pure virtual method that transforms geodetic into projection coordinates. | |
| virtual void | LL2PC (ostream &) const |
| virtual TeCoord2D | PC2LL (const TeCoord2D &p) |
| Pure virtual method that transforms projection into geodetic coordinates. | |
| virtual void | LL2PC (double xi, double yi, double &xo, double &yo) const |
Provides methods that are required to handle the Polar Stereographic map projection.
| TePolarStereographic::TePolarStereographic | ( | const TeDatum & | datum, |
| double | lon0, | ||
| double | offx = 0., |
||
| double | offy = 0., |
||
| const string & | units = "Meters", |
||
| const TeHemisphere | hem = TeSOUTH_HEM |
||
| ) |
Constructor.
Initializes projection parameters
| datum | spheroid |
| lon0 | longitude of origin (in radians) |
| offx | X (projection coordinate) offset (m) |
| offy | Y (projection coordinate) offset (m) |
| units | projection unit |
| hem | hemisphere |
| TePolarStereographic::~TePolarStereographic | ( | ) | [inline] |
Destructor.
Pure virtual method that transforms geodetic into projection coordinates.
This method is implemented for each available projection class and represents the so-called direct formulas, which compute projection coordinates from geodetic coordinates.
| p | Geodetic coordinates (radian). |
Implements TeProjection.
| void TePolarStereographic::LL2PC | ( | double | xi, |
| double | yi, | ||
| double & | xo, | ||
| double & | yo | ||
| ) | const [virtual] |
Reimplemented from TeProjection.
| void TePolarStereographic::LL2PC | ( | ostream & | java | ) | const [virtual] |
Reimplemented from TeProjection.
Pure virtual method that transforms projection into geodetic coordinates.
This method is implemented for each available projection class and represents the so-called inverse formulas, which compute geodetic coordinates from projection coordinates.
| p | Projection coordinates (m). |
Implements TeProjection.