Skip to content

Commit 2e8be0b

Browse files
committed
deploy: 807991d
1 parent efeab71 commit 2e8be0b

11 files changed

+590
-112
lines changed

README.html

+19-4
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<link rel="shortcut icon" href="_static/favicon.ico"/>
5555
<link rel="index" title="Index" href="genindex.html" />
5656
<link rel="search" title="Search" href="search.html" />
57-
<link rel="next" title="01_BasicVisualization" href="notebooks/01BasicVisualization.html" />
57+
<link rel="next" title="How to Cite This Cookbook" href="notebooks/how-to-cite.html" />
5858
<meta name="viewport" content="width=device-width, initial-scale=1" />
5959
<meta name="docsearch:language" content="None">
6060

@@ -185,6 +185,18 @@
185185
</a>
186186
</li>
187187
</ul>
188+
<p aria-level="2" class="caption" role="heading">
189+
<span class="caption-text">
190+
Preamble
191+
</span>
192+
</p>
193+
<ul class="nav bd-sidenav">
194+
<li class="toctree-l1">
195+
<a class="reference internal" href="notebooks/how-to-cite.html">
196+
How to Cite This Cookbook
197+
</a>
198+
</li>
199+
</ul>
188200
<p aria-level="2" class="caption" role="heading">
189201
<span class="caption-text">
190202
Visualization notebooks
@@ -353,7 +365,8 @@
353365
<div class="tex2jax_ignore mathjax_ignore section" id="arco-era-5-interactive-visualization-cookbook">
354366
<h1>ARCO ERA-5 Interactive Visualization Cookbook<a class="headerlink" href="#arco-era-5-interactive-visualization-cookbook" title="Permalink to this headline"><i class="fas fa-link"></i></a></h1>
355367
<p><a class="reference external" href="https://github.com/ProjectPythia/ERA5_interactive-cookbook/actions/workflows/nightly-build.yaml"><img alt="nightly-build" src="https://github.com/ProjectPythia/ERA5_interactive-cookbook/actions/workflows/nightly-build.yaml/badge.svg" /></a>
356-
<a class="reference external" href="https://binder.projectpythia.org/v2/gh/ProjectPythia/ERA5_interactive-cookbook/main?labpath=notebooks"><img alt="Binder" src="https://binder.projectpythia.org/badge_logo.svg" /></a></p>
368+
<a class="reference external" href="https://binder.projectpythia.org/v2/gh/ProjectPythia/ERA5_interactive-cookbook/main?labpath=notebooks"><img alt="Binder" src="https://binder.projectpythia.org/badge_logo.svg" /></a>
369+
<a class="reference external" href="https://zenodo.org/badge/latestdoi/657280462"><img alt="DOI" src="https://zenodo.org/badge/657280462.svg" /></a></p>
357370
<p>A team at <a class="reference external" href="https://research.google/">Google Research &amp; Cloud</a> are making parts of the <a class="reference external" href="https://www.ecmwf.int/en/forecasts/dataset/ecmwf-reanalysis-v5">ECMWF Reanalysis version 5</a> (aka <strong>ERA-5</strong>) accessible in a <a class="reference external" href="https://www.frontiersin.org/articles/10.3389/fclim.2021.782909/full">Analysis Ready, Cloud Optimized</a> (aka <strong>ARCO</strong>) format.</p>
358371
<p>This Project Pythia Cookbook covers accessing, regridding, and visualizing this reanalysis data.</p>
359372
<div class="section" id="motivation">
@@ -472,6 +485,8 @@ <h3>Running on Your Own Machine<a class="headerlink" href="#running-on-your-own-
472485
</div>
473486
<div class="toctree-wrapper compound">
474487
</div>
488+
<div class="toctree-wrapper compound">
489+
</div>
475490
</div>
476491

477492
<script type="text/x-thebe-config">
@@ -497,10 +512,10 @@ <h3>Running on Your Own Machine<a class="headerlink" href="#running-on-your-own-
497512
</div>
498513
<!-- Previous / next buttons -->
499514
<div class='prev-next-area'>
500-
<a class='right-next' id="next-link" href="notebooks/01BasicVisualization.html" title="next page">
515+
<a class='right-next' id="next-link" href="notebooks/how-to-cite.html" title="next page">
501516
<div class="prev-next-info">
502517
<p class="prev-next-subtitle">next</p>
503-
<p class="prev-next-title">01_BasicVisualization</p>
518+
<p class="prev-next-title">How to Cite This Cookbook</p>
504519
</div>
505520
<i class="fas fa-angle-right"></i>
506521
</a>

_sources/README.md

