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. 
ucar.nc2.dods OpenDAP-netCDF library. 
ucar.nc2.dt Scientific data types package. 
ucar.nc2.dt.point Scientific data type "Point", collections of point observation data. 
ucar.nc2.dt.trajectory Scientific data type "Trajectory". 
ucar.nc2.ft.point package ucar.nc2.ft.point : Implementation of Point Feature Types 
ucar.nc2.ft.point.standard package ucar.nc2.ft.point.standard : Standard Implementation of Point Feature Types 
ucar.nc2.iosp General classes for I/O Service Providers 
ucar.nc2.iosp.adde IOSP for ADDE servers 
ucar.nc2.iosp.bufr I/O Service Provider for BUFR format files 
ucar.nc2.iosp.gempak   
ucar.nc2.iosp.misc Miscellaneous IOSPs. 
ucar.nc2.iosp.noaa   
ucar.nc2.stream   
 

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
 

Fields in ucar.nc2 declared as Structure
protected  Structure Variable.parent
           
 

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(List<String> memberNames)
          Create a subset of the Structure consisting only of the given member variables
 Structure Structure.select(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, List<Variable> varlist, Structure recordVar, List<FileWriter.FileWriterProgressListener> progressListeners)
          Write data from varList into new file.
static double FileWriter.copyVarData(NetcdfFileWriteable ncfile, List<Variable> varlist, Structure recordVar, long delay)
          Deprecated.  
protected  StructureDataIterator NetcdfFile.getStructureIterator(Structure s, int bufferSize)
           
 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, String shortName)
           
Structure(NetcdfFile ncfile, Group group, Structure parent, String shortName)
           
Structure(Structure from)
          Copy constructor.
Variable(NetcdfFile ncfile, Group group, Structure parent, String shortName)
          Create a Variable.
