Let’s say that some documents have GeoJSON / LineString fields that represent someone’s displacement. The coordinates that make up the LineString were brought from the google map api.
{
type: "LineString",
coordinates: [[-29.9673156, -51.1497259], [-29.969095, -51.114017]]
}
Question:
Is it possible to know the length of this LineString in kilometers?
PS. I’m using python / pymongo