Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paddymul/citibike_nyctaxi
https://github.com/paddymul/citibike_nyctaxi
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/paddymul/citibike_nyctaxi
- Owner: paddymul
- Created: 2014-06-26T03:42:37.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-06-28T18:49:02.000Z (over 10 years ago)
- Last Synced: 2023-04-18T07:34:00.386Z (over 1 year ago)
- Size: 61.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a very early take on putting the citbike nyc trip data together with the taxi trip data that has been released.
I'm looking to compare equivalent taxi trips to citibike trips.
This requires http://www.postgresql.org/ with the postgis extensions.
I downloaded data from http://www.andresmh.com/nyctaxitrips/ and http://www.citibikenyc.com/system-data
I run the scripts like this.
```
cat initial_creation.sql | psql -U postgres cb_taxi
cat create_tables.sql | psql -U postgres cb_taxi
cat create_citibike_table.sql | psql -U postgres cb_taxi
cat aggregate_queries.sql | psql -U postgres cb_taxi```
This is very early alpha and not cleaned up. suggestions welecome.