Quick-Start GuideΒΆ

Create two points and measure the distance:

>>> from geo.core import Point2D
>>> a = Point2D(0, 0)
>>> b = Point2D(3, 4)
>>> a.distance_to(b)
5.0

Further examples can be found in the :pydata:`examples` folder.