0

I have a single netcdf file with monthly precipitation data from 1998-2016. The extent of the file is (14.75,-90.5,15.75,-88.75) with a cell size of 0.25 by 0.25. So 8 columns and 5 rows. How can I make time series graphs using NCO for specific cells or for the whole extent?

marie_r
  • 67
  • 1
  • 7

1 Answers1

1

A timeseries for each point can be extracted with, e.g.,

ncks -d lat,15.0 -d lon,-90.3 in.nc out.nc

The whole extent can be averaged with

ncwa in.nc out.nc

The manual ably answers these questions.

Charlie Zender
  • 5,929
  • 14
  • 19