Uses of Class
ucar.nc2.Structure

Packages that use Structure
ucar.ma2 Multidimensional arrays of primitives and objects with data stored in memory. 
ucar.nc2 The public API to the Java-NetCDF library. 
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
 

Uses of Structure in ucar.ma2
 

Methods in ucar.ma2 with parameters of type Structure
static ArrayStructureMA ArrayStructureMA.factoryMA(Structure from, int[] shape)
          Create an ArrayStructure for a Structure.
 

Uses of Structure in ucar.nc2
 

Subclasses of Structure in ucar.nc2
 class Sequence
          Sequence is a one-dimensional Structure with indeterminate length.
 class StructurePseudo
          Deprecated. use ucar.nc2.dataset.StructurePseudoDS
 

Methods in ucar.nc2 that return Structure
 Structure VariableIF.getParentStructure()
           
 Structure Variable.getParentStructure()
          Get the parent Variable if this is a member of a Structure, or null if its not.
 Structure Structure.select(java.util.List<java.lang.String> memberNames)
          Create a subset of the Structure consisting only of the given member variables
 Structure Structure.select(java.lang.String varName)
          Create a subset of the Structure consisting only of the one member variable
 

Methods in ucar.nc2 with parameters of type Structure
static double FileWriter.copyVarData(NetcdfFileWriteable ncfile, java.util.List<Variable> varlist, Structure recordVar, java.util.List<FileWriter.FileWriterProgressListener> progressListeners)
          Write data from varList into new file.
static double FileWriter.copyVarData(NetcdfFileWriteable ncfile, java.util.List<Variable> varlist, Structure recordVar, long delay)
          Deprecated.  
 void Variable.setParentStructure(Structure parent)
          Set the parent structure.
 void FileWriter.setRecordVariable(Structure recordVar)
          Read record data from here (when finish is called).
 

Constructors in ucar.nc2 with parameters of type Structure
Sequence(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName)
           
Structure(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName)
           
Variable(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName)
          Create a Variable.
Variable(NetcdfFile ncfile, Group group, Structure parent, java.lang.String shortName, DataType dtype, java.lang.String dims)
          Create a Variable.
 

Uses of Structure in ucar.nc2.dataset
 

Subclasses of Structure in ucar.nc2.dataset
 class SequenceDS
          Enhance sequence
 class StructureDS
          An "enhanced" Structure.
 class StructurePseudo2Dim
          Make a collection of variables with the same 2 outer dimensions into a fake 2D Structure(outer,inner)
 class StructurePseudoDS
          Make a collection of variables with the same outer dimension into a fake Structure.
 

Methods in ucar.nc2.dataset that return Structure
 Structure StructurePseudoDS.select(java.util.List<java.lang.String> memberNames)
           
 Structure StructurePseudo2Dim.select(java.util.List<java.lang.String> memberNames)
           
 Structure StructureDS.select(java.util.List<java.lang.String> memberNames)
           
 

Constructors in ucar.nc2.dataset with parameters of type Structure
StructureDS(Group g, Structure orgVar)
          Create a StructureDS thats wraps a Structure
StructureDS(NetcdfDataset ds, Group group, Structure parentStructure, java.lang.String shortName, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when theres no underlying variable.
StructureDS(NetcdfDataset ds, Group group, Structure parent, java.lang.String shortName, Structure orgVar)
          Wrap the given Structure, making it into a StructureDS.
VariableDS(Group group, Structure parent, java.lang.String shortName, Variable orgVar)
          Make a new VariableDS, delegate data reading to the original variable, but otherwise dont take any info from it.
VariableDS(NetcdfDataset ds, Group group, Structure parentStructure, java.lang.String shortName, DataType dataType, java.lang.String dims, java.lang.String units, java.lang.String desc)
          Constructor when there's no underlying variable.