|
8 | 8 | "# Access ERA5 data from NCAR's Research Data Archive and compute anomaly" |
9 | 9 | ] |
10 | 10 | }, |
| 11 | + { |
| 12 | + "cell_type": "markdown", |
| 13 | + "id": "e4d88a5a-5b58-4d10-a370-fcf0a2507bd6", |
| 14 | + "metadata": {}, |
| 15 | + "source": [ |
| 16 | + "## Overview\n", |
| 17 | + "\n", |
| 18 | + "ERA-5 Dataset is available from NCAR's RDA in netcdf format as hourly files. A subset of this dataset is processed into Zarr format and available from NCAR RDA endpoints. To learn how you can create Zarr files from NCAR RDA netcdf files, please see [this notebook](./05_data_preprocessing.ipynb).\n", |
| 19 | + "\n", |
| 20 | + "\n", |
| 21 | + "In this notebook, \n", |
| 22 | + "* We will read data zarr stores from NCAR's RDA endpoint \n", |
| 23 | + "* Compute temperature anomaly for the years 1940-2023" |
| 24 | + ] |
| 25 | + }, |
| 26 | + { |
| 27 | + "cell_type": "markdown", |
| 28 | + "id": "af77df62-68f8-436f-bf02-482b837ec65c", |
| 29 | + "metadata": {}, |
| 30 | + "source": [ |
| 31 | + "## Prerequisites\n", |
| 32 | + "\n", |
| 33 | + "| Concepts | Importance | Notes |\n", |
| 34 | + "| --- | --- | --- |\n", |
| 35 | + "| [Intro to Xarray](https://foundations.projectpythia.org/core/xarray.html) | Necessary | |\n", |
| 36 | + "| [Intro to Intake](https://projectpythia.org/intake-cookbook/notebooks/intake_introduction.html) | Necessary | |\n", |
| 37 | + "| [Understanding of Zarr](https://zarr.readthedocs.io/en/stable/) | Helpful | |\n", |
| 38 | + "\n", |
| 39 | + "- **Time to learn**: 30 minutes" |
| 40 | + ] |
| 41 | + }, |
11 | 42 | { |
12 | 43 | "cell_type": "markdown", |
13 | 44 | "id": "c023bced-f8b9-46c7-b4b6-c92567b7cca1", |
|
2253 | 2284 | ], |
2254 | 2285 | "metadata": { |
2255 | 2286 | "kernelspec": { |
2256 | | - "display_name": "Python [conda env:uxarray-geometry] *", |
| 2287 | + "display_name": "Python 3 (ipykernel)", |
2257 | 2288 | "language": "python", |
2258 | | - "name": "conda-env-uxarray-geometry-py" |
| 2289 | + "name": "python3" |
2259 | 2290 | }, |
2260 | 2291 | "language_info": { |
2261 | 2292 | "codemirror_mode": { |
|
2267 | 2298 | "name": "python", |
2268 | 2299 | "nbconvert_exporter": "python", |
2269 | 2300 | "pygments_lexer": "ipython3", |
2270 | | - "version": "3.10.13" |
| 2301 | + "version": "3.11.9" |
2271 | 2302 | } |
2272 | 2303 | }, |
2273 | 2304 | "nbformat": 4, |
|
0 commit comments