Skip to content
Snippets Groups Projects
Commit 0119c679 authored by Chandrasekhar Ramakrishnan's avatar Chandrasekhar Ramakrishnan
Browse files

feat: process notebook to download distancing data

parent 88545a4d
No related branches found
No related tags found
1 merge request!160distancing
%% Cell type:code id: tags:
``` python
import requests
import os
from io import BytesIO
import pandas as pd
```
%% Cell type:code id: tags:parameters
``` python
out_folder = "../data/distancing-metrics/"
PAPERMILL_OUTPUT_PATH = None
```
%% Cell type:markdown id: tags:
# Download Apple Mobility
Download the Apple data. The URL for this changes every day and needs to be updated. You can get the
current URL from https://www.apple.com/covid19/mobility by looking at the link of the *All Data CSV* button.
%% Cell type:code id: tags:
``` python
url = 'https://covid19-static.cdn-apple.com/covid19-mobility-data/2007HotfixDev55/v2/en-us/applemobilitytrends-2020-05-10.csv'
r = requests.get(url, allow_redirects=True)
apple_csv = r.content
```
%% Cell type:code id: tags:
``` python
# save the result
if PAPERMILL_OUTPUT_PATH:
out_path = os.path.join(out_folder, 'mobility/apple/applemobilitytrends.csv')
with open(out_path, 'wb') as f:
f.write(apple_csv)
```
%% Cell type:code id: tags:
``` python
apple_df = pd.read_csv(BytesIO(apple_csv))
print(len(apple_df), "rows of data")
apple_df.head(2)
```
%% Cell type:markdown id: tags:
# Download Google Mobility
Download the Google data.
%% Cell type:code id: tags:
``` python
url = 'https://www.gstatic.com/covid19/mobility/Global_Mobility_Report.csv'
r = requests.get(url, allow_redirects=True)
google_csv = r.content
```
%% Cell type:code id: tags:
``` python
# save the result
if PAPERMILL_OUTPUT_PATH:
out_path = os.path.join(out_folder, 'mobility/google/Global_Mobility_Report.csv')
with open(out_path, 'wb') as f:
f.write(google_csv)
```
%% Cell type:code id: tags:
``` python
google_df = pd.read_csv(BytesIO(google_csv))
print(len(google_df), "rows of data")
google_df.head(2)
```
%% Cell type:markdown id: tags:
# Download BU US State Measures
Download the BU US State Measures spreadsheet.
%% Cell type:code id: tags:
``` python
url = 'https://docs.google.com/spreadsheets/d/1zu9qEWI8PsOI_i8nI_S29HDGHlIp2lfVMsGxpQ5tvAQ/gviz/tq?tqx=out:csv'
r = requests.get(url, allow_redirects=True)
bu_csv = r.content
```
%% Cell type:code id: tags:
``` python
# save the result
if PAPERMILL_OUTPUT_PATH:
out_path = os.path.join(out_folder, 'measures-us/bu-edu.csv')
with open(out_path, 'wb') as f:
f.write(bu_csv)
```
%% Cell type:code id: tags:
``` python
bu_df = pd.read_csv(BytesIO(bu_csv))
print(len(bu_df), "rows of data")
bu_df.head(2)
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment