Skip to content

Commit e002f43

Browse files
committed
edit sea-ice area exercise
1 parent ade4ad2 commit e002f43

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

_episodes/11-esmvalcoreapi.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -441,20 +441,15 @@ quickplot.plot(cube)
441441
> > ```
442442
> {: .solution}
443443
> > ## Tip: Check dataset files can be found
444-
> > The observational dataset used is a Tier 3, so with some licensing restrictions. It is not directly
445-
> > accesible here. Check files can be found for all the datasets:
444+
> > The observational dataset used is a Tier 3, so with some licensing restrictions.
445+
> > Check files can be found for all the datasets:
446446
> >
447447
> > ```python
448448
> > for ds in [model, model_om, obs]:
449449
> > print(ds['dataset'],' : ' ,ds.files)
450450
> > print(ds.supplementaries[0].files)
451451
> > ```
452-
> > This observation dataset does have a downloader and formatter with ESMValTool.
453-
> > ```bash
454-
> > esmvaltool data download --config_file <path to config-user.yml> NSIDC-G02202-sh
455-
> > esmvaltool data format --config_file <path to config-user.yml> NSIDC-G02202-sh
456-
> > ```
457-
> > For this plot we can drop it for now. But you can also try to find and add another dataset. eg:
452+
> > You can try to find and add another observational dataset. eg:
458453
> > ```python
459454
> > obs_other = Dataset(
460455
> > short_name='siconc', mip='*', project='OBS', type='*',
@@ -475,9 +470,9 @@ quickplot.plot(cube)
475470
> > area_statistics,
476471
> > annual_statistics
477472
> > )
478-
> > # om - at index 1 to offset years
479-
> > # drop observations that cannot be found
480-
> > load_data = [model, model_om] #, obs]
473+
> > # model_om - at index 1 to offset years
474+
> >
475+
> > load_data = [model, model_om, obs]
481476
> >
482477
> > # function to use for both min and max ['max','min']
483478
> >

0 commit comments

Comments
 (0)