6-hourly global CO data from TROPOMI CO assimilation July-Dec 2021

Title 6-hourly global CO data from TROPOMI CO assimilation July-Dec 2021
Description Analysis experiment (ASSIM) testing the assimilation of near-real time TROPOMI total column CO data in the CAMS CY47R3 system for the period 6/7-31/12/2021 (in addition to already assimilated MOPITT TIR and IASI TCCO).
DOI 10.21957/ax0c-fm72
Experiment ID hmib
Experiment class ECMWF Research Department
Examples

Retrieval of total column CO analysis

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2021-08-01",
    "expver": "hmib",
    "levtype": "sfc",
    "param": "tcco",
    "step": "0",
    "stream": "oper",
    "target": "output.grib",
    "time": "00:00:00",
    "type": "an"
})

Retrieval of model level CO analysis

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

server = ECMWFDataServer()

server.retrieve({
    "class": "rd",
    "dataset": "research",
    "date": "2021-08-01",
    "expver": "hmib",
    "levelist": "1/to/137",
    "levtype": "ml",
    "param": "co",
    "step": "0",
    "stream": "oper",
    "target": "outputml.grib",
    "time": "00:00:00",
    "type": "an"
})