i downloaded a dataset from “ms-global-atmospheric-composition-forecasts”, here is what the API server indicated to me as a python script following an online request to obtain the classic air pollution data.
dataset = “cams-global-atmospheric-composition-forecasts”
request = {
“variable”: [
“particulate_matter_2.5um”,
“particulate_matter_10um”,
“nitrogen_dioxide”,
“ozone”
],
You see I ask for 4 variables. But in the end I get after downloading a Netcdf file with two variables(pm25 & pm10) and not 4.
Another question: are these variables at ground level?
Thank you.