What’s new in 0.0.4 (May 31, 2021)
Enhancements
Cumulative distance from GPS coordinates
Added s_from_xy() to calculate distance from latitude-longitude.
In [1]: df = pd.DataFrame({'lat': [40.0, 40.1, 40.2], 'lon': [-105, -105, -105]})
In [2]: df.xyz.s_from_xy()
Out[2]:
0 0.000000
1 11119.492664
2 22238.985329
dtype: float64
Documentation changes
Added the Release notes section, which you are currently looking at!
Added the ipython directive to sphinx to allow examples.