Skip to content

Commit

Permalink
use chunking
Browse files Browse the repository at this point in the history
  • Loading branch information
florianziemen committed Aug 30, 2024
1 parent fbeb7c6 commit 9467f04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions B2/L6/docs/result_evaluation.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,22 +87,22 @@ Funky features in the model

Let's load some model and ERA5 data

```
```python
import intake
import healpy as hp
import matplotlib.pyplot as plt
from easygems.healpix import attach_coords

hera_cat = intake.open_catalog("https://tcodata.mpimet.mpg.de/internal.yaml")
hera = hera_cat.HERA5.to_dask().pipe(attach_coords)
hera = hera_cat.HERA5(chunks = 'auto').to_dask().pipe(attach_coords)
# Contains modified Copernicus Climate Change Service information 2023.
# Neither the European Commission nor ECMWF is responsible for any use
# that may be made of the Copernicus information or data it contains.
# This dataset is on healpix level 7

zoom = 7
cat = intake.open_catalog("https://data.nextgems-h2020.eu/online.yaml")
icon = cat.ICON.ngc3028(zoom=zoom).to_dask().pipe(attach_coords)
icon = cat.ICON.ngc3028(zoom=zoom, chunks = 'auto').to_dask().pipe(attach_coords)

```

Expand Down

0 comments on commit 9467f04

Please sign in to comment.