Displaying 1 result from an estimated 1 matches for "lat_val".
Did you mean:
last_val
2011 Jun 17
0
Inconsistent results from var.get.nc in RNetCDF
...alid_max = 6000 ;
-----
I am getting behavior I don't understand when I use the var.get.nc
function from the RNetCDF package.
For example, when I attempt to extract 82 values beginning at stval
from the maximum temperature data with
> var.get.nc(p8m.tmax,'tmax', start=c(lon_val, lat_val, stval),
count=c(1,1,82))
I get
Error: Invalid argument
But after successfully running
> var.get.nc(p8m.tmax,'tmax', start=c(lon_val, lat_val, stval),
count=c(1,1,80))
> var.get.nc(p8m.tmax,'tmax', start=c(lon_val, lat_val, stval),
count=c(1,1,81))
the command with...