I have a netcdf file that contains air quality data. There are 4 dimensions:
time : 24 hours (midnight to midnight)
level : 1 to 8 (this is the height in meters (0, 50, 250, 500, 1000, 2000, 3000, 5000 m))
latitude : 1 to 400
longitude : 1 to 700
I want to make a new netcdf file retaining only level 1, deleting the other levels, as I only need the surface.
How can I do that ?
I tried to do this with nccopy command line but it reproduces the dataset. I don't know how can I delete the other levels.