Home | Trees | Indices | Help |
|
---|
|
object --+ | bases.Base --+ | Utm
Universal Transverse Mercator (UTM) coordinate.
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
Properties | |
band Gets the latitudinal band (C..X or ''). |
|
convergence Gets the meridian convergence (degrees or None). |
|
datum Gets the datum (Datum). |
|
easting Gets the easting (meter). |
|
hemisphere Gets the hemisphere (N|S). |
|
northing Gets the northing (meter). |
|
scale Gets the grid scale (scalar or None). |
|
zone Gets the longitudinal zone (1..60). |
|
Inherited from |
Method Details |
New UTM coordinate.
Example: >>> import pygeodesy >>> g = pygeodesy.Utm(31, 'N', 448251, 5411932) |
Parses a string to a UTM coordinate. For more details, see function parseUTM in this module utm. |
Converts 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 |
Converts this UTM coordinate to an MGRS grid reference. See function toMgrs in module mgrs for more details.
|
Returns 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 |
Returns a string representation of this UTM coordinate. Note that UTM coordinates are rounded, not truncated (unlike MGRS grid references).
|
Property Details |
bandGets the latitudinal band (C..X or '').
|
convergenceGets the meridian convergence (degrees or None).
|
eastingGets the easting (meter).
|
hemisphereGets the hemisphere (N|S).
|
northingGets the northing (meter).
|
scaleGets the grid scale (scalar or None).
|
zoneGets the longitudinal zone (1..60).
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue May 30 11:06:30 2017 | http://epydoc.sourceforge.net |