|
|
|
@ -3,7 +3,14 @@
|
|
|
|
|
#################################################################################
|
|
|
|
|
# PROJECT RULES #
|
|
|
|
|
#################################################################################
|
|
|
|
|
.PHONY: mat_to_csv
|
|
|
|
|
.PHONY: push-data mat_to_csv sites-csv-to-shp
|
|
|
|
|
|
|
|
|
|
push-data: ##@data Copies data to WRL Coastal J Drive
|
|
|
|
|
rclone copy ./data/ "J:/Coastal/Temp/CKL/nsw_2016_storm_impact/data" --progress
|
|
|
|
|
|
|
|
|
|
pull-data: ##@data Copies data to WRL Coastal J Drive
|
|
|
|
|
# We probably don't want to pull the raw LIDAR .las files, so lets exclude them
|
|
|
|
|
rclone copy "J:/Coastal/Temp/CKL/nsw_2016_storm_impact/data" ./data/ --exclude "*.las" --progress
|
|
|
|
|
|
|
|
|
|
mat-to-csv: ##@data Converts raw .mat files to .csv for python
|
|
|
|
|
cd ./src/data/ && python mat_to_csv.py
|
|
|
|
|