├── .github ├── dependabot.yml └── workflows │ ├── nightly-build.yaml │ ├── publish-book.yaml │ ├── replace-links.yaml │ ├── trigger-book-build.yaml │ ├── trigger-delete-preview.yaml │ └── trigger-preview.yaml ├── .gitignore ├── CITATION.cff ├── LICENSE ├── README.md ├── _gallery_info.yml ├── environment.yml ├── myst.yml ├── notebooks ├── example-workflows │ ├── dask-worker-space │ │ ├── global.lock │ │ └── purge.lock │ ├── ecs-cmip6.ipynb │ ├── gmst.ipynb │ ├── precip-freq.ipynb │ └── xesmf-ohu.ipynb ├── foundations │ ├── esgf-opendap.ipynb │ ├── google-cloud-basic.ipynb │ └── intake-esm.ipynb ├── how-to-cite.md └── images │ ├── ProjectPythia_Logo_Final-01-Blue.svg │ ├── arm_logo.png │ ├── cmip6-cookbook-thumbnail.png │ ├── cmip6-logo.webp │ ├── esgf.png │ ├── globus-logo.png │ ├── google-cloud.png │ ├── icons │ └── favicon.ico │ ├── intake.png │ └── logos │ ├── NSF-NCAR_Lockup-UCAR-Dark_102523.svg │ ├── UAlbany-A2-logo-purple-gold.svg │ ├── Unidata_logo_horizontal_1200x300.svg │ ├── pythia_logo-white-notext.svg │ └── pythia_logo-white-rtext.svg └── thumbnail.png /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/workflows/nightly-build.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-book.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/workflows/publish-book.yaml -------------------------------------------------------------------------------- /.github/workflows/replace-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/workflows/replace-links.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-book-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/workflows/trigger-book-build.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-delete-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/workflows/trigger-delete-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/trigger-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.github/workflows/trigger-preview.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /_gallery_info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/_gallery_info.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/environment.yml -------------------------------------------------------------------------------- /myst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/myst.yml -------------------------------------------------------------------------------- /notebooks/example-workflows/dask-worker-space/global.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/example-workflows/dask-worker-space/purge.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/example-workflows/ecs-cmip6.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/example-workflows/ecs-cmip6.ipynb -------------------------------------------------------------------------------- /notebooks/example-workflows/gmst.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/example-workflows/gmst.ipynb -------------------------------------------------------------------------------- /notebooks/example-workflows/precip-freq.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/example-workflows/precip-freq.ipynb -------------------------------------------------------------------------------- /notebooks/example-workflows/xesmf-ohu.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/example-workflows/xesmf-ohu.ipynb -------------------------------------------------------------------------------- /notebooks/foundations/esgf-opendap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/foundations/esgf-opendap.ipynb -------------------------------------------------------------------------------- /notebooks/foundations/google-cloud-basic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/foundations/google-cloud-basic.ipynb -------------------------------------------------------------------------------- /notebooks/foundations/intake-esm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/foundations/intake-esm.ipynb -------------------------------------------------------------------------------- /notebooks/how-to-cite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/how-to-cite.md -------------------------------------------------------------------------------- /notebooks/images/ProjectPythia_Logo_Final-01-Blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/ProjectPythia_Logo_Final-01-Blue.svg -------------------------------------------------------------------------------- /notebooks/images/arm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/arm_logo.png -------------------------------------------------------------------------------- /notebooks/images/cmip6-cookbook-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/cmip6-cookbook-thumbnail.png -------------------------------------------------------------------------------- /notebooks/images/cmip6-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/cmip6-logo.webp -------------------------------------------------------------------------------- /notebooks/images/esgf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/esgf.png -------------------------------------------------------------------------------- /notebooks/images/globus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/globus-logo.png -------------------------------------------------------------------------------- /notebooks/images/google-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/google-cloud.png -------------------------------------------------------------------------------- /notebooks/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/icons/favicon.ico -------------------------------------------------------------------------------- /notebooks/images/intake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/intake.png -------------------------------------------------------------------------------- /notebooks/images/logos/NSF-NCAR_Lockup-UCAR-Dark_102523.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/logos/NSF-NCAR_Lockup-UCAR-Dark_102523.svg -------------------------------------------------------------------------------- /notebooks/images/logos/UAlbany-A2-logo-purple-gold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/logos/UAlbany-A2-logo-purple-gold.svg -------------------------------------------------------------------------------- /notebooks/images/logos/Unidata_logo_horizontal_1200x300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/logos/Unidata_logo_horizontal_1200x300.svg -------------------------------------------------------------------------------- /notebooks/images/logos/pythia_logo-white-notext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/logos/pythia_logo-white-notext.svg -------------------------------------------------------------------------------- /notebooks/images/logos/pythia_logo-white-rtext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/notebooks/images/logos/pythia_logo-white-rtext.svg -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectPythia/cmip6-cookbook/HEAD/thumbnail.png --------------------------------------------------------------------------------