fix(cron): Add norkyst

This commit is contained in:
2026-04-28 14:44:06 +02:00
parent ca061d4a73
commit 6f00d54907
2 changed files with 152 additions and 28 deletions
+44 -28
View File
@@ -22,40 +22,56 @@ data:
echo "Running subset for $current_date to $next_date"
outfile="cmems_mod_nws_phy-sal_anfc_1.5km-3D_PT1H-i_${current_date}--${next_date}.nc"
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-sal_anfc_1.5km-3D_PT1H-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded salt"
if [[ -f "/data/hdd/data/NEMO/$outfile" ]]; then
echo "Skipping salt (already exists)"
else
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-sal_anfc_1.5km-3D_PT1H-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded salt"
fi
outfile="cmems_mod_nws_phy-cur_anfc_1.5km-3D_PT1H-i_${current_date}--${next_date}.nc"
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-cur_anfc_1.5km-3D_PT1H-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded currents"
if [[ -f "/data/hdd/data/NEMO/$outfile" ]]; then
echo "Skipping currents (already exists)"
else
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-cur_anfc_1.5km-3D_PT1H-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded currents"
fi
outfile="cmems_mod_nws_phy-tem_anfc_1.5km-3D_PT1H-i_${current_date}--${next_date}.nc"
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-tem_anfc_1.5km-3D_PT1H-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded temperature"
if [[ -f "/data/hdd/data/NEMO/$outfile" ]]; then
echo "Skipping temperature (already exists)"
else
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-tem_anfc_1.5km-3D_PT1H-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded temperature"
fi
outfile="cmems_mod_nws_phy-ssh_anfc_1.5km-2D_PT15M-i_${current_date}--${next_date}.nc"
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-ssh_anfc_1.5km-2D_PT15M-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded ssh"
if [[ -f "/data/hdd/data/NEMO/$outfile" ]]; then
echo "Skipping ssh (already exists)"
else
copernicusmarine subset \
--dataset-id cmems_mod_nws_phy-ssh_anfc_1.5km-2D_PT15M-i \
-t "$current_date" \
-T "$next_date" \
-f "$outfile" \
-o /data/hdd/data/NEMO/
echo "Downloaded ssh"
fi
current_date="$next_date"
done