To help users to improve S2S BoM MARS requests performance via the WebAPI.
|
In general it is organised, as a huge tree, with the indentation below, showing different levels down that tree:
|
The idea is to request as much data as possible from the same tape file. The natural way to group requests would be:
|
|
for hindcastYear in hindcastYears |
The request below is for all members of the perturbed forecast, for Geopotential height and temperature, for the pressure levels 500/700/850/925/1000, for time-steps 24/to/720/by/24 and for model version 2014-01-01 |
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer modelVersionDate = "2014-01-01" # This is the first model version for BoM (babj) hindcastDate = "2013-09-01" # The selected hindcast date server = ECMWFDataServer() server.retrieve({ "class": "s2", "dataset": "s2s", "date": modelVersionDate, "expver": "prod", "hdate": hindcastDate, "levtype": "pl", "levelist": "500/700/850/925/1000", "origin": "ammc", "param": "130/156", "step": "24/to/720/by/24", "stream": "enfh", "target": "data.pf.sfc", "time": "00", "number": "1/2/3", "type": "pf", }) |
|
#!/usr/bin/env python from ecmwfapi import ECMWFDataServer server = ECMWFDataServer() def retrieve_BoM_reforecast(): """ A function to demonstrate how to iterate efficiently over all hincastYears, hincastMonths etc """ hindcastYearStart = 1981 hindcastYearEnd = 2013 hindcastMonthStart = 1 hindcastMonthEnd = 12 hincastDays = ["01", "06", "11", "21", "26"] for hindcastYear in list(range(hindcastYearStart, hindcastYearEnd + 1)): for hindcastMonth in list(range(hindcastMonthStart, hindcastMonthEnd + 1)): hindcastDates = [] for hindcastDay in hincastDays: hindcastDate = '%04d%02d%s' % ( hindcastYear, hindcastMonth, hindcastDay) hindcastDates.append(hindcastDate) target = "data_s2s_ammc_%04d%02d.grb" % (hindcastYear, hindcastMonth) BoM_reforecast_request("/".join(hindcastDates), target) def BoM_reforecast_request(hindcastDates, target): """ A BoM reforecast requests. Change the keywords below to adapt it to your needs. """ modelVersionDate = "2014-01-01" server.retrieve({ "class": "s2", "dataset": "s2s", "date": modelVersionDate, "expver": "prod", "hdate": hindcastDates, "levtype": "pl", "levelist": "500/700/850/925/1000", "origin": "ammc", "param": "130/156", "step": "24/to/720/by/24", "stream": "enfh", "target": target, "time": "00", "number": "1/2/3", "type": "pf", }) if __name__ == '__main__': retrieve_BoM_reforecast() |
Useful links