Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
CanyonFoot committed Aug 16, 2023
1 parent add60f1 commit a4455fa
Show file tree
Hide file tree
Showing 27 changed files with 3,872 additions and 5,675 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,4 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.DS_Store
data/
.DS_Store
29 changes: 29 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.PHONY: all script1 script2 script3 script4 script5 script6 script7 script8 script9 script10

all: script10

preprocess_RMP:
@echo "Running preprocess_RMP.py"
python3 -m src.data.preprocess_RMP

clean_RMP:
@echo "Running clean_RMP.py"
python3 -m src.data.clean_RMP

download_census:
@echo "Running download_census.py"
python3 -m src.data.download_census

interpolate_census:
@echo "Running interpolate_census.py"
python3 -m src.analysis.interpolate_census

national_map:
@echo "Running create_national_map_data.py"
python3 -m src.analysis.national_map

dot_plot_data:
@echo "Running create_dot_plot_data.py"
python3 -m src.analysis.city_dot_density

all: preprocess_RMP clean_RMP download_census interpolate_census national_map dot_plot_data
4 changes: 4 additions & 0 deletions data/cache_interpolated/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
4 changes: 4 additions & 0 deletions data/processed/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
4 changes: 4 additions & 0 deletions data/raw/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
4 changes: 4 additions & 0 deletions data/viz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore
Loading

0 comments on commit a4455fa

Please sign in to comment.