This class is a basic ancestor to all classes that contain data from a netCDF resource, specifically data variables and axes. More useful classes use this class as ancestor.
Super class
ncdfCF::CFObject -> CFData
Active bindings
data_typeSet or retrieve the data type of the data in the object. Setting the data type to a wrong value can have unpredictable and mostly catastrophic consequences.
ndims(read-only) Retrieve the dimensionality of the data in the array.
NC_mapReturns a list with columns "start" and "count" giving the indices for reading the data of this object from a netCDF resource. The list is empty if this object is not backed by a netCDF resource.
Methods
Method new()
Create a new CFData instance. This method is called upon
creating CF objects, such as when opening a netCDF resource or creating
a new CF object. It is rarely, if ever, useful to call this constructor
directly. Instead, use the methods from higher-level classes such as
CFVariable.
Usage
CFData$new(
obj,
group,
values,
start = 1L,
count = NA,
attributes = data.frame()
)Arguments
objThe NCVariable instance upon which this CF object is based when read from a netCDF resource, or the name for the new CF object to be created.
groupThe CFGroup that this instance will live in.
valuesOptional. The values of the object in an array. Ignored when argument
objis anNCVariableinstance.startOptional. Vector of indices where to start reading data along the dimensions of the array on file. The vector must be
NAto read all data, otherwise it must have agree with the dimensions of the array on file. Default value is1, i.e. start from the beginning of the 1-D NC variable. Ignored when argumentobjis not anNCVariableinstance.countOptional. Vector of number of elements to read along each dimension of the array on file. The vector must be
NAto read to the end of each dimension, otherwise its value must agree with the correspondingstartvalue and the dimension of the array on file. Default isNA. Ignored when argumentobjis not anNCVariableinstance.attributesOptional. A
data.framewith the attributes of the object.
Method detach()
Detach the current object from its underlying netCDF resource. If necessary, data is read from the resource before detaching.
Method dim()
Retrieve the dimensions of the data of this object.