Hello for a project I am working , I need to get the data from a NetCDF file. The file was downloaded from here : https://ads.atmosphere.copernicus.eu/cdsapp#!/dataset/cams-europe-air-quality-forecasts?tab=form.
I have opened the file using python are read it's data, but as it's the first time I am working with this kind of file formats , I have no idea what the data is.
<xarray.Dataset>
Dimensions: (longitude: 3, latitude: 2, level: 1, time: 72)
Coordinates:
* longitude (longitude) float32 21.85 21.95 22.05
* latitude (latitude) float32 47.05 46.95
* level (level) float32 0.0
* time (time) timedelta64[ns] 00:00:00 01:00:00 ... 2 days 23:00:00
Data variables:
no2_conc (time, level, latitude, longitude) float32 ...
Attributes:
title: NO2 Air Pollutant ANALYSIS at the Surface
institution: Data produced by CNRS
source: Data from CHIMERE model
history: Model CHIMERE ANALYSIS
ANALYSIS: Europe, 20210101-20210103+[0H_23H]
summary: CHIMERE model hourly ANALYSIS of NO2 concentration at the S...
project: MACC-RAQ (http://macc-raq.gmes-atmosphere.eu)
I need to retrieve the NO2 concentrations data ( no2_conc ). It says that it should have this format :
no2_conc (time, level, latitude, longitude) float32
but when I list the no2_conc dataset I am getting this format :
no2_conc: <class 'numpy.ma.core.MaskedArray'>
no2_conc: [[[[14.050521850585938 13.868622779846191 13.541204452514648]
[13.683085441589355 13.6248779296875 13.512101173400879]]]
[[[11.958571434020996 11.823966026306152 11.554755210876465]
[11.64934253692627 11.685722351074219 11.638428688049316]]]
Python is not my main coding language!
Have you used this type of file before ? If so , could you please , help me understand the format and how can I get the proper (no2_conc) data from it ?
Thank you!