I downloaded a Daymet netcdf4 file with national daily precip data for 2020 and have been attempting to spatially subset the file using ncks. I can open the original netcdf file in Panoply and ncdump -h with the following output: c:\nco>ncdump -h prcp_2020.nc netcdf prcp_2020 { dimensions: x = 7814 ; y = 8075 ; time = UNLIMITED ; // (365 currently) nv = 2 ; variables: float x(x) ; x:units = "m" ; x:long_name = "x coordinate of projection" ; x:standard_name = "projection_x_coordinate" ; float y(y)...
Thanks!
I have a netcdf file with daily snowfall across an area on a 1 km grid for a 5 year period. I would like to sum all the daily snowfalls in the file. If I use the following: ncra -v snowfall -y ttl snowfall__5_years.nc sum.nc Do I get the daily sum of snowfalls or do I get the average of the daily sums? Thanks.