Skip to content
Open
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
32 changes: 32 additions & 0 deletions om4labs/catalogs/obs_catalog_gfdl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,38 @@ sources:
metadata:
origin_url: ''

Argo_MLD_003:
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's make a note to copy these files into a central location. You can also include a notebook with the preprocessing steps in the om4labs/data directory.

description: "Computed MLD_003 from Argo profiles"
driver: netcdf
args:
urlpath: '/net3/bgr/Datasets/Argo/MLDs_v2/Argo_MLD.mld_prho_threshold_003.nc'
metadata:
origin_url: ""

Argo_MLD_EN1:
description: "Computed MLD_EN1 from Argo profiles"
driver: netcdf
args:
urlpath: '/net3/bgr/Datasets/Argo/MLDs_v2/Argo_MLD.mld_pe_anomaly_25.nc'
metadata:
origin_url: ""

Argo_MLD_EN2:
description: "Computed MLD_EN2 from Argo profiles"
driver: netcdf
args:
urlpath: '/net3/bgr/Datasets/Argo/MLDs_v2/Argo_MLD.mld_pe_anomaly_2500.nc'
metadata:
origin_url: ""

Argo_MLD_EN3:
description: "Computed MLD_EN3 from Argo profiles"
driver: netcdf
args:
urlpath: '/net3/bgr/Datasets/Argo/MLDs_v2/Argo_MLD.mld_pe_anomaly_250000.nc'
metadata:
origin_url: ""

WOA13_annual_TS:
description: "World Ocean Atlas 2013 annual climatology T/S"
driver: netcdf
Expand Down
32 changes: 32 additions & 0 deletions om4labs/catalogs/obs_catalog_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,38 @@ sources:
metadata:
origin_url: ''

Argo_MLD_003:
description: "Computed MLD_003 from Argo profiles"
driver: netcdf
args:
urlpath: '/test_data/obs/Datasets/Argo/MLDs/Argo_MLD.mld_prho_threshold_003.nc'
metadata:
origin_url: ""

Argo_MLD_EN1:
description: "Computed MLD_EN1 from Argo profiles"
driver: netcdf
args:
urlpath: '/test_data/obs/Datasets/Argo/MLDs/Argo_MLD.mld_pe_anomaly_25.nc'
metadata:
origin_url: ""

Argo_MLD_EN2:
description: "Computed MLD_EN2 from Argo profiles"
driver: netcdf
args:
urlpath: '/test_data/obs/Datasets/Argo/MLDs/Argo_MLD.mld_pe_anomaly_2500.nc'
metadata:
origin_url: ""

Argo_MLD_EN3:
description: "Computed MLD_EN3 from Argo profiles"
driver: netcdf
args:
urlpath: '/test_data/obs/Datasets/Argo/MLDs/Argo_MLD.mld_pe_anomaly_250000.nc'
metadata:
origin_url: ""

WOA13_annual_TS:
description: "World Ocean Atlas 2013 annual climatology T/S"
driver: netcdf
Expand Down
7 changes: 7 additions & 0 deletions om4labs/diags/mld/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from .mld import parse, read, calculate, plot, run, parse_and_run

__description__ = "Mixed Layer Depth bias maps"
__ppstreams__ = [
"ocean_monthly/av",
]
__ppvars__ = ["MLD_003","MLD_EN1","MLD_EN2","MLD_EN3"]
Loading