movingpandas icon indicating copy to clipboard operation
movingpandas copied to clipboard

Movement trajectory classes and functions built on top of GeoPandas

Results 66 movingpandas issues
Sort by recently updated
recently updated
newest added

As reported in #235: ![image](https://user-images.githubusercontent.com/590385/182443876-4b173eac-a51c-42cf-bad7-0e7feac20d7d.png) ```python # make toy trajectory df = pd.DataFrame([ {'geometry':Point(0,2), 't':datetime(2018,1,1,12,0,0)}, {'geometry':Point(6,2), 't':datetime(2018,1,1,12,6,0)}, {'geometry':Point(6,6), 't':datetime(2018,1,1,12,10,0)}, {'geometry':Point(9,9), 't':datetime(2018,1,1,12,15,0)}, ]).set_index('t') gdf = GeoDataFrame(df, crs=31256) toy_traj = mpd.Trajectory(gdf, 1)...

bug

Geopy provides a Distance class that makes it easy to switch between distance units: m, km, miles, feet, nautical: https://github.com/geopy/geopy/blob/40717e64e9a79ab52ecbf39530f7c5d663c5d664/geopy/distance.py#L190 MovingPandas should have similar additional capabilities for speed: m/s, ft/s,...

enhancement

Useful distance measures include but are not limited to: - [x] (minimum) distance https://shapely.readthedocs.io/en/stable/manual.html#object.distance - [x] Hausdorff distance https://shapely.readthedocs.io/en/stable/manual.html#object.hausdorff_distance - [ ] Fréchet distance For more details, see Zheng &...

enhancement

Hello, Thank you for the great package! I'm wondering if it's possible to introduce new functionality to resample a trajectory in time by considering the velocity between two consecutive sampling...

enhancement

#### Is your feature request related to a problem? I would like to sample my trajectory at regular intervals e.g. every 1 hour. #### Describe the solution you'd like A...

new feature

test against latest geopandas etc.

idea

https://github.com/github/renaming#renaming-existing-branches

enhancement

To make installation easier an thus make MovingPandas more suitable for integration, e.g. in a QGIS plugin.

enhancement

The idea would be to stream GeoDataFrames to track object movement, similar to the examples in https://hvplot.holoviz.org/user_guide/Streaming.html Feature requests in the corresponding libraries have been filed at: * https://github.com/python-streamz/streamz/issues/325 *...

tasks

Turn TrajectoryCollection into OD flows, as shown on the right here: ![movingpandas_ais](https://user-images.githubusercontent.com/590385/73123664-5ad67280-3f92-11ea-8b42-02a0135f0f5c.PNG) Could be helpful to use clustering approach implemented in https://github.com/anitagraser/movingpandas/blob/master/movingpandas/point_clusterer.py

new feature