I have calculated the distance between two points using geopanda's gdf.distance()
function. I have my distances, but I don't know what unit they are in? My GeoDataFrame has a crs of epsg:4326. I understand that my coordinate system is using decimal degrees (lat/long), and that the distance function calculates the euclidean distance, but what is this distance in?
my code:
move["dist_to_next"] = move.distance(move.shift(-1))
move.groupby(["collarid", "date"]).sum('dist_to_next')["dist_to_next"]
output:
collarid date
GSM2014-1613 2019-06-01 0.002557
2019-06-02 0.003515
2019-06-03 0.004013
2019-06-04 0.049162
2019-06-05 0.036822
...
GSM2014-1620 2020-11-15 12.478351
2020-11-16 11.246273
2020-11-17 13.668699
2020-11-18 11.488645
2020-11-19 2.285434
Name: dist_to_next, Length: 1981, dtype: float64