.NET wrapper for GeographicLib::TransverseMercator. More...
#include <TransverseMercator.h>
Public Member Functions | |
void | Forward (double lon0, double lat, double lon, [System::Runtime::InteropServices::Out] double% x, [System::Runtime::InteropServices::Out] double% y) |
void | Forward (double lon0, double lat, double lon, [System::Runtime::InteropServices::Out] double% x, [System::Runtime::InteropServices::Out] double% y, [System::Runtime::InteropServices::Out] double% gamma, [System::Runtime::InteropServices::Out] double% k) |
void | Reverse (double lon0, double x, double y, [System::Runtime::InteropServices::Out] double% lat, [System::Runtime::InteropServices::Out] double% lon) |
void | Reverse (double lon0, double x, double y, [System::Runtime::InteropServices::Out] double% lat, [System::Runtime::InteropServices::Out] double% lon, [System::Runtime::InteropServices::Out] double% gamma, [System::Runtime::InteropServices::Out] double% k) |
TransverseMercator () | |
TransverseMercator (double a, double f, double k0) | |
~TransverseMercator () | |
Public Attributes | |
Inspector functions | |
property double | MajorRadius { double get() |
property double | Flattening { double get() |
property double | CentralScale { double get() |
Private Member Functions | |
!TransverseMercator (void) | |
Private Attributes | |
const GeographicLib::TransverseMercator * | m_pTransverseMercator |
.NET wrapper for GeographicLib::TransverseMercator.
This class allows .NET applications to access GeographicLib::TransverseMercator.
This uses Krüger's method which evaluates the projection and its inverse in terms of a series. See
Krüger's method has been extended from 4th to 6th order. The maximum error is 5 nm (5 nanometers), ground distance, for all positions within 35 degrees of the central meridian. The error in the convergence is 2 × 10−15" and the relative error in the scale is 6 − 10−12%%. See Sec. 4 of arXiv:1002.1417 for details. The speed penalty in going to 6th order is only about 1%. TransverseMercatorExact is an alternative implementation of the projection using exact formulas which yield accurate (to 8 nm) results over the entire ellipsoid.
The ellipsoid parameters and the central scale are set in the constructor. The central meridian (which is a trivial shift of the longitude) is specified as the lon0 argument of the TransverseMercator::Forward and TransverseMercator::Reverse functions. The latitude of origin is taken to be the equator. There is no provision in this class for specifying a false easting or false northing or a different latitude of origin. However these are can be simply included by the calling function. For example, the UTMUPS class applies the false easting and false northing for the UTM projections. A more complicated example is the British National Grid (EPSG:7405) which requires the use of a latitude of origin. This is implemented by the GeographicLib::OSGB class.
See GeographicLib::TransverseMercator.cpp for more information on the implementation.
See transversemercator for a discussion of this projection.
C# Example:
Managed C++ Example:
Visual Basic Example:
INTERFACE DIFFERENCES:
A default constructor is provided that assumes WGS84 parameters and a UTM scale factor.
The MajorRadius, Flattening, and CentralScale functions are implemented as properties.
Definition at line 77 of file TransverseMercator.h.
|
private |
Definition at line 21 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
TransverseMercator::TransverseMercator | ( | double | a, |
double | f, | ||
double | k0 | ||
) |
Constructor for a ellipsoid with
[in] | a | equatorial radius (meters). |
[in] | f | flattening of ellipsoid. Setting f = 0 gives a sphere. Negative f gives a prolate ellipsoid. |
[in] | k0 | central scale factor. |
GeographicErr | if a, (1 − f ) a, or k0 is not positive. |
Definition at line 31 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
TransverseMercator::TransverseMercator | ( | ) |
The default constructor assumes a WGS84 ellipsoid and a UTM scale factor.
Definition at line 48 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
|
inline |
The destructor calls the finalizer.
Definition at line 106 of file TransverseMercator.h.
void TransverseMercator::Forward | ( | double | lon0, |
double | lat, | ||
double | lon, | ||
[System::Runtime::InteropServices::Out] double% | x, | ||
[System::Runtime::InteropServices::Out] double% | y | ||
) |
TransverseMercator::Forward without returning the convergence and scale.
Definition at line 92 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
void TransverseMercator::Forward | ( | double | lon0, |
double | lat, | ||
double | lon, | ||
[System::Runtime::InteropServices::Out] double% | x, | ||
[System::Runtime::InteropServices::Out] double% | y, | ||
[System::Runtime::InteropServices::Out] double% | gamma, | ||
[System::Runtime::InteropServices::Out] double% | k | ||
) |
Forward projection, from geographic to transverse Mercator.
[in] | lon0 | central meridian of the projection (degrees). |
[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] | gamma | meridian convergence at point (degrees). |
[out] | k | scale of projection at point. |
No false easting or northing is added. lat should be in the range [−90°, 90°].
Definition at line 62 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
void TransverseMercator::Reverse | ( | double | lon0, |
double | x, | ||
double | y, | ||
[System::Runtime::InteropServices::Out] double% | lat, | ||
[System::Runtime::InteropServices::Out] double% | lon | ||
) |
TransverseMercator::Reverse without returning the convergence and scale.
Definition at line 103 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
void TransverseMercator::Reverse | ( | double | lon0, |
double | x, | ||
double | y, | ||
[System::Runtime::InteropServices::Out] double% | lat, | ||
[System::Runtime::InteropServices::Out] double% | lon, | ||
[System::Runtime::InteropServices::Out] double% | gamma, | ||
[System::Runtime::InteropServices::Out] double% | k | ||
) |
Reverse projection, from transverse Mercator to geographic.
[in] | lon0 | central meridian of the projection (degrees). |
[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] | gamma | meridian convergence at point (degrees). |
[out] | k | scale of projection at point. |
No false easting or northing is added. The value of lon returned is in the range [−180°, 180°).
Definition at line 77 of file dotnet/NETGeographicLib/TransverseMercator.cpp.
property double NETGeographicLib::TransverseMercator::CentralScale { double get() |
Definition at line 182 of file TransverseMercator.h.
property double NETGeographicLib::TransverseMercator::Flattening { double get() |
Definition at line 176 of file TransverseMercator.h.
|
private |
Definition at line 81 of file TransverseMercator.h.
property double NETGeographicLib::TransverseMercator::MajorRadius { double get() |
Definition at line 170 of file TransverseMercator.h.