Transbigdata Versions Save

A Python package develop for transportation spatio-temporal big data processing, analysis and visualization.

0.4.11

1 year ago

Use ConfigParser to store Mapbox settings, mapboxtoken and imgsavepath are now store at config.ini in transbigdata source code folder.

0.4.10

1 year ago

Update the mobile phone data processing function, See example for detail usage. Add functions:

  • transbigdata.mobile_stay_move: Input trajectory data and gridding parameters, identify stay and move.
  • transbigdata.mobile_stay_dutation: Input the stay point data to identify the duration during night and day time.
  • transbigdata.mobile_identify_home: Identify home location from mobile phone stay data. The rule is to identify the locations with longest duration in night time.
  • transbigdata.mobile_identify_work: Identify work location from mobile phone stay data. The rule is to identify the locations with longest duration in day time on weekdays(Average duration should over minhour).
  • transbigdata.mobile_plot_activity: Plot the activity plot of individual.

0.4.9

1 year ago

Update the metro model, add functions:

  • transbigdata.metro_network: create metro network
  • transbigdata.get_shortest_path: Obtain the shortest path with given OD
  • transbigdata.get_k_shortest_paths: Obtain the k shortest path with given OD
  • transbigdata.get_path_traveltime: Obtain the travel time of the path

See example for detail usage: https://transbigdata.readthedocs.io/en/latest/gallery/Example%205-Modeling%20for%20subway%20network%20topology.html

0.4.8

2 years ago

update plot_map, now the basemap support input self-define mapbox style.

0.4.7

2 years ago

The tbd.plot_map function is added OpenStreetMap as the style 0, which do not need access token any more. imgsavepath and access_token are not neccessarily required now.

0.4.6

2 years ago

update grid_params_optimize method, this algorithm now is changed into PSO to speed up the optimizing process.

0.4.5

2 years ago

fix bug in geohash_decode

v0.4.4

2 years ago

fix bug in getadmin

v0.4.1

2 years ago

Add the Triangle and hexagon gridding methods, the methods are vectorized and fast:

  • Triangle grids: GPS_to_grids_tri and gridid_to_polygon_tri
  • Hexagon grids: GPS_to_grids_hexa and gridid_to_polygon_hexa

See Example for details.

v0.3.12

2 years ago

v0.3.12:

  • Modify code format to fit the standard of flake8.
  • Fix bug in getbusdata, now it work perfectly.