We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d434c9 commit 49ab8a7Copy full SHA for 49ab8a7
bin/kaleidoscope-esa-scope-ex
@@ -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