Skip to content
Snippets Groups Projects

Resolve "Plotting CMIP6 data on unstructured grids with psyplot"

1 file
+ 5
3
Compare changes
  • Side-by-side
  • Inline
``` python
``` python
# Path to catalog descriptor on the DKRZ server
# Path to master catalog on the DKRZ server
col_url = "/pool/data/Catalogs/mistral-cmip6.json"
col_url = "https://swift.dkrz.de/v1/dkrz_a44962e3ba914c309a7421573a6949a6/intake-esm/dkrz_data-pool_cloudcatalog.yaml"
 
parent_col=intake.open_catalog(col_url)
 
list(parent_col)
# Open the catalog with the intake package and name it "col" as short for "collection"
# Open the catalog with the intake package and name it "col" as short for "collection"
col = intake.open_esm_datastore(col_url)
col=parent_col["dkrz_cmip6_disk_netcdf_fromcloud"]
%% Cell type:markdown id: tags:
%% Cell type:markdown id: tags:
Loading