Displaying 2 results from an estimated 2 matches for "nc_char".
Did you mean:
c_char
2002 Feb 14
1
netCDF
...netCDF_1.5.tar.gz
Perhaps you might include these hints in the README (which refers
to a Makefile that does not exist) in a future version.
Now, at using it, I've found the following problem:
> npp <- open.netCDF("npp.nc")
> a <- read.netCDF(npp)
Error: Can't handle NC_CHAR yet
> summary.netCDF(npp)
netCDF file npp.nc is open
$types
[1] "single" "single" "single" "single" "single" "char" "single"
"single"
[9] "single"
$dims
etc.
Do you plan to release a version supporting...
2010 Sep 23
1
strange behaviour of callNextMethod in S4 methods
...variable,object)
standardGeneric("ncputVar"))
Define a 1st method for class Source:
setMethod("ncputVar",signature(nc="NetCDF",variable="ANY",object="Source"),
def=function(nc,variable,object)
{
att.put.nc(nc,variable,"nom","NC_CHAR",object at nom)
att.put.nc(nc,variable,"dom","NC_CHAR",object at dom)
att.put.nc(nc,variable,"loc","NC_CHAR",object at loc)
att.put.nc(nc,variable,"time","NC_CHAR",object at time)
}
)
Define an inherited method for class...