From d06a5ab57698e0595596ec8c08619a492ec8143f Mon Sep 17 00:00:00 2001 From: Chris Leaman Date: Mon, 25 Mar 2019 15:48:29 +1100 Subject: [PATCH] Removes TWL forecast using foreshore slope from Makefile Predicting TWL using time-varying foreshore slope is pretty slow, so let's remove it from our data analysis pipeline. The code is still there if we want to call it, but for the time being, let's remove this model when we're looking at comparisons. --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index b10234b..bf84352 100644 --- a/Makefile +++ b/Makefile @@ -53,9 +53,6 @@ pull-data: ##@data Copies data from data backup directory to ./data/ # Command for activating our virtual environment and calling the CLI entry point PYTHON_CLI = activate ./.venv && python ./src/cli.py -impacts: ./data/interim/impacts_forecasted_foreshore_slope_sto06.csv ./data/interim/impacts_forecasted_premean_slope_sto06.csv ./data/interim/impacts_observed.csv ##@products makes obsered and forecasted impacts - - ### Parses raw matfiles ./data/raw/processed_shorelines/orientations.mat: ./data/raw/processed_shorelines/profiles.mat @@ -94,7 +91,6 @@ impacts: ./data/interim/impacts_forecasted_foreshore_slope_sto06.csv ./data/inte ### TWLs -twls: ./data/interim/twl_foreshore_slope_sto06.csv twls: ./data/interim/twl_premean_slope_sto06.csv twls: ./data/interim/twl_premean_slope_hol86.csv twls: ./data/interim/twl_premean_slope_nie91.csv @@ -320,7 +316,6 @@ twls: ./data/interim/twl_postintertidal_slope_pow18.csv ### IMPACTS impacts: ./data/interim/impacts_observed.csv -impacts: ./data/interim/impacts_forecasted_foreshore_slope_sto06.csv impacts: ./data/interim/impacts_forecasted_premean_slope_sto06.csv impacts: ./data/interim/impacts_forecasted_premean_slope_hol86.csv impacts: ./data/interim/impacts_forecasted_premean_slope_nie91.csv