I have a netcdf file and I need to perform a spatial subsetting. Here is the file structure:
netcdf input {
dimensions:
x = 5762 ;
y = 3963 ;
time_counter = UNLIMITED ; // (36 currently)
tbnds = 2 ;
variables:
....
I tried the following NCO command and it worked fine:
ncks -d x,1,5 -d y,1,5 input.nc -O output.nc
Which is the equivalent command for CDO? I only found the sellonlatbox command, but it isn't the command I'm looking for.
Thanks