Universal Transverse Mercator (UTM) coordinate.
|
__init__(self,
zone,
hemisphere,
easting,
northing,
band='
' ,
datum=Datum(name='WGS84', ellipsoid=Ellipsoids.WGS84, transform=Tran... ,
convergence=None,
scale=None,
name='
' )
New UTM coordinate. |
|
|
|
copy(self)
Copy this UTM coordinate. |
|
|
|
parseUTM(self,
strUTM)
Parse a string to a UTM coordinate. |
|
|
|
toLatLon(self,
LatLon=None)
Convert this UTM coordinate to an (ellipsoidal) geodetic point. |
|
|
|
toMgrs(self)
Convert this UTM coordinate to an MGRS grid reference. |
|
|
|
toStr(self,
prec=0,
sep=' ' ,
B=False,
cs=False)
Return a string representation of this UTM coordinate. |
|
|
|
toStr2(self,
prec=0,
fmt=' [%s] ' ,
sep=' , ' ,
B=False,
cs=False)
Return a string representation of this UTM coordinate. |
|
|
Inherited from bases.Based :
__repr__ ,
__str__ ,
classof ,
others
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|
|
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 bases.Named :
classname ,
classnaming ,
name
Inherited from object :
__class__
|