Displaying 1 result from an estimated 1 matches for "rhumobj".
Did you mean:
rhumba
2011 Jul 14
1
Error: "non-numeric argument to binary operator"
...each file separately:
# get attributes, read the rhum data cube,
# extract the time series from the cube,
# and rescale the time series vector
#
scaleFact = att.get.ncdf(Conn42,"rhum","scale_factor")
offset = att.get.ncdf(Conn42,"rhum","add_offset")
rhumObj = get.var.ncdf(Conn42,"rhum");
#
# the Relative Humidity data 'cube' has 4 dimensions:
# latitudes (4), longitudes (3), pressure levels (1),
# and time (days - several thousand)
#
rhCube = array(rhumObj,dim = c(4,3,file42YrRangeDays))
rh42Vec = (((rhCube[2,2,1:fil...