Skip to content

Commit 7055a72

Browse files
committed
Add a bash script for running run_efast.py
This is just a small convenience script with hard-coded parameters.
1 parent f0a6a00 commit 7055a72

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

run_run_efast.sh

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/env bash
2+
3+
mkdir -p test_temporary_data
4+
5+
w=-15.456047
6+
s=15.665024
7+
e=-15.325491
8+
n=15.787501
9+
10+
wktpoly="POLYGON(($w $s,$e $s,$e $n,$w $n,$w $s))"
11+
12+
python run_efast.py \
13+
--start-date 2022-09-07 \
14+
--end-date 2022-09-17 \
15+
--aoi-geometry "$wktpoly" \
16+
--s3-sensor SYN \
17+
--mosaic-days 100 \
18+
--step 2 \
19+
--snap-gpt-path $(which gpt)

0 commit comments

Comments
 (0)