-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
46 lines (38 loc) · 1.17 KB
/
Makefile
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
init:
terraform -chdir=terraform init
plan:
terraform -chdir=terraform plan \
-var-file=prod.tfvars
apply:
terraform -chdir=terraform apply \
-var-file=prod.tfvars
destroy:
terraform -chdir=terraform destroy \
-var-file=prod.tfvars
data/20231106090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc:
echo "Go get the file!"
run-local: data/20231106090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc
python3 ghrsst/cogger.py \
--date "2023-11-06" \
--input-location data \
--output-location data/output \
--overwrite
run-s3: data/20231106090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc
python3 ghrsst/cogger.py \
--date "2023-11-06" \
--input-location data \
--output-location s3://files.auspatious.com/ghrsst_test_2024 \
--overwrite
run-dl: data/20231106090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc
python3 ghrsst/cogger.py \
--date "2024-04-12" \
--input-location "JPL" \
--output-location data/output \
--overwrite
run-dl-cache: data/20231106090000-JPL-L4_GHRSST-SSTfnd-MUR-GLOB-v02.0-fv04.1.nc
python3 ghrsst/cogger.py \
--date "2024-04-12" \
--input-location "JPL" \
--output-location data/output \
--overwrite \
--cache-local