Skip to content

Commit 49ab8a7

Browse files
committed
Update: add script for Monte Carlo runs of ESA SCOPE Exchange product
1 parent 0d434c9 commit 49ab8a7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

bin/kaleidoscope-esa-scope-ex

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Copyright (c) Brockmann Consult GmbH, 2025
4+
# License: MIT
5+
#
6+
set -e
7+
## Produces Monte Carlo variants of the ESA SCOPE Exchange product.
8+
#
9+
# ./kaleidoscope-esa-scope-ex
10+
#
11+
for selector in 003 005 007 011 013 017 019 023 029 031; do
12+
echo "$(tput setaf 2)$(date -u "+%Y-%m-%dT%H:%M:%S") [INFO] Selector ${selector} ...$(tput sgr0)"
13+
kaleidoscope \
14+
--selector ${selector} \
15+
--product-type esa-scope-exchange \
16+
--log-level off \
17+
--progress \
18+
Ford_et_al_UExP-FNN-U_physics_carbonatesystem_ESASCOPE_v5.nc \
19+
Ford_et_al_UExP-FNN-U_physics_carbonatesystem_ESASCOPE_v5.${selector}.nc
20+
done

0 commit comments

Comments
 (0)