Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add infrastructure to compute errors against observations #625

Merged
merged 4 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .buildkite/longruns/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ steps:
- label: ":envelope: Slack report: target AMIP"
command:
- slack-upload -c "#coupler-report" -f experiments/AMIP/output/amip/amip_target_artifacts/amip_paperplots.png -m png -n amip_fine -x "AMIP Target Longrun"
- slack-upload -c "#coupler-report" -f experiments/AMIP/output/amip/amip_target_artifacts/biases.png -m png -n amip_fine -x "AMIP Target Longrun"

- label: ":envelope: Slack report: Flame Diff"
command:
Expand Down
3 changes: 3 additions & 0 deletions artifacts/Artifacts.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ git-tree-sha1 = "139d23f6de29900917d79b41a87a8ee6483c72d0"

[sst]
git-tree-sha1 = "9969543acd3c9084b8238b7858d0c76aa0bf98a7"

[pr_obs_data]
git-tree-sha1 = "7486bf32e9352493f69364aead26f01eaf90d2af"
12 changes: 12 additions & 0 deletions artifacts/artifact_funcs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,15 @@ function mask_dataset_path()
)
return AW.get_data_folder(mask_dataset)
end

function pr_obs_data_path()
pr_obs_data = AW.ArtifactWrapper(
@__DIR__,
"pr_obs_data",
AW.ArtifactFile[AW.ArtifactFile(
url = "https://caltech.box.com/shared/static/k1or5d0d9xdvyfiytl1os7z341monkzn.nc",
filename = "gpcp.precip.mon.mean.197901-202305.nc",
),],
)
return AW.get_data_folder(pr_obs_data)
end
1 change: 1 addition & 0 deletions artifacts/download_artifacts.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ function trigger_download()
@info "sic dataset path: `$(sic_dataset_path())`"
@info "co2 dataset path: `$(co2_dataset_path())`"
@info "mask dataset path: `$(mask_dataset_path())`"
@info "pr obs data path: `$(pr_obs_data_path())`"
return nothing
end
trigger_download()
3 changes: 3 additions & 0 deletions experiments/AMIP/Artifacts.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[land_mask]
git-tree-sha1 = "e41bc8c44124f867b64a9d70f1599515ae27f38a"

[pr_obs_data]
git-tree-sha1 = "7486bf32e9352493f69364aead26f01eaf90d2af"

[sic]
git-tree-sha1 = "139d23f6de29900917d79b41a87a8ee6483c72d0"

Expand Down
Loading
Loading