Home | Trees | Indices | Help |
|
---|
|
object --+ | bases.Named --+ | bases.Based --+ | 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 Inherited from |
Method Details |
New UTM coordinate.
Example: >>> import pygeodesy >>> u = pygeodesy.Utm(31, 'N', 448251, 5411932) |
Copy this UTM coordinate.
|
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: >>> u = Utm(31, 'N', 448251.795, 5411932.678) >>> from pygeodesy import ellipsoidalVincenty as eV >>> ll = u.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 (
|
datumGet the datum (Datum).
|
eastingGet the easting (
|
hemisphereGet the hemisphere (N|S).
|
northingGet the northing (
|
scaleGet the grid scale (
|
zoneGet the longitudinal zone (1..60).
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sat Oct 27 15:39:39 2018 | http://epydoc.sourceforge.net |