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 ( str , 'C'..'X' or '').
|
|
convergence Get the meridian convergence ( degrees ) or
None .
|
|
datum Get the datum (Datum). |
|
easting Get the easting ( meter ).
|
|
falsed Get the easting and northing falsing ( bool ).
|
|
hemisphere Get the hemisphere ( str , 'N'|'S').
|
|
northing Get the northing ( meter ).
|
|
scale Get the grid scale ( scalar ) or None .
|
|
zone Get the (longitudinal) zone ( int , 1..60).
|
|
Inherited from Inherited from |
Method Details |
New UTM coordinate.
Example: >>> import pygeodesy >>> u = pygeodesy.Utm(31, 'N', 448251, 5411932) |
repr(x)
|
str(x)
|
Copy this UTM coordinate.
|
Parse a string to a UTM coordinate.
|
Determine the EPSG (European Petroleum Survey Group) code. |
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).
|
Convert this UTM coordinate to a UPS coordinate.
|
Convert this UTM coordinate to a different one.
|
Property Details |
bandGet the (latitudinal) band (
|
convergenceGet the meridian convergence (
|
datumGet the datum (Datum).
|
eastingGet the easting (
|
falsedGet the easting and northing falsing (
|
hemisphereGet the hemisphere (
|
northingGet the northing (
|
scaleGet the grid scale (
|
zoneGet the (longitudinal) zone (
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Jun 17 09:20:54 2019 | http://epydoc.sourceforge.net |