I have a netCDF file output from a particle dispersion model (GNOME). As it is a particle dispersion model, I have every particle identified by a particle id variable:
int id(data) ;
id:description = "particle ID" ;
id:units = "1" ;
I need to extract only some specific particle id and their locations. I have tried with cdo and nco operators and I get these errors:
- ncks -v longitude,latitude -d id,62001. infile.nc outputfile.nc ncks: ERROR dimension id is not in input file
- cdo -select,name=latitude,longitude,id=62968 infile.nc outputfile.nc cdo select (Abort): Unsupported selection keyword: 'id'!
I hope someone could help me. Thanks