Member | Description |
dataGroup.DefChild (name) |
Defines a new child group of the dataset.
name: string
returns : DataGroup |
dataGroup.DefDimension (name, length) |
Defines a new dimension in the dataset.
name: string
length: uint64
returns : Dimension |
dataGroup.DefVariable (name, nct, dims) |
Defines a new variable in the dataset.
name: string
nct: NetCDFType
dims: Dimension []
returns : Variable |
dataGroup.GetAttribute (name) |
Retrieves a single global attribute of the dataset.
name: string
returns : obj |
dataGroup.GetAttributes () |
Retrieves all global attributes of the dataset by name.
returns : (string * obj) [] |
dataGroup.GetChild (name) |
Retrieves a child group of the dataset by name.
name: string
returns : DataGroup option |
dataGroup.GetChildren () |
Retrieves all child groups of the dataset.
returns : DataGroup [] |
dataGroup.GetDimension (name) |
Reifies a single dimension in the dataset specified by name.
name: string
returns : Dimension |
dataGroup.GetDimensions () |
Reifies all dimensions in the dataset.
returns : Dimension [] |
dataGroup.GetParent () |
Retrieves the parent of this dataset, if any.
returns : DataGroup option |
dataGroup.GetVariable (name) |
Reifies a single variable in the dataset specified by name.
name: string
returns : Variable |
dataGroup.GetVariables () |
Reifies all variables in the dataset.
returns : Variable [] |
dataGroup.Name : string |
The symbolic name of the dataset.
|
dataGroup.Path : string |
The full path of the dataset in the containing datafile.
|
dataGroup.SetAttribute (name, v) |
Sets a single global attribute of the dataset by name
name: string
v: '?4852
returns : unit |
dataGroup.ncid : int | |