+19-20
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
[![nightly-build](https://github.com/ProjectPythia/ERA5_interactive-cookbook/actions/workflows/nightly-build.yaml/badge.svg)](https://github.com/ProjectPythia/ERA5_interactive-cookbook/actions/workflows/nightly-build.yaml)
66
[![Binder](https://binder.projectpythia.org/badge_logo.svg)](https://binder.projectpythia.org/v2/gh/ProjectPythia/ERA5_interactive-cookbook/main?labpath=notebooks)
7+
[![DOI](https://zenodo.org/badge/657280462.svg)](https://zenodo.org/badge/latestdoi/657280462)
78

89
A team at [Google Research & Cloud](https://research.google/) are making parts of the [ECMWF Reanalysis version 5](https://www.ecmwf.int/en/forecasts/dataset/ecmwf-reanalysis-v5) (aka **ERA-5**) accessible in a [Analysis Ready, Cloud Optimized](https://www.frontiersin.org/articles/10.3389/fclim.2021.782909/full) (aka **ARCO**) format.
910

@@ -30,33 +31,31 @@ In the notebooks which comprise this Cookbook, we demonstrate the following:
3031
3. Plot a map at a specific time using Matplotlib and Cartopy
3132
4. Create interactive visualizations, leveraging the [Holoviz](https://holoviz.org) ecosystem
3233

33-
34-
3534
## Authors
3635

3736
[Kevin Tyle](https://github.com/ktyle), [Michael Barletta](https://github.com/Michael-Barletta)
3837

3938
We also gratefully acknowledge the Google Cloud Research team for making an ARCO-friendly version of the ERA-5 available. Citations for their effort and the ERA-5 reanalysis are below:
4039

4140
- Carver, Robert W, and Merose, Alex. (2023): ARCO-ERA5: An Analysis-Ready Cloud-Optimized Reanalysis Dataset. 22nd Conf. on AI for Env. Science, Denver, CO, Amer. Meteo. Soc, 4A.1, https://ams.confex.com/ams/103ANNUAL/meetingapp.cgi/Paper/415842
42-
- Hersbach, H., Bell, B., Berrisford, P., Hirahara, S., Horányi, A.,
43-
Muñoz‐Sabater, J., Nicolas, J., Peubey, C., Radu, R., Schepers, D.,
44-
Simmons, A., Soci, C., Abdalla, S., Abellan, X., Balsamo, G.,
45-
Bechtold, P., Biavati, G., Bidlot, J., Bonavita, M., De Chiara, G.,
46-
Dahlgren, P., Dee, D., Diamantakis, M., Dragani, R., Flemming, J.,
47-
Forbes, R., Fuentes, M., Geer, A., Haimberger, L., Healy, S.,
48-
Hogan, R.J., Hólm, E., Janisková, M., Keeley, S., Laloyaux, P.,
49-
Lopez, P., Lupu, C., Radnoti, G., de Rosnay, P., Rozum, I., Vamborg, F.,
50-
Villaume, S., Thépaut, J-N. (2017): Complete ERA5: Fifth generation of
51-
ECMWF atmospheric reanalyses of the global climate. Copernicus Climate
52-
Change Service (C3S) Data Store (CDS).
53-
Hersbach et al, (2017) was downloaded from the Copernicus Climate Change
54-
Service (C3S) Climate Data Store. We thank C3S for allowing us to
55-
redistribute the data.
56-
The results contain modified Copernicus Climate Change Service
57-
information 2022. Neither the European Commission nor ECMWF is
58-
responsible for any use that may be made of the Copernicus information
59-
or data it contains.
41+
- Hersbach, H., Bell, B., Berrisford, P., Hirahara, S., Horányi, A.,
42+
Muñoz‐Sabater, J., Nicolas, J., Peubey, C., Radu, R., Schepers, D.,
43+
Simmons, A., Soci, C., Abdalla, S., Abellan, X., Balsamo, G.,
44+
Bechtold, P., Biavati, G., Bidlot, J., Bonavita, M., De Chiara, G.,
45+
Dahlgren, P., Dee, D., Diamantakis, M., Dragani, R., Flemming, J.,
46+
Forbes, R., Fuentes, M., Geer, A., Haimberger, L., Healy, S.,
47+
Hogan, R.J., Hólm, E., Janisková, M., Keeley, S., Laloyaux, P.,
48+
Lopez, P., Lupu, C., Radnoti, G., de Rosnay, P., Rozum, I., Vamborg, F.,
49+
Villaume, S., Thépaut, J-N. (2017): Complete ERA5: Fifth generation of
50+
ECMWF atmospheric reanalyses of the global climate. Copernicus Climate
51+
Change Service (C3S) Data Store (CDS).
52+
Hersbach et al, (2017) was downloaded from the Copernicus Climate Change
53+
Service (C3S) Climate Data Store. We thank C3S for allowing us to
54+
redistribute the data.
55+
The results contain modified Copernicus Climate Change Service
56+
information 2022. Neither the European Commission nor ECMWF is
57+
responsible for any use that may be made of the Copernicus information
58+
or data it contains.
6059

6160
### Contributors
6261

_sources/notebooks/how-to-cite.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# How to Cite This Cookbook
2+
3+
The material in Project Pythia's ARCO ERA-5 Interactive Visualization Cookbook is licensed for free and open consumption and reuse. All code is served under [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0), while all non-code content is licensed under [Creative Commons BY 4.0 (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/). Effectively, this means you are free to share and adapt this material so long as you give appropriate credit to the Cookbook authors and the Project Pythia community.
4+
5+
The source code for the book is [released on GitHub](https://github.com/ProjectPythia/ERA5_interactive-cookbook) and archived on Zenodo. This DOI will always resolve to the latest release of the book source:
6+
7+
[![DOI](https://zenodo.org/badge/657280462.svg)](https://zenodo.org/badge/latestdoi/657280462)
0 Bytes
Binary file not shown.

genindex.html

+12
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,18 @@
184184
</a>
185185
</li>
186186
</ul>
187+
<p aria-level="2" class="caption" role="heading">
188+
<span class="caption-text">
189+
Preamble
190+
</span>
191+
</p>
192+
<ul class="nav bd-sidenav">
193+
<li class="toctree-l1">
194+
<a class="reference internal" href="notebooks/how-to-cite.html">
195+
How to Cite This Cookbook
196+
</a>
197+
</li>
198+
</ul>
187199
<p aria-level="2" class="caption" role="heading">
188200
<span class="caption-text">
189201
Visualization notebooks

0 commit comments

Comments
 (0)