Home | Trees | Indices | Help |
|
---|
|
object --+ | bases.Base --+ | Utm
Universal Transverse Mercator (UTM) coordinate.
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
Properties | |
band Get the latitudinal band (C..X or ''). |
|
convergence Get the meridian convergence (degrees or None). |
|
datum Get the datum (Datum). |
|
easting Get the easting (meter). |
|
hemisphere Get the hemisphere (N|S). |
|
northing Get the northing (meter). |
|
scale Get the grid scale (scalar or None). |
|
zone Get the longitudinal zone (1..60). |
|
Inherited from |
Method Details |
New UTM coordinate.
Example: >>> import pygeodesy >>> g = pygeodesy.Utm(31, 'N', 448251, 5411932) |
Parse a string to a UTM coordinate. For more details, see function parseUTM in this module utm. |
Convert this UTM coordinate to an (ellipsoidal) geodetic point.
Example: >>> g = Utm(31, 'N', 448251.795, 5411932.678) >>> from pygeodesy import ellipsoidalVincenty as eV >>> ll = g.toLatLon(eV.LatLon) # 48°51′29.52″N, 002°17′40.20″E |
Convert this UTM coordinate to an MGRS grid reference. See function toMgrs in module mgrs for more details.
|
Return a string representation of this UTM coordinate. To distinguish from MGRS grid zone designators, a space is left between the zone and the hemisphere. Note that UTM coordinates are rounded, not truncated (unlike MGRS grid references).
Example: >>> u = Utm(3, 'N', 448251, 5411932.0001) >>> u.toStr(4) # 03 N 448251.0 5411932.0001 >>> u.toStr(sep=', ') # 03 N, 448251, 5411932 |
Return a string representation of this UTM coordinate. Note that UTM coordinates are rounded, not truncated (unlike MGRS grid references).
|
Property Details |
bandGet the latitudinal band (C..X or '').
|
convergenceGet the meridian convergence (degrees or None).
|
eastingGet the easting (meter).
|
hemisphereGet the hemisphere (N|S).
|
northingGet the northing (meter).
|
scaleGet the grid scale (scalar or None).
|
zoneGet the longitudinal zone (1..60).
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sat Jun 24 11:31:28 2017 | http://epydoc.sourceforge.net |