Variable(NetcdfFile ncfile, Group group, Structure parent, String shortName, DataType dtype, 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.
 

Fields in ucar.nc2.dataset declared as Structure
protected  Structure StructureDS.orgVar
           
 

Methods in ucar.nc2.dataset that return Structure
 Structure StructurePseudo2Dim.select(List<String> memberNames)
           
 Structure StructureDS.select(List<String> memberNames)
           
 Structure StructurePseudoDS.select(List<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, String shortName, String dims, String units, String desc)
          Constructor when theres no underlying variable.
StructureDS(NetcdfDataset ds, Group group, Structure parent, String shortName, Structure orgVar)
          Wrap the given Structure, making it into a StructureDS.
VariableDS(Group group, Structure parent, 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, String shortName, DataType dataType, String dims, String units, String desc)
          Constructor when there's no underlying variable.
 

Uses of Structure in ucar.nc2.dods
 

Subclasses of Structure in ucar.nc2.dods
 class DODSStructure
          A DODS Structure.
 

Uses of Structure in ucar.nc2.dt
 

Constructors in ucar.nc2.dt with parameters of type Structure
DatatypeIterator(Structure struct, int bufferSize)
           
 

Uses of Structure in ucar.nc2.dt.point
 

Methods in ucar.nc2.dt.point that return Structure
 Structure RecordDatasetHelper.getRecordVar()
          Deprecated.  
 

Uses of Structure in ucar.nc2.dt.trajectory
 

Fields in ucar.nc2.dt.trajectory declared as Structure
protected  Structure SingleTrajectoryObsDataset.recordVar
          Deprecated.  
protected  Structure UnidataTrajectoryObsDataset2.recordVar
           
protected  Structure TrajectoryObsDatasetImpl.recordVar
          Deprecated. _more_
protected  Structure MultiTrajectoryObsDataset.recordVar
          Deprecated.  
 

Uses of Structure in ucar.nc2.ft.point
 

Methods in ucar.nc2.ft.point that return Structure
 Structure RecordDatasetHelper.getRecordVar()
           
 

Constructors in ucar.nc2.ft.point with parameters of type Structure
StructureDataIteratorIndexed(Structure s, List<Integer> index)
           
StructureDataIteratorLinked(Structure s, int firstRecord, int numRecords, String linkVarName)
           
 

Uses of Structure in ucar.nc2.ft.point.standard
 

Methods in ucar.nc2.ft.point.standard that return Structure
static Structure Evaluator.getNestedStructure(Structure s)
           
static Structure Evaluator.getStructureWithDimensions(NetcdfDataset ds, Dimension dim0, Dimension dim1)
           
 

Methods in ucar.nc2.ft.point.standard with parameters of type Structure
static String Evaluator.getNameOfVariableWithAttribute(Structure struct, String attName, String attValue)
           
static Structure Evaluator.getNestedStructure(Structure s)
           
static Variable Evaluator.getVariableWithAttribute(Structure struct, String attName, String attValue)
           
 

Uses of Structure in ucar.nc2.iosp
 

Methods in ucar.nc2.iosp with parameters of type Structure
 StructureDataIterator AbstractIOServiceProvider.getStructureIterator(Structure s, int bufferSize)
           
 StructureDataIterator IOServiceProvider.getStructureIterator(Structure s, int bufferSize)
           
 

Uses of Structure in ucar.nc2.iosp.adde
 

Constructors in ucar.nc2.iosp.adde with parameters of type Structure
AddeVariable(NetcdfDataset ncfile, Structure parentStructure, String shortName, DataType dataType, String dims, String units, String desc, int nparam)
           
 

Uses of Structure in ucar.nc2.iosp.bufr
 

Methods in ucar.nc2.iosp.bufr with parameters of type Structure
 void BufrIosp.compare(Structure obs)
           
 StructureDataIterator BufrIosp.getStructureIterator(Structure s, int bufferSize)
          Get the structure iterator
 ArrayStructure MessageUncompressedDataReader.readEntireMessage(Structure s, Message proto, Message m, RandomAccessFile raf, Formatter f)
          Read all datasets from a single message
 ArrayStructure MessageCompressedDataReader.readEntireMessage(Structure s, Message proto, Message m, RandomAccessFile raf, Formatter f)
          Read all datasets from a single message
 

Uses of Structure in ucar.nc2.iosp.gempak
 

Methods in ucar.nc2.iosp.gempak that return Structure
protected  Structure GempakStationFileIOSP.makeStructure(String partName, List dimensions, boolean includeMissing)
          Make a structure for the part
 

Methods in ucar.nc2.iosp.gempak with parameters of type Structure
protected  Sequence GempakSoundingIOSP.makeSequence(Structure parent, String partName, boolean includeMissing)
          Make a Sequence for the part
 

Uses of Structure in ucar.nc2.iosp.misc
 

Methods in ucar.nc2.iosp.misc with parameters of type Structure
 StructureDataIterator Uspln.getStructureIterator(Structure s, int bufferSize)
          Get the structure iterator
 StructureDataIterator Nldn.getStructureIterator(Structure s, int bufferSize)
          Get the structure iterator
protected  Variable AbstractLightningIOSP.makeLightningVariable(NetcdfFile ncfile, Group group, Structure seq, String name, DataType dataType, String dims, String longName, String cfName, String units, AxisType type)
          Make lightning variables
 

Uses of Structure in ucar.nc2.iosp.noaa
 

Methods in ucar.nc2.iosp.noaa with parameters of type Structure
 StructureDataIterator Ghcnm.getStructureIterator(Structure s, int bufferSize)
          Get the structure iterator
 StructureDataIterator Ghcnm2.getStructureIterator(Structure s, int bufferSize)
           
 StructureDataIterator IgraPor.getStructureIterator(Structure s, int bufferSize)
           
 

Uses of Structure in ucar.nc2.stream
 

Methods in ucar.nc2.stream with parameters of type Structure
protected  StructureDataIterator CdmRemote.getStructureIterator(Structure s, int bufferSize)
           
 



Copyright © 1999-2011 UCAR/Unidata. All Rights Reserved.