...
What is the objective of this page?
Info | ||
---|---|---|
| ||
To help users to improve S2S CMA MARS requests performance via the WebAPI. A good understanding of the MARS efficiency issues is essential especially for users that are interested in downloading large amounts of data. |
...
Code Block | ||
---|---|---|
| ||
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer modelVersionDate = "2014-05-01" hindcastDate = "2014-04-01" # The selected hindcast date server = ECMWFDataServer() server.retrieve({ "class": "s2", "dataset": "s2s", "date": modelVersionDate, "expver": "prod", "hdate": hindcastDate, "levtype": "sfc", "origin": "babj", "param": "165", "step": "0", "stream": "enfh", "target": "data.cf.sfc", "time": "00", "type": "cf", }) |
A CMA reforecast request for several hindcastDates
...
Info |
---|
Please note: use the variable "target" to write each hindcastDate on a separate file . |
...