Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ecmwf/ecmwf-opendata
Browse files Browse the repository at this point in the history
  • Loading branch information
b8raoult committed Jan 22, 2022
2 parents 444edfd + 50f71c3 commit 46e24ad
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ client.retrieve(

### Download the ensemble mean and standard deviation for all parameters at a single forecast step from ECMWF's 00UTC ENS forecast (Set III-iv)

The ensemble mean and standard deviation are identified by the keywords `type = "em"` and `type = "es"`, respectively:
The ensemble mean and standard deviation are identified by the keywords `type = "em"`:

```python
from ecmwf.opendata import Client
Expand All @@ -118,7 +118,22 @@ client = Client(source="ecmwf")
client.retrieve(
time=0,
stream="enfo",
type=["es", "em"],
type="em",
step=24,
target="data.grib2",
)

```
and `type = "es"`, respectively:
```python
from ecmwf.opendata import Client

client = Client(source="ecmwf")

client.retrieve(
time=0,
stream="enfo",
type="es",
step=24,
target="data.grib2",
)
Expand Down

0 comments on commit 46e24ad

Please sign in to comment.