I am looking for a Python library that can work with GPS coordinates. Say I have a list of coordinates:
>>> gps = [ ... (53.25012925, β6.24479338, 349.9, '2011-08-20T09:35:00Z'), ... (53.25028285, -6.24441800, 359.9, '2011-08-20T09:35:30Z'), ... (53.25049500, -6.24266032, 395.9, '2011-08-20T09:36:00Z'), ...
I would like to calculate the average speed, distance, get the highest point and other information. I know this is pretty easy to calculate, but I wonder if any existing code exists (I don't like reinventing the wheel).
Note. There is a similar question here in stackoverflow ( Which gps library would you recommend for python? ), But it's about GPSD. I do not work with any device, I just have GPS coordinates in a text file.
vasco source share