-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathload_nyc_urban
executable file
·51 lines (46 loc) · 1.5 KB
/
load_nyc_urban
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Loading Gas Prices
# https://dx.doi.org/10.6084/m9.figshare.3187531.v1
wget https://ndownloader.figshare.com/articles/3187531/versions/1 -O gas-prices-files
unzip gas-prices-files
rm gas-prices-files
hdfs dfs -put gas-prices* data/
rm gas-prices*
# Loading Vehicle Collisions
# https://dx.doi.org/10.6084/m9.figshare.3187535.v3
wget https://ndownloader.figshare.com/articles/3187535/versions/3 -O crash-files
unzip crash-files
rm crash-files
hdfs dfs -put crash* data/
rm crash*
# Loading 311
# https://dx.doi.org/10.6084/m9.figshare.3187539.v2
wget https://ndownloader.figshare.com/articles/3187539/versions/2 -O 311-files
unzip 311-files
rm 311-files
hdfs dfs -put 311* data/
rm 311*
# Loading Citi Bike
# https://dx.doi.org/10.6084/m9.figshare.3175573.v2
wget https://ndownloader.figshare.com/articles/3175573/versions/2 -O citibike-files
unzip citibike-files
rm citibike-files
hdfs dfs -put citibike* data/
rm citibike*
# Loading Weather Data
# https://dx.doi.org/10.6084/m9.figshare.3187549.v1
wget https://ndownloader.figshare.com/articles/3187549/versions/1 -O weather-files
unzip weather-files
rm weather-files
hdfs dfs -put weather* data/
rm weather*
# Loading Traffic Speed
# https://dx.doi.org/10.6084/m9.figshare.3175570.v1
wget https://ndownloader.figshare.com/articles/3175570/versions/1 -O taxispeed-files
unzip taxispeed-files
rm taxispeed-files
tar -zxvf taxispeed.tar.gz
rm taxispeed.tar.gz
mv san_share/share/fchirigati/taxispeed.csv taxispeed
rm -r san_share/
hdfs dfs -put taxispeed* data/
rm taxispeed*