Home | Trees | Indices | Help |
|
---|
|
object --+ | named._Named --+ | named._NamedBase --+ | Wm
Web Mercator (WM) coordinate.
Instance Methods | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
Properties | |
radius Get the earth radius ( meter ).
|
|
x Get the easting ( meter ).
|
|
y Get the northing ( meter ).
|
|
Inherited from Inherited from |
Method Details |
New Wm Web Mercator (WM) coordinate.
Example: >>> import pygeodesy >>> w = pygeodesy.Wm(448251, 5411932) |
Parse a string to a WM coordinate. For more details, see function parseWM in this module webmercator. |
Convert this WM coordinate to a geodetic lat- and longitude.
|
Convert this WM coordinate to a geodetic point.
Example: >>> w = Wm(448251.795, 5411932.678) >>> from pygeodesy import sphericalTrigonometry as sT >>> ll = w.toLatLon(sT.LatLon) # 43°39′11.58″N, 004°01′36.17″E |
Return a string representation of this WM coordinate.
Example: >>> w = Wm(448251, 5411932.0001) >>> w.toStr(4) # 448251.0 5411932.0001 >>> w.toStr(sep=', ') # 448251, 5411932 |
Return a string representation of this WM coordinate.
|
Property Details |
radiusGet the earth radius (
|
xGet the easting (
|
yGet the northing (
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Feb 7 13:45:18 2020 | http://epydoc.sourceforge.net |