[Home] Type Unidata.NetCDF.DataGroup


A dataset, which can be either a datafile or a subgroup of a datafile. The NetCDF.DesignTime.DataFileProvider generates erased subtypes of this class that have named properties for the contained subgroups and variables with specialized types.

Type Description

type DataGroup

Constructors

MemberDescription
new DataGroup (ncid)
ncid: int ref
returns : DataGroup

Instance Members

MemberDescription
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

See Also

Unidata.NetCDF


Documentation for assembly Unidata.NetCDF, version 1.0.5002.0, generated using the F# Programming Power Pack