Public Member Functions | Static Public Attributes

GeographicLib::TransverseMercator Class Reference

Transverse Mercator Projection. More...

#include <GeographicLib/TransverseMercator.hpp>

List of all members.

Public Member Functions

 TransverseMercator (real a, real r, real k0)
void Forward (real lon0, real lat, real lon, real &x, real &y, real &gamma, real &k) const throw ()
void Reverse (real lon0, real x, real y, real &lat, real &lon, real &gamma, real &k) const throw ()
void Forward (real lon0, real lat, real lon, real &x, real &y) const throw ()
void Reverse (real lon0, real x, real y, real &lat, real &lon) const throw ()
Inspector functions

Math::real MajorRadius () const throw ()
Math::real InverseFlattening () const throw ()
Math::real CentralScale () const throw ()

Static Public Attributes

static const TransverseMercator UTM

Detailed Description

Transverse Mercator Projection.

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 errors is 5 nm (ground distance) for all positions within 35 degrees of the central meridian. The error in the convergence is 2e-15" and the relative error in the scale is 6e-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 funtcion. 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 TransverseMercator.cpp for more information on the implementation.

See Transverse Mercator Projection for a discussion of this projection.

Definition at line 71 of file TransverseMercator.hpp.


Constructor & Destructor Documentation

GeographicLib::TransverseMercator::TransverseMercator ( real  a,
real  r,
real  k0 
)

Constructor for a ellipsoid with

Parameters:
[in] a equatorial radius (meters)
[in] r reciprocal flattening. Setting r = 0 implies r = inf or flattening = 0 (i.e., a sphere). Negative r indicates a prolate ellipsoid.
[in] k0 central scale factor.

An exception is thrown if either of the axes of the ellipsoid or k0 is not positive.

Definition at line 59 of file TransverseMercator.cpp.

References STATIC_ASSERT.


Member Function Documentation

void GeographicLib::TransverseMercator::Forward ( real  lon0,
real  lat,
real  lon,
real &  x,
real &  y,
real &  gamma,
real &  k 
) const throw ()

Forward projection, from geographic to transverse Mercator.

Parameters:
[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]; lon and lon0 should be in the range [-180, 360].

Definition at line 217 of file TransverseMercator.cpp.

References GeographicLib::Math::asinh(), and GeographicLib::Math::hypot().

Referenced by GeographicLib::UTMUPS::Forward(), Forward(), and GeographicLib::OSGB::Forward().

void GeographicLib::TransverseMercator::Reverse ( real  lon0,
real  x,
real  y,
real &  lat,
real &  lon,
real &  gamma,
real &  k 
) const throw ()

Reverse projection, from transverse Mercator to geographic.

Parameters:
[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. lon0 should be in the range [-180, 360]. The value of lon returned is in the range [-180, 180).

Definition at line 387 of file TransverseMercator.cpp.

References GeographicLib::Math::hypot().

Referenced by GeographicLib::UTMUPS::Reverse(), Reverse(), and GeographicLib::OSGB::Reverse().

void GeographicLib::TransverseMercator::Forward ( real  lon0,
real  lat,
real  lon,
real &  x,
real &  y 
) const throw () [inline]

TransverseMercator::Forward without returning the convergence and scale.

Definition at line 145 of file TransverseMercator.hpp.

References Forward().

void GeographicLib::TransverseMercator::Reverse ( real  lon0,
real  x,
real  y,
real &  lat,
real &  lon 
) const throw () [inline]

TransverseMercator::Reverse without returning the convergence and scale.

Definition at line 154 of file TransverseMercator.hpp.

References Reverse().

Math::real GeographicLib::TransverseMercator::MajorRadius (  )  const throw () [inline]
Returns:
a the equatorial radius of the ellipsoid (meters). This is the value used in the constructor.

Definition at line 167 of file TransverseMercator.hpp.

Math::real GeographicLib::TransverseMercator::InverseFlattening (  )  const throw () [inline]
Returns:
r the inverse flattening of the ellipsoid. This is the value used in the constructor. A value of 0 is returned for a sphere (infinite inverse flattening).

Definition at line 174 of file TransverseMercator.hpp.

Math::real GeographicLib::TransverseMercator::CentralScale (  )  const throw () [inline]
Returns:
k0 central scale for the projection. This is the value of k0 used in the constructor and is the scale on the central meridian.

Definition at line 180 of file TransverseMercator.hpp.


Member Data Documentation

A global instantiation of TransverseMercator with the WGS84 ellipsoid and the UTM scale factor. However, unlike UTM, no false easting or northing is added.

Definition at line 188 of file TransverseMercator.hpp.

Referenced by GeographicLib::UTMUPS::Forward(), main(), and GeographicLib::UTMUPS::Reverse().


The documentation for this class was generated from the following files: