This repository was archived by the owner on Sep 10, 2024. It is now read-only.
forked from NaeRong/DS440_Capstone
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·55 lines (39 loc) · 2.43 KB
/
setup.sh
File metadata and controls
executable file
·55 lines (39 loc) · 2.43 KB
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
52
53
54
55
#!/bin/sh
# script/setup:
# Set up application for the first time after cloning,
# or set it back to the initial first unused state.
###### DOWNLOAD FAA AIRPORTS
# https://ais-faa.opendata.arcgis.com/datasets/e747ab91a11045e8b3f8a3efd093d3b5_0
URL_AIRPORTS='https://opendata.arcgis.com/datasets/e747ab91a11045e8b3f8a3efd093d3b5_0.zip'
# Download file
wget $URL_AIRPORTS -O $LADI_DIR_TUTORIAL/data/FAA-Airports/faa_airports.zip
# unzip all files
unzip -j -o $LADI_DIR_TUTORIAL/data/FAA-Airports/faa_airports.zip -d $LADI_DIR_TUTORIAL/data/FAA-Airports/
###### DOWNLOAD NATURAL EARTH MAPS
# https://www.naturalearthdata.com/downloads/10m-cultural-vectors/10m-admin-1-states-provinces/
URL_NATURAL_EARTH='https://www.naturalearthdata.com/http//www.naturalearthdata.com/download/10m/cultural/ne_10m_admin_1_states_provinces.zip'
# Download file
wget $URL_NATURAL_EARTH -O $LADI_DIR_TUTORIAL/data/Natural-Earth/ne_10m_admin_1_states_provinces.zip
# unzip all files
unzip -j -o $LADI_DIR_TUTORIAL/data/Natural-Earth/ne_10m_admin_1_states_provinces.zip -d $LADI_DIR_TUTORIAL/data/Natural-Earth/
###### DOWNLOAD US STATES
# https://catalog.data.gov/dataset/tiger-line-shapefile-2017-nation-u-s-current-state-and-equivalent-national
URL_STATES='https://www2.census.gov/geo/tiger/TIGER2017/STATE/tl_2017_us_state.zip'
# Download file
wget $URL_STATES -O $LADI_DIR_TUTORIAL/data/Census-State/tl_2017_us_state.zip
# unzip all files
unzip -j -o $LADI_DIR_TUTORIAL/data/Census-State/tl_2017_us_state.zip -d $LADI_DIR_TUTORIAL/data/Census-State/
###### DOWNLOAD CENSUS CBSA CODES
# https://catalog.data.gov/dataset/tiger-line-shapefile-2019-nation-u-s-current-metropolitan-statistical-area-micropolitan-statist
URL_CBSA='https://www2.census.gov/geo/tiger/TIGER2019/CBSA/tl_2019_us_cbsa.zip'
# Download file
wget $URL_CBSA -O $LADI_DIR_TUTORIAL/data/Census-CBSA/tl_2019_us_cbsa.zip
# unzip all files
unzip -j -o $LADI_DIR_TUTORIAL/data/Census-CBSA/tl_2019_us_cbsa.zip -d $LADI_DIR_TUTORIAL/data/Census-CBSA/
###### DOWNLOAD AHS DATA
# http://www2.census.gov/programs-surveys/ahs/2017/AHS%202017%20National%20PUF%20v3.0%20Flat%20CSV.zip?#
URL_AHS_DATA='http://www2.census.gov/programs-surveys/ahs/2017/AHS%202017%20National%20PUF%20v3.0%20Flat%20CSV.zip'
# Download file
wget $URL_AHS_DATA -O $LADI_DIR_TUTORIAL/data/Census-AHS/2017_ahs_national_puf.zip
# unzip all files
unzip -j -o $LADI_DIR_TUTORIAL/data/Census-AHS/2017_ahs_national_puf.zip -d $LADI_DIR_TUTORIAL/data/Census-AHS/