├── .gitignore ├── LICENSE ├── Part1 ├── Manhattan.json.gz ├── Manhattan.json.gz.png ├── NYC.json.gz ├── NYC.json.gz.png ├── auth_foursquare.py ├── auth_uri_foursquare.py ├── authentication.py ├── basic_auth.py ├── beautiful.py ├── checkins_foursquare.py ├── filter_shapefile.py ├── followers_twitter.py ├── interactions_twitter.py ├── load_shapefile.py ├── location_twitter.py ├── nybb_15c │ ├── nybb.dbf │ ├── nybb.prj │ ├── nybb.shp │ ├── nybb.shp.xml │ ├── nybb.shx │ ├── nybb_wgs84.dbf │ ├── nybb_wgs84.prj │ ├── nybb_wgs84.qpj │ ├── nybb_wgs84.shp │ └── nybb_wgs84.shx ├── plot_tweets.py ├── search_twitter.py ├── spoof.py ├── stream_twitter.py ├── timeline_twitter.py ├── tips_foursquare.py ├── url_parse.py └── venues_foursquare.py ├── PlaceNetworks_Live ├── network_analysis.py ├── newyork_net.txt └── venue_data_4sq_newyork_anon.csv ├── PlotTaxiJourneys_Live ├── PlotTaxiPos.py ├── taxi_trips.csv └── taxis.png ├── README.md └── SurgePrediction_Live ├── MultiLayerSurgePrediction.py ├── UberQuest.py ├── averageSurgeInCell.csv ├── listings_sample.csv ├── taxi_trips.csv └── venue_data_4sq_newyork_anon.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/LICENSE -------------------------------------------------------------------------------- /Part1/Manhattan.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/Manhattan.json.gz -------------------------------------------------------------------------------- /Part1/Manhattan.json.gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/Manhattan.json.gz.png -------------------------------------------------------------------------------- /Part1/NYC.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/NYC.json.gz -------------------------------------------------------------------------------- /Part1/NYC.json.gz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/NYC.json.gz.png -------------------------------------------------------------------------------- /Part1/auth_foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/auth_foursquare.py -------------------------------------------------------------------------------- /Part1/auth_uri_foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/auth_uri_foursquare.py -------------------------------------------------------------------------------- /Part1/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/authentication.py -------------------------------------------------------------------------------- /Part1/basic_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/basic_auth.py -------------------------------------------------------------------------------- /Part1/beautiful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/beautiful.py -------------------------------------------------------------------------------- /Part1/checkins_foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/checkins_foursquare.py -------------------------------------------------------------------------------- /Part1/filter_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/filter_shapefile.py -------------------------------------------------------------------------------- /Part1/followers_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/followers_twitter.py -------------------------------------------------------------------------------- /Part1/interactions_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/interactions_twitter.py -------------------------------------------------------------------------------- /Part1/load_shapefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/load_shapefile.py -------------------------------------------------------------------------------- /Part1/location_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/location_twitter.py -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb.dbf -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb.prj -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb.shp -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb.shp.xml -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb.shx -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb_wgs84.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb_wgs84.dbf -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb_wgs84.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb_wgs84.prj -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb_wgs84.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb_wgs84.qpj -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb_wgs84.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb_wgs84.shp -------------------------------------------------------------------------------- /Part1/nybb_15c/nybb_wgs84.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/nybb_15c/nybb_wgs84.shx -------------------------------------------------------------------------------- /Part1/plot_tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/plot_tweets.py -------------------------------------------------------------------------------- /Part1/search_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/search_twitter.py -------------------------------------------------------------------------------- /Part1/spoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/spoof.py -------------------------------------------------------------------------------- /Part1/stream_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/stream_twitter.py -------------------------------------------------------------------------------- /Part1/timeline_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/timeline_twitter.py -------------------------------------------------------------------------------- /Part1/tips_foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/tips_foursquare.py -------------------------------------------------------------------------------- /Part1/url_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/url_parse.py -------------------------------------------------------------------------------- /Part1/venues_foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/Part1/venues_foursquare.py -------------------------------------------------------------------------------- /PlaceNetworks_Live/network_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/PlaceNetworks_Live/network_analysis.py -------------------------------------------------------------------------------- /PlaceNetworks_Live/newyork_net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/PlaceNetworks_Live/newyork_net.txt -------------------------------------------------------------------------------- /PlaceNetworks_Live/venue_data_4sq_newyork_anon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/PlaceNetworks_Live/venue_data_4sq_newyork_anon.csv -------------------------------------------------------------------------------- /PlotTaxiJourneys_Live/PlotTaxiPos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/PlotTaxiJourneys_Live/PlotTaxiPos.py -------------------------------------------------------------------------------- /PlotTaxiJourneys_Live/taxi_trips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/PlotTaxiJourneys_Live/taxi_trips.csv -------------------------------------------------------------------------------- /PlotTaxiJourneys_Live/taxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/PlotTaxiJourneys_Live/taxis.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/README.md -------------------------------------------------------------------------------- /SurgePrediction_Live/MultiLayerSurgePrediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/SurgePrediction_Live/MultiLayerSurgePrediction.py -------------------------------------------------------------------------------- /SurgePrediction_Live/UberQuest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/SurgePrediction_Live/UberQuest.py -------------------------------------------------------------------------------- /SurgePrediction_Live/averageSurgeInCell.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/SurgePrediction_Live/averageSurgeInCell.csv -------------------------------------------------------------------------------- /SurgePrediction_Live/listings_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/SurgePrediction_Live/listings_sample.csv -------------------------------------------------------------------------------- /SurgePrediction_Live/taxi_trips.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/SurgePrediction_Live/taxi_trips.csv -------------------------------------------------------------------------------- /SurgePrediction_Live/venue_data_4sq_newyork_anon.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmtgoncalves/Mining-Georeferenced-Data/HEAD/SurgePrediction_Live/venue_data_4sq_newyork_anon.csv --------------------------------------------------------------------------------