Hello,
I am trying to use CAMS data for WRF-Chem. I am following the guide posted at How to run the WRF-Chem model using CAMS data as initial and boundary conditions (BC)? - Copernicus Knowledge Base - ECMWF Confluence Wiki
The issue is that my script to download the CAMS is not working. This is my script
#!/usr/bin/env python3
from ecmwfapi import ECMWFDataServer
server = ECMWFDataServer()
server.retrieve({
‘dataset’ : “cams_reanalysis”,
‘class’ : “mc”,
‘type’ : “an”,
‘stream’ : “oper”,
‘expver’ : “eac4”,
‘levtype’ : “ml”,
‘repres’ : “gg”,
‘levellist’ : “7/to/60”,
‘param’ : “T/1.210/2.210/3.210/4.210/5.210/6.210/7.210/8.210/9.210/10.210/11.210”,
‘date’ : “20220921/to/20220926”,
‘step’ : “0”,
‘time’ : “0/to/21/by/3”,
‘grid’ : “0.75/0.75”,
‘target’ : “AER_20220921_20220926_eac4.grib”
})
print(“done”)
The error message is telling me that Resource not found: datasets/cams_reanalysis
What is the correct name for the dataset in the script?