18

I have two points as below. I need to get the distance between them in meters.

POINT (80.99456 7.86795)
POINT (80.97454 7.872174)

How can this be done via GeoPandas?

Dumindurr
  • 283
  • 1
  • 2
  • 8

1 Answers1

24

Your points are in a lon, lat coordinate system (EPSG:4326 or WGS 84). To calculate a distance in meters, you would need to either use the Great-circle distance or project them in a local coordinate system to approximate the distance with a good precision.

For Sri Lanka, you can use EPSG:5234 and in GeoPandas, you can use the distance function between two GeoDataFrames.

from shapely.geometry import Point
import geopandas as gpd
pnt1 = Point(80.99456, 7.86795)
pnt2 = Point(80.97454, 7.872174)
points_df = gpd.GeoDataFrame({'geometry': [pnt1, pnt2]}, crs='EPSG:4326')
points_df = points_df.to_crs('EPSG:5234')
points_df2 = points_df.shift() #We shift the dataframe by 1 to align pnt1 with pnt2
points_df.distance(points_df2)

The result should be 2261.92843 m

J-B
  • 493
  • 2
  • 7
  • 2
    by using the Kandawala / Sri Lanka Grid - EPSG:5234 CRS it is obvious the knowledge and extent you are going to answer the Question. thank you. – Uditha Herath Jul 12 '21 at 18:45
  • 1
    When I try this I am getting a tuple returned 0 NaN 1 41148.927095 what might I be doing wrong? – MrKingsley Jul 12 '22 at 17:20