6-hourly global SO2 data from BLexp Raikoke eruption June 2019

Title 6-hourly global SO2 data from BLexp Raikoke eruption June 2019
Description Control experiment for a series of SO2 assimilation tests for the 2019 Raikoke eruption with the CAMS system which assess the impact of assimilating SO2 layer height data (V3.1 FP_ILM). In BLexp (hhu5) ESA NRT SO2 data were assimilated.
DOI 10.21957/cygt-xf49
Experiment ID hhu5
Experiment class ECMWF Research Department
Examples

Retrieval of total column SO2 forecast at step 24

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2019-06-23",
    "expver": "hhu5",
    "levtype": "sfc",
    "param": "210126",
    "step": "24",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "fc"
})

Retrieval of SO2 analysis on model levels

#!/usr/bin/env python
from ecmwfapi import ECMWFDataServer

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2019-06-25",
    "expver": "hhu5",
    "levelist": "1/to/137",
    "levtype": "ml",
    "param": "210122",
    "step": "0",
    "stream": "oper",
    "target": "outputml.grib",
    "time": "00:00:00",
    "type": "an"
})