Skip to Content

traitement

>>> from geoscript import geom
>>> point = geom.readWKT('POINT(45 20)')
>>> point
POINT (45 20)
# ou
>>> point = geom.Point(4.607817,50.664930)
>>> point
POINT (4.607817 50.66493)
>>> # ou
>>> wkt = str(point)
>>> wkt
'POINT (4.607817 50.66493)'