Skip to content
Closed
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 @@ -58,3 +58,35 @@ sources:
urlpath: '/home/jpk/wavelet-obs/wavelet.NOAA-ERSST-v5.1880-2019.nc'
metadata:
origin_url: ''

Argo_MLD_003:
description: "Computed MLD_003 from Argo profiles"
driver: netcdf
args:
urlpath: '/net3/bgr/Datasets/Argo/MLDs/Argo_MLD_MonthlyMedians.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/Argo_MLD_MonthlyMedians.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/Argo_MLD_MonthlyMedians.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/Argo_MLD_MonthlyMedians.mld_pe_anomaly_250000.nc'
metadata:
origin_url: ""
31 changes: 31 additions & 0 deletions om4labs/catalogs/obs_catalog_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,34 @@ 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_MonthlyMedians.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_MonthlyMedians.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_MonthlyMedians.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_MonthlyMedians.mld_pe_anomaly_250000.nc'
metadata:
origin_url: ""
1 change: 1 addition & 0 deletions om4labs/diags/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from . import generic_section_transport
from . import generic_yz_annual_bias_1x1deg
from . import heat_transport
from . import mld
from . import moc
from . import sst_annual_bias_1x1deg
from . import sss_annual_bias_1x1deg
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