Cassini-Soldner projection. More...
#include <CassiniSoldner.hpp>
Public Member Functions | |
CassiniSoldner (const Geodesic &earth=Geodesic::WGS84()) | |
CassiniSoldner (real lat0, real lon0, const Geodesic &earth=Geodesic::WGS84()) | |
void | Forward (real lat, real lon, real &x, real &y) const |
void | Forward (real lat, real lon, real &x, real &y, real &azi, real &rk) const |
void | Reset (real lat0, real lon0) |
void | Reverse (real x, real y, real &lat, real &lon) const |
void | Reverse (real x, real y, real &lat, real &lon, real &azi, real &rk) const |
Inspector functions | |
bool | Init () const |
Math::real | LatitudeOrigin () const |
Math::real | LongitudeOrigin () const |
Math::real | MajorRadius () const |
Math::real | Flattening () const |
Private Types | |
typedef Math::real | real |
Private Attributes | |
real | _cbet0 |
Geodesic | _earth |
GeodesicLine | _meridian |
real | _sbet0 |
Static Private Attributes | |
static const unsigned | maxit_ = 10 |
Cassini-Soldner projection.
Cassini-Soldner projection centered at an arbitrary position, lat0, lon0, on the ellipsoid. This projection is a transverse cylindrical equidistant projection. The projection from (lat, lon) to easting and northing (x, y) is defined by geodesics as follows. Go north along a geodesic a distance y from the central point; then turn clockwise 90° and go a distance x along a geodesic. (Although the initial heading is north, this changes to south if the pole is crossed.) This procedure uniquely defines the reverse projection. The forward projection is constructed as follows. Find the point (lat1, lon1) on the meridian closest to (lat, lon). Here we consider the full meridian so that lon1 may be either lon0 or lon0 + 180°. x is the geodesic distance from (lat1, lon1) to (lat, lon), appropriately signed according to which side of the central meridian (lat, lon) lies. y is the shortest distance along the meridian from (lat0, lon0) to (lat1, lon1), again, appropriately signed according to the initial heading. [Note that, in the case of prolate ellipsoids, the shortest meridional path from (lat0, lon0) to (lat1, lon1) may not be the shortest path.] This procedure uniquely defines the forward projection except for a small class of points for which there may be two equally short routes for either leg of the path.
Because of the properties of geodesics, the (x, y) grid is orthogonal. The scale in the easting direction is unity. The scale, k, in the northing direction is unity on the central meridian and increases away from the central meridian. The projection routines return azi, the true bearing of the easting direction, and rk = 1/k, the reciprocal of the scale in the northing direction.
The conversions all take place using a Geodesic object (by default Geodesic::WGS84()). For more information on geodesics see geodesic. The determination of (lat1, lon1) in the forward projection is by solving the inverse geodesic problem for (lat, lon) and its twin obtained by reflection in the meridional plane. The scale is found by determining where two neighboring geodesics intersecting the central meridian at lat1 and lat1 + dlat1 intersect and taking the ratio of the reduced lengths for the two geodesics between that point and, respectively, (lat1, lon1) and (lat, lon).
Example of use:
GeodesicProj is a command-line utility providing access to the functionality of AzimuthalEquidistant, Gnomonic, and CassiniSoldner.
Definition at line 69 of file CassiniSoldner.hpp.
|
private |
Definition at line 71 of file CassiniSoldner.hpp.
|
explicit |
Constructor for CassiniSoldner.
[in] | earth | the Geodesic object to use for geodesic calculations. By default this uses the WGS84 ellipsoid. |
This constructor makes an "uninitialized" object. Call Reset to set the central latitude and longitude, prior to calling Forward and Reverse.
Definition at line 16 of file src/CassiniSoldner.cpp.
GeographicLib::CassiniSoldner::CassiniSoldner | ( | real | lat0, |
real | lon0, | ||
const Geodesic & | earth = Geodesic::WGS84() |
||
) |
Constructor for CassiniSoldner specifying a center point.
[in] | lat0 | latitude of center point of projection (degrees). |
[in] | lon0 | longitude of center point of projection (degrees). |
[in] | earth | the Geodesic object to use for geodesic calculations. By default this uses the WGS84 ellipsoid. |
lat0 should be in the range [−90°, 90°].
Definition at line 19 of file src/CassiniSoldner.cpp.
|
inline |
Definition at line 197 of file CassiniSoldner.hpp.
CassiniSoldner::Forward without returning the azimuth and scale.
Definition at line 152 of file CassiniSoldner.hpp.
void GeographicLib::CassiniSoldner::Forward | ( | real | lat, |
real | lon, | ||
real & | x, | ||
real & | y, | ||
real & | azi, | ||
real & | rk | ||
) | const |
Forward projection, from geographic to Cassini-Soldner.
[in] | lat | latitude of point (degrees). |
[in] | lon | longitude of point (degrees). |
[out] | x | easting of point (meters). |
[out] | y | northing of point (meters). |
[out] | azi | azimuth of easting direction at point (degrees). |
[out] | rk | reciprocal of azimuthal northing scale at point. |
lat should be in the range [−90°, 90°]. A call to Forward followed by a call to Reverse will return the original (lat, lon) (to within roundoff). The routine does nothing if the origin has not been set.
Definition at line 34 of file src/CassiniSoldner.cpp.
|
inline |
Definition at line 173 of file CassiniSoldner.hpp.
|
inline |
Definition at line 178 of file CassiniSoldner.hpp.
|
inline |
Definition at line 184 of file CassiniSoldner.hpp.
|
inline |
Definition at line 191 of file CassiniSoldner.hpp.
Set the central point of the projection
[in] | lat0 | latitude of center point of projection (degrees). |
[in] | lon0 | longitude of center point of projection (degrees). |
lat0 should be in the range [−90°, 90°].
Definition at line 23 of file src/CassiniSoldner.cpp.
CassiniSoldner::Reverse without returning the azimuth and scale.
Definition at line 161 of file CassiniSoldner.hpp.
void GeographicLib::CassiniSoldner::Reverse | ( | real | x, |
real | y, | ||
real & | lat, | ||
real & | lon, | ||
real & | azi, | ||
real & | rk | ||
) | const |
Reverse projection, from Cassini-Soldner to geographic.
[in] | x | easting of point (meters). |
[in] | y | northing of point (meters). |
[out] | lat | latitude of point (degrees). |
[out] | lon | longitude of point (degrees). |
[out] | azi | azimuth of easting direction at point (degrees). |
[out] | rk | reciprocal of azimuthal northing scale at point. |
A call to Reverse followed by a call to Forward will return the original (x, y) (to within roundoff), provided that x and y are sufficiently small not to "wrap around" the earth. The routine does nothing if the origin has not been set.
Definition at line 79 of file src/CassiniSoldner.cpp.
|
private |
Definition at line 74 of file CassiniSoldner.hpp.
|
private |
Definition at line 72 of file CassiniSoldner.hpp.
|
private |
Definition at line 73 of file CassiniSoldner.hpp.
|
private |
Definition at line 74 of file CassiniSoldner.hpp.
|
staticprivate |
Definition at line 75 of file CassiniSoldner.hpp.