Uses of Class
ucar.nc2.Variable

Packages that use Variable
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.dataset.conv Parses the information in netCDF datasets using Conventions, and extracts information about coordinate systems. 
ucar.nc2.dataset.transform Pluggable framework for handling Coordinate Transforms, both Projections and Vertical. 
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.radial Scientific data type "Radial", uses spherical coordinate system. 
ucar.nc2.dt.trajectory Scientific data type "Trajectory". 
ucar.nc2.ft.coordsys   
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.ft.point.standard.plug package ucar.nc2.ft.point.plug : Pluggable AAnalysers of Point Feature Type datasets 
ucar.nc2.ft.radial   
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.cinrad I/O Service Provider for chinese met radar files 
ucar.nc2.iosp.dmsp I/O Service Provider for DMSP format files 
ucar.nc2.iosp.dorade I/O Service Provider for Dorade format files 
ucar.nc2.iosp.fysat   
ucar.nc2.iosp.gempak   
ucar.nc2.iosp.gini I/O Service Provider for GINI format files 
ucar.nc2.iosp.grib I/O Service Provider for GRIB-1 and GRIB-2 format files 
ucar.nc2.iosp.grid   
ucar.nc2.iosp.hdf4 I/O Service Provider for HDF-4 format files 
ucar.nc2.iosp.hdf5 I/O Service Provider for HDF-5 and netCDF-4 format files 
ucar.nc2.iosp.mcidas   
ucar.nc2.iosp.misc Miscellaneous IOSPs. 
ucar.nc2.iosp.netcdf3 I/O Service Provider for NetCDF-3 format files 
ucar.nc2.iosp.nexrad2 I/O Service Provider for NEXRAD level 2 format files 
ucar.nc2.iosp.nids I/O Service Provider for NIDS (Nexrad level 3) format files 
ucar.nc2.iosp.uamiv   
ucar.nc2.iosp.uf   
ucar.nc2.ncml Netcdf Markup Language (NcML) Implementation classes see NcML home page 
ucar.nc2.stream   
ucar.nc2.util Miscellaneous utility classes. 
ucar.unidata.geoloc.vertical Implementations of vertical coordinate transformations. 
 

Uses of Variable in ucar.nc2
 

Subclasses of Variable in ucar.nc2
 class Sequence
          Sequence is a one-dimensional Structure with indeterminate length.
 class Structure
          A Structure is a type of Variable that contains other Variables, like a struct in C.
 class StructurePseudo
          Make a collection of variables with the same outer dimension into a fake Structure.
 

Fields in ucar.nc2 declared as Variable
 Variable ParsedSectionSpec.v
           
 

Fields in ucar.nc2 with type parameters of type Variable
protected  java.util.HashMap<java.lang.String,Variable> Structure.memberHash
           
protected  java.util.List<Variable> Structure.members
           
protected  java.util.List<Variable> NetcdfFile.variables
           
protected  java.util.List<Variable> Group.variables
           
 

Methods in ucar.nc2 that return Variable
 Variable Structure.addMemberVariable(Variable v)
          Add a member variable
 Variable NetcdfFile.addStringVariable(Group g, java.lang.String shortName, java.lang.String dims, int strlen)
          Create a new Variable of type Datatype.CHAR, and add to the given group.
 Variable NetcdfFileWriteable.addStringVariable(java.lang.String varName, java.util.List<Dimension> dims, int max_strlen)
          Add a variable with DataType = String to the file.
 Variable NetcdfFile.addVariable(Group g, java.lang.String shortName, DataType dtype, java.lang.String dims)
          Create a new Variable, and add to the given group.
 Variable NetcdfFile.addVariable(Group g, Variable v)
          Add a Variable to the given group.
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, java.lang.Class componentType, Dimension[] dims)
          Deprecated. use addVariable(String varName, DataType dataType, ArrayList dims);
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, Dimension[] dims)
          Add a variable to the file.
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, java.util.List<Dimension> dims)
          Add a variable to the file.
 Variable NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, java.lang.String dims)
          Add a variable to the file.
protected  Variable Variable.copy()
           
protected  Variable Structure.copy()
           
 Variable NetcdfFile.findTopVariable(java.lang.String name)
          Retrieve the Variable with the specified (full) name, which is not a member of a Structure.
 Variable Structure.findVariable(java.lang.String shortName)
          Find the Variable member with the specified (short) name.
 Variable NetcdfFile.findVariable(java.lang.String fullNameEscaped)
          Find a Variable, with the specified (full) name.
 Variable Group.findVariable(java.lang.String varShortName)
          Find the Variable with the specified (short) name in this group.
 Variable Group.findVariableOrInParent(java.lang.String varShortName)
          Find the Variable with the specified (short) name in this group or a parent group.
 Variable NetcdfFileWriteable.renameVariable(java.lang.String oldName, java.lang.String newName)
          Rename a Variable.
 Variable VariableIF.section(java.util.List<Range> ranges)
           
 Variable Variable.section(java.util.List<Range> ranges)
          Create a new Variable that is a logical subsection of this Variable.
 Variable Variable.section(Section subsection)
          Create a new Variable that is a logical subsection of this Variable.
 Variable Sequence.section(Section subsection)
          UnsupportedOperation
 Variable Variable.setImmutable()
          Make this immutable.
 Variable Structure.setImmutable()
           
 Variable Variable.slice(int dim, int value)
          Create a new Variable that is a logical slice of this Variable, by fixing the specified dimension at the specified index value.
 Variable Sequence.slice(int dim, int value)
          UnsupportedOperation
 

Methods in ucar.nc2 that return types with arguments of type Variable
 java.util.List<Variable> Dimension.getCoordinateVariables()
          Deprecated. - do not use
 java.util.List<Variable> Structure.getVariables()
          Get the variables contained directly in this Structure.
 java.util.List<Variable> NetcdfFile.getVariables()
          Get all of the variables in the file, in all groups.
 java.util.List<Variable> Group.getVariables()
          Get the Variables contained directly in this group.
 

Methods in ucar.nc2 with parameters of type Variable
 void Dimension.addCoordinateVariable(Variable v)
          Deprecated. - do not use
 Variable Structure.addMemberVariable(Variable v)
          Add a member variable
 Variable NetcdfFile.addVariable(Group g, Variable v)
          Add a Variable to the given group.
 void Group.addVariable(Variable v)
          Add a Variable
 Attribute NetcdfFile.addVariableAttribute(Variable v, Attribute att)
          Add a variable attribute.
 java.lang.String NetcdfFile.findAttValueIgnoreCase(Variable v, java.lang.String attName, java.lang.String defaultValue)
          Find a String-valued global or variable Attribute by Attribute name (ignore case), return the Value of the Attribute.
protected static java.lang.String NetcdfFile.makeFullName(Group parent, Variable v)
           
protected static java.lang.String NetcdfFile.makeFullNameEscaped(Group parent, Variable v)
           
static java.lang.String ParsedSectionSpec.makeSectionSpecString(Variable v, java.util.List<Range> ranges)
          Make section specification String from a range list for a Variable.
static java.lang.String NCdumpW.printVariableDataSection(Variable v, java.lang.String sectionSpec, CancelTask ct)
          Print a section of the data of the given Variable.
 Array ProxyReader.read(Variable mainv, CancelTask cancelTask)
          Read all the data for a Variable.
 Array ProxyReader.read(Variable mainv, Section section, CancelTask cancelTask)
          Read a section of the data for a Variable.
 double NetcdfFile.readAttributeDouble(Variable v, java.lang.String attName, double defValue)
           
 int NetcdfFile.readAttributeInteger(Variable v, java.lang.String attName, int defValue)
           
protected  Array NetcdfFile.readData(Variable v, Section ranges)
           
protected  long NetcdfFile.readToByteChannel(Variable v, Section section, java.nio.channels.WritableByteChannel wbc)
          Read data from a top level Variable and send data to a WritableByteChannel.
 boolean Group.remove(Variable v)
          Remove a Variable : uses the variable hashCode to find it.
 boolean StructurePseudo.removeMemberVariable(Variable v)
           
 boolean Structure.removeMemberVariable(Variable v)
          Remove a Variable : uses the Variable name to find it.
 boolean Structure.replaceMemberVariable(Variable newVar)
          Replace a Variable with another that has the same name : uses the variable name to find it.
 void NetcdfFileWriteable.updateAttribute(Variable v2, Attribute att)
          Update the value of an existing attribute.
 void FileWriter.writeVariable(Variable oldVar)
          Add a Variable to the file.
 

Method parameters in ucar.nc2 with type arguments of type Variable
static double FileWriter.copyVarData(NetcdfFileWriteable ncfile, java.util.List<Variable> varlist, Structure recordVar, long delay)
          Write data from varList into new file.
 java.util.List<Array> NetcdfFile.readArrays(java.util.List<Variable> variables)
          Do a bulk read on a list of Variables and return a corresponding list of Array that contains the results of a full read on each Variable.
 void Structure.setMemberVariables(java.util.List<Variable> vars)
          Set the list of member variables.
 void FileWriter.writeVariables(java.util.List<Variable> varList)
          Add a list of Variables to the file.
 

Constructors in ucar.nc2 with parameters of type Variable
Variable(Variable from)
          Copy constructor.
 

Uses of Variable in ucar.nc2.dataset
 

Subclasses of Variable in ucar.nc2.dataset
 class CoordinateAxis
          A Coordinate Axis is a Variable that specifies one of the coordinates of a CoordinateSystem.
 class CoordinateAxis1D
          A 1-dimensional Coordinate Axis.
 class CoordinateAxis1DTime
          A 1-dimensional Coordinate Axis representing Calendar time.
 class CoordinateAxis2D
          A 2-dimensional numeric Coordinate Axis.
 class StructureDS
          An "enhanced" Structure.
 class VariableDS
          An wrapper around a Variable, creating an "enhanced" Variable.
 

Fields in ucar.nc2.dataset declared as Variable
protected  Variable VariableDS.orgVar
           
 Variable CoordSysBuilder.VarProcess.v
           
 

Methods in ucar.nc2.dataset that return Variable
 Variable NetcdfDataset.addVariable(Group g, Variable v)
           
protected  Variable VariableDS.copy()
           
protected  Variable StructureDS.copy()
           
protected  Variable CoordinateAxis2D.copy()
           
protected  Variable CoordinateAxis1DTime.copy()
           
protected  Variable CoordinateAxis1D.copy()
           
protected  Variable CoordinateAxis.copy()
           
 Variable VariableEnhanced.getOriginalVariable()
           
 Variable VariableDS.getOriginalVariable()
          A VariableDS usually wraps another Variable.
 Variable StructureDS.getOriginalVariable()
          A StructureDS may wrap another Structure.
 

Methods in ucar.nc2.dataset with parameters of type Variable
 Variable NetcdfDataset.addVariable(Group g, Variable v)
           
protected  boolean CoordSysBuilder.isCoordinateAxisForVariable(Variable axis, VariableEnhanced v)
          Does this axis "fit" this variable.
 CoordinateTransform CoordTransBuilderIF.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
          Make a CoordinateTransform from a Coordinate Transform Variable.
protected  CoordinateTransform CoordSysBuilder.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
static CoordinateTransform CoordTransBuilder.makeCoordinateTransform(NetcdfDataset ds, Variable ctv, java.util.Formatter parseInfo, java.util.Formatter errInfo)
          Make a CoordinateTransform object from the paramaters in a Coordinate Transform Variable, using an intrinsic or registered CoordTransBuilder.
static java.util.List<Dimension> CoordinateSystem.makeDomain(Variable[] axes)
           
 boolean ReplaceVariableCheck.replace(Variable v)
           
 void VariableEnhanced.setOriginalVariable(Variable orgVar)
           
 void VariableDS.setOriginalVariable(Variable orgVar)
          Set the Variable to wrap.
 void StructureDS.setOriginalVariable(Variable orgVar)
          Set the Structure to wrap.
 void NetcdfDataset.setValues(Variable v, int npts, double start, double incr)
          Generate the list of values from a starting value and an increment.
 void NetcdfDataset.setValues(Variable v, java.util.List<java.lang.String> values)
          Set the data values from a list of Strings.
static void DatasetConstructor.transferVariableAttributes(Variable src, Variable target)
          Copy attributes from src to target, skip ones that already exist (by name)
 

Constructors in ucar.nc2.dataset with parameters of type Variable
VariableDS(Group group, Structure parent, java.lang.String shortName, Variable orgVar)
          Wrap the given Variable, making it into a VariableDS.
VariableDS(Group g, Variable orgVar, boolean enhance)
          Wrap the given Variable, making it into a VariableDS.
 

Uses of Variable in ucar.nc2.dataset.conv
 

Methods in ucar.nc2.dataset.conv with parameters of type Variable
protected  boolean CSMConvention.addParameter2(CoordinateTransform rs, java.lang.String paramName, NetcdfFile ds, Variable v, java.lang.String attName, boolean readData)
          Add a Parameter to a CoordinateTransform.
protected  double M3IOVGGridConvention.getMissingDataValue(Variable unused)
           
protected  boolean M3IOVGGridConvention.hasMissingData(Variable v)
           
protected  CoordinateTransform CSMConvention.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 

Uses of Variable in ucar.nc2.dataset.transform
 

Methods in ucar.nc2.dataset.transform with parameters of type Variable
static double AbstractCoordTransBuilder.getFalseEastingScaleFactor(NetcdfDataset ds, Variable ctv)
           
protected  java.lang.String AbstractCoordTransBuilder.getFormula(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform WRFEtaTransformBuilder.makeCoordinateTransform(NetcdfDataset ds, Variable v)
           
 CoordinateTransform VOceanSigma.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VOceanSG2.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VOceanSG1.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VOceanS.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VExplicitField.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VerticalPerspective.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VAtmSigma.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VAtmLnPressure.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VAtmHybridSigmaPressure.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform VAtmHybridHeight.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
          Make the CoordinateTransform from the dataset
 CoordinateTransform UTM.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform TransverseMercator.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform Stereographic.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform RotatedPole.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform RotatedLatLon.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform PolarStereographic.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform Orthographic.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform Mercator.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform LambertConformalConic.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform LambertAzimuthal.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform FlatEarth.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
 CoordinateTransform AlbersEqualArea.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
           
protected  double AbstractCoordTransBuilder.readAttributeDouble(Variable v, java.lang.String attname, double defValue)
          Read a variable attribute as a double.
 

Uses of Variable in ucar.nc2.dods
 

Subclasses of Variable in ucar.nc2.dods
 class DODSGrid
          A DODS Grid.
 class DODSStructure
          A DODS Structure.
 class DODSVariable
          A read-only DODS-netCDF Variable.
 

Methods in ucar.nc2.dods that return Variable
protected  Variable DODSVariable.copy()
           
protected  Variable DODSStructure.copy()
           
protected  Variable DODSGrid.copy()
           
 

Methods in ucar.nc2.dods with parameters of type Variable
 Array ConvertD2N.convertNestedVariable(Variable v, java.util.List<Range> section, ucar.nc2.dods.DodsV dataV, boolean flatten)
          Convert a DataDDS into an Array for a Structure member variable.
 Array ConvertD2N.convertTopVariable(Variable v, java.util.List<Range> section, ucar.nc2.dods.DodsV dataV)
          Convert a DataDDS into an Array for a top level variable, ie not a Structure member variable.
static java.lang.String DODSNetcdfFile.getDODSshortName(Variable var)
           
protected  Array DODSNetcdfFile.readData(Variable v, Section section)
           
 long DODSNetcdfFile.readToByteChannel(Variable v, Section section, java.nio.channels.WritableByteChannel channel)
           
 Array DODSNetcdfFile.readWithCE(Variable v, java.lang.String CE)
           
 

Method parameters in ucar.nc2.dods with type arguments of type Variable
 java.util.List<Array> DODSNetcdfFile.readArrays(java.util.List<Variable> preloadVariables)
          Make a single call to the DODS Server to read all the named variable's data in one client/server roundtrip.
 

Uses of Variable in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return Variable
 Variable RadialDatasetSweep.Sweep.getsweepVar()
           
 

Uses of Variable in ucar.nc2.dt.point
 

Fields in ucar.nc2.dt.point declared as Variable
protected  Variable SequenceHelper.altVar
           
protected  Variable DapperDataset.altVar
           
protected  Variable SequenceHelper.latVar
           
protected  Variable DapperDataset.latVar
           
protected  Variable SequenceHelper.lonVar
           
protected  Variable DapperDataset.lonVar
           
protected  Variable SequenceHelper.timeVar
           
protected  Variable DapperDataset.timeVar
           
 

Methods in ucar.nc2.dt.point that return Variable
static Variable UnidataObsDatasetHelper.findVariable(NetcdfFile ds, java.lang.String name)
           
static Variable UnidataObsDatasetHelper.getCoordinate(NetcdfDataset ds, AxisType a)
          Tries to find the coordinate variable of the specified type.
 

Methods in ucar.nc2.dt.point with parameters of type Variable
protected  double PointObsDatasetImpl.getTime(Variable timeVar, StructureData sdata)
           
 

Constructors in ucar.nc2.dt.point with parameters of type Variable
SequenceHelper(NetcdfDataset ncfile, boolean isProfile, StructureDS sequenceOuter, StructureDS sequenceInner, Variable latVar, Variable lonVar, Variable altVar, Variable timeVar, java.util.List typedDataVariables, java.lang.StringBuffer errBuffer)
          Constructor.
 

Uses of Variable in ucar.nc2.dt.radial
 

Methods in ucar.nc2.dt.radial with parameters of type Variable
protected  void UF2Dataset.addRadialVariable(NetcdfDataset nds, Variable var)
           
protected abstract  void RadialDatasetSweepAdapter.addRadialVariable(NetcdfDataset ds, Variable var)
           
protected  void Nids2Dataset.addRadialVariable(NetcdfDataset nds, Variable var)
           
protected  void Netcdf2Dataset.addRadialVariable(NetcdfDataset nds, Variable var)
           
protected  void LevelII2Dataset.addRadialVariable(NetcdfDataset nds, Variable var)
           
protected  void Dorade2Dataset.addRadialVariable(NetcdfDataset nds, Variable var)
           
protected  RadialDatasetSweep.RadialVariable UF2Dataset.makeRadialVariable(NetcdfDataset nds, VariableSimpleIF v, Variable v0)
           
protected abstract  RadialDatasetSweep.RadialVariable RadialDatasetSweepAdapter.makeRadialVariable(NetcdfDataset nds, VariableSimpleIF v, Variable v0)
           
protected  RadialDatasetSweep.RadialVariable Nids2Dataset.makeRadialVariable(NetcdfDataset nds, VariableSimpleIF v, Variable v0)
           
protected  RadialDatasetSweep.RadialVariable Netcdf2Dataset.makeRadialVariable(NetcdfDataset nds, VariableSimpleIF v, Variable v0)
           
protected  RadialDatasetSweep.RadialVariable LevelII2Dataset.makeRadialVariable(NetcdfDataset nds, VariableSimpleIF v, Variable v0)
           
protected  RadialDatasetSweep.RadialVariable Dorade2Dataset.makeRadialVariable(NetcdfDataset nds, VariableSimpleIF v, Variable v0)
           
 

Uses of Variable in ucar.nc2.dt.trajectory
 

Fields in ucar.nc2.dt.trajectory declared as Variable
protected  Variable UnidataTrajectoryObsDataset2.elevVar
           
protected  Variable SingleTrajectoryObsDataset.elevVar
           
protected  Variable SingleTrajectoryObsDataset.Config.elevVar
           
protected  Variable MultiTrajectoryObsDataset.elevVar
           
protected  Variable UnidataTrajectoryObsDataset2.latVar
           
protected  Variable SingleTrajectoryObsDataset.latVar
           
protected  Variable SingleTrajectoryObsDataset.Config.latVar
           
protected  Variable MultiTrajectoryObsDataset.latVar
           
protected  Variable UnidataTrajectoryObsDataset2.lonVar
           
protected  Variable SingleTrajectoryObsDataset.lonVar
           
protected  Variable SingleTrajectoryObsDataset.Config.lonVar
           
protected  Variable MultiTrajectoryObsDataset.lonVar
           
protected  Variable UnidataTrajectoryObsDataset2.timeVar
           
protected  Variable SingleTrajectoryObsDataset.timeVar
           
protected  Variable SingleTrajectoryObsDataset.Config.timeVar
           
protected  Variable MultiTrajectoryObsDataset.timeVar
           
protected  Variable UnidataTrajectoryObsDataset2.trajVar
           
protected  Variable MultiTrajectoryObsDataset.trajVar
           
 

Methods in ucar.nc2.dt.trajectory that return Variable
 Variable SingleTrajectoryObsDataset.Config.getElevVar()
           
 Variable SingleTrajectoryObsDataset.Config.getLatVar()
           
 Variable SingleTrajectoryObsDataset.Config.getLonVar()
           
 Variable SingleTrajectoryObsDataset.Config.getTimeVar()
           
 

Methods in ucar.nc2.dt.trajectory with parameters of type Variable
 void SingleTrajectoryObsDataset.Config.setElevVar(Variable elevVar)
           
 void SingleTrajectoryObsDataset.Config.setLatVar(Variable latVar)
           
 void SingleTrajectoryObsDataset.Config.setLonVar(Variable lonVar)
           
 void SingleTrajectoryObsDataset.Config.setTimeVar(Variable timeVar)
           
 void MultiTrajectoryObsDataset.setTrajectoryInfo(Dimension trajDim, Variable trajVar, Dimension timeDim, Variable timeVar, Variable latVar, Variable lonVar, Variable elevVar)
          Setup needed for all MultiTrajectoryObsDatatypes.
 

Constructors in ucar.nc2.dt.trajectory with parameters of type Variable
SingleTrajectoryObsDataset.Config(java.lang.String trajectoryId, Dimension timeDim, Variable timeVar, Variable latVar, Variable lonVar, Variable elevVar)
           
 

Uses of Variable in ucar.nc2.ft.coordsys
 

Methods in ucar.nc2.ft.coordsys with parameters of type Variable
 Section GeoReferencingCoordSys.mapIndex(Variable targetVar, Variable fromVar, int[] fromIndex)
           
 double GeoReferencingCoordSys.readGeoXCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readGeoYCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readGeoZCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readHeightCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readLatitudeCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readLongitudeCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readPressureCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readTimeCoord(Variable fromVar, int[] index)
           
 double GeoReferencingCoordSys.readValue(Variable targetVar, Variable fromVar, int[] index)
           
 

Uses of Variable in ucar.nc2.ft.point
 

Constructor parameters in ucar.nc2.ft.point with type arguments of type Variable
PointIteratorMultidim(java.lang.String name, java.util.List<Variable> vars, int outerIndex, PointFeatureIterator.Filter filter)
           
 

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

Methods in ucar.nc2.ft.point.standard that return Variable
 Variable Table.findVariable(java.lang.String axisName)
           
 Variable Table.TableStructure.findVariable(java.lang.String axisName)
           
 Variable Table.TableConstruct.findVariable(java.lang.String axisName)
           
 Variable Table.TableMultiDimInner.findVariable(java.lang.String axisName)
           
 Variable Table.TableNestedStructure.findVariable(java.lang.String axisName)
           
 Variable JoinParentIndex.findVariable(java.lang.String axisName)
           
 Variable JoinMuiltdimStructure.findVariable(java.lang.String axisName)
           
 Variable JoinArray.findVariable(java.lang.String varName)
           
 Variable Join.findVariable(java.lang.String varName)
          Find the Variable of the given name in the joined table.
protected  Variable TableAnalyzer.findVariableWithAttribute(java.util.List<Variable> list, java.lang.String name, java.lang.String value)
           
 

Methods in ucar.nc2.ft.point.standard that return types with arguments of type Variable
protected  java.util.List<Variable> TableAnalyzer.getStructVars(java.util.List<Variable> vars, Dimension dim)
           
 

Method parameters in ucar.nc2.ft.point.standard with type arguments of type Variable
protected  Variable TableAnalyzer.findVariableWithAttribute(java.util.List<Variable> list, java.lang.String name, java.lang.String value)
           
protected  java.util.List<Variable> TableAnalyzer.getStructVars(java.util.List<Variable> vars, Dimension dim)
           
 

Constructors in ucar.nc2.ft.point.standard with parameters of type Variable
JoinArray(Variable v, JoinArray.Type type, int param)
          Constructor.
 

Uses of Variable in ucar.nc2.ft.point.standard.plug
 

Methods in ucar.nc2.ft.point.standard.plug that return Variable
static Variable UnidataPointDatasetHelper.findVariable(NetcdfFile ds, java.lang.String name)
           
static Variable UnidataPointDatasetHelper.getCoordinate(NetcdfDataset ds, AxisType a)
          Tries to find the coordinate variable of the specified type.
 

Uses of Variable in ucar.nc2.ft.radial
 

Methods in ucar.nc2.ft.radial that return Variable
 Variable RadialSweepFeature.getSweepVar()
           
 

Uses of Variable in ucar.nc2.iosp
 

Methods in ucar.nc2.iosp with parameters of type Variable
 Array IOServiceProvider.readData(Variable v2, Section section)
          Read data from a top level Variable and return a memory resident Array.
 long IOServiceProvider.readToByteChannel(Variable v2, Section section, java.nio.channels.WritableByteChannel channel)
          Read data from a top level Variable and send data to a WritableByteChannel.
 long AbstractIOServiceProvider.readToByteChannel(Variable v2, Section section, java.nio.channels.WritableByteChannel channel)
           
 void IOServiceProviderWriter.updateAttribute(Variable v2, Attribute att)
          Update the value of an existing attribute.
 void IOServiceProviderWriter.writeData(Variable v2, Section section, Array values)
          Write data into a variable.
 

Uses of Variable in ucar.nc2.iosp.adde
 

Subclasses of Variable in ucar.nc2.iosp.adde
 class AddeVariable
          A Variable implemented through an ADDE server.
 

Uses of Variable in ucar.nc2.iosp.bufr
 

Methods in ucar.nc2.iosp.bufr with parameters of type Variable
 Array BufrIosp.readData(Variable v2, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.cinrad
 

Methods in ucar.nc2.iosp.cinrad that return Variable
 Variable Cinrad2IOServiceProvider.makeVariable(NetcdfFile ncfile, int datatype, java.lang.String shortName, java.lang.String longName, java.lang.String abbrev, java.util.List groups)
           
 

Methods in ucar.nc2.iosp.cinrad with parameters of type Variable
 Array Cinrad2IOServiceProvider.readData(Variable v2, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.dmsp
 

Methods in ucar.nc2.iosp.dmsp with parameters of type Variable
 Array DMSPiosp.readData(Variable v2, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.dorade
 

Methods in ucar.nc2.iosp.dorade with parameters of type Variable
 Array Doradeiosp.readData(Variable v2, Section section)
           
 Array Doradeiosp.readData1(Variable v2, Section section, float[] values)
           
 Array Doradeiosp.readData2(Variable v2, Section section, double[] values)
           
 

Uses of Variable in ucar.nc2.iosp.fysat
 

Methods in ucar.nc2.iosp.fysat with parameters of type Variable
 Array Fysatiosp.readCompressedData(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride)
           
 Array Fysatiosp.readCompressedZlib(Variable v2, long dataPos, int nx, int ny, int[] origin, int[] shape, int[] stride)
           
 Array Fysatiosp.readData(Variable v2, Section section)
           
 Array Fysatiosp.readDataOld(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride)
           
 

Uses of Variable in ucar.nc2.iosp.gempak
 

Methods in ucar.nc2.iosp.gempak with parameters of type Variable
 Array GempakSurfaceIOSP.readData(Variable v2, Section section)
          Read the data for the variable
 

Uses of Variable in ucar.nc2.iosp.gini
 

Methods in ucar.nc2.iosp.gini with parameters of type Variable
 Array Giniiosp.readCompressedData(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride, int[] levels)
           
 Array Giniiosp.readCompressedZlib(Variable v2, long dataPos, int nx, int ny, int[] origin, int[] shape, int[] stride, int[] levels)
           
 Array Giniiosp.readData(Variable v2, Section section)
           
 Array Giniiosp.readDataOld(Variable v2, long dataPos, int[] origin, int[] shape, int[] stride)
           
 Array Giniiosp.readNestedData(Variable v2, java.util.List section)
           
 

Uses of Variable in ucar.nc2.iosp.grib
 

Methods in ucar.nc2.iosp.grib with parameters of type Variable
 boolean GribServiceProvider.isMissingXY(Variable v2, int timeIdx, int levIdx)
          Deprecated.  
 Array GribServiceProvider.readData(Variable v2, Section section)
          Deprecated.  
 void GribServiceProvider.readLevel(Variable v2, int timeIdx, Range levelRange, Range yRange, Range xRange, IndexIterator ii)
          Deprecated.  
 void GribServiceProvider.readXY(Variable v2, int timeIdx, int levIdx, Range yRange, Range xRange, IndexIterator ii)
          Deprecated.  
 

Uses of Variable in ucar.nc2.iosp.grid
 

Methods in ucar.nc2.iosp.grid with parameters of type Variable
 boolean GridServiceProvider.isMissingXY(Variable v2, int timeIdx, int levIdx)
          Is this XY level missing?
 Array GridServiceProvider.readData(Variable v2, Section section)
          Read the data for the variable
 

Uses of Variable in ucar.nc2.iosp.hdf4
 

Methods in ucar.nc2.iosp.hdf4 with parameters of type Variable
 Array H4iosp.readData(Variable v, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.hdf5
 

Methods in ucar.nc2.iosp.hdf5 with parameters of type Variable
 Array H5iosp.readData(Variable v2, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.mcidas
 

Methods in ucar.nc2.iosp.mcidas with parameters of type Variable
 CoordinateTransform McIDASAreaTransformBuilder.makeCoordinateTransform(NetcdfDataset ds, Variable ctv)
          Make the coordinate transform
 Array AreaServiceProvider.readData(Variable v2, Section section)
          Read the data for the variable
 Array AreaReader.readVariable(Variable v2, Section section)
          Read the values for a variable
 

Uses of Variable in ucar.nc2.iosp.misc
 

Methods in ucar.nc2.iosp.misc with parameters of type Variable
 Array Uspln.readData(Variable v2, Section section)
           
 Array NmcObsLegacy.readData(Variable v, Section section)
           
 Array Nldn.readData(Variable v2, Section section)
           
 Array GtopoIosp.readData(Variable v2, Section wantSection)
           
 Array Uspln.readNestedData(Variable v2, Section section)
           
 Array NmcObsLegacy.readReport(Variable v, Section section)
           
 Array NmcObsLegacy.readReportIndex(Variable v, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.netcdf3
 

Fields in ucar.nc2.iosp.netcdf3 with type parameters of type Variable
protected  java.util.Map<Variable,N3streamWriter.Vinfo> N3streamWriter.vinfoMap
           
 

Methods in ucar.nc2.iosp.netcdf3 with parameters of type Variable
 Array N3iosp.readData(Variable v2, Section section)
           
 Array N3iosp.readNestedData(Variable v2, Section section)
           
 long N3iosp.readToByteChannel(Variable v2, Section section, java.nio.channels.WritableByteChannel channel)
           
 void N3iosp.updateAttribute(Variable v2, Attribute att)
          Update the value of an existing attribute.
 void N3iosp.writeData(Variable v2, Section section, Array values)
           
 void N3outputStreamWriter.writeNonRecordData(Variable v, java.io.DataOutputStream stream, Array data)
           
 

Method parameters in ucar.nc2.iosp.netcdf3 with type arguments of type Variable
 void N3outputStreamWriter.writeRecordData(java.io.DataOutputStream stream, java.util.List<Variable> varList)
           
 

Uses of Variable in ucar.nc2.iosp.nexrad2
 

Methods in ucar.nc2.iosp.nexrad2 that return Variable
 Variable Nexrad2IOServiceProvider.makeVariable(NetcdfFile ncfile, int datatype, java.lang.String shortName, java.lang.String longName, java.lang.String abbrev, java.util.List groups, int rd)
           
 

Methods in ucar.nc2.iosp.nexrad2 with parameters of type Variable
 Array Nexrad2IOServiceProvider.readData(Variable v2, Section section)
           
 

Uses of Variable in ucar.nc2.iosp.nids
 

Methods in ucar.nc2.iosp.nids with parameters of type Variable
 Array Nidsiosp.readData(Variable v2, Section section)
          Read the data for each variable passed in
 Array Nidsiosp.readNestedData(Variable v2, Section section)
          Read nested structure data
 

Uses of Variable in ucar.nc2.iosp.uamiv
 

Methods in ucar.nc2.iosp.uamiv with parameters of type Variable
 Array UAMIVServiceProvider.readData(Variable v2, Section wantSection)
          Read data from a top level Variable and return a memory resident Array.
 

Uses of Variable in ucar.nc2.iosp.uf
 

Methods in ucar.nc2.iosp.uf that return Variable
 Variable UFiosp.makeVariable(NetcdfFile ncfile, java.lang.String shortName, java.lang.String longName, java.lang.String abbrev, java.util.List groups)
           
 

Methods in ucar.nc2.iosp.uf with parameters of type Variable
 Array UFiosp.readData(Variable v2, Section section)
           
 

Uses of Variable in ucar.nc2.ncml
 

Methods in ucar.nc2.ncml that return Variable
protected  Variable Aggregation.findVariable(NetcdfFile ncfile, Variable mainV)
           
 

Methods in ucar.nc2.ncml with parameters of type Variable
protected  Variable Aggregation.findVariable(NetcdfFile ncfile, Variable mainV)
           
 Array AggregationUnion.read(Variable mainv, CancelTask cancelTask)
           
 Array AggregationTiled.read(Variable mainv, CancelTask cancelTask)
           
 Array AggregationOuterDimension.read(Variable mainv, CancelTask cancelTask)
          Read an aggregation variable: A variable whose data spans multiple files.
 Array AggregationFmrc.read(Variable mainv, CancelTask cancelTask)
           
abstract  Array Aggregation.read(Variable mainv, CancelTask cancelTask)
          Read an aggregation variable: A variable whose data spans multiple files.
protected  Array Aggregation.Dataset.read(Variable mainv, CancelTask cancelTask)
           
 Array Aggregation.DatasetProxyReader.read(Variable mainV, CancelTask cancelTask)
           
protected  Array Aggregation.Dataset.read(Variable mainv, CancelTask cancelTask, java.util.List<Range> section)
          Read a section of the local Variable.
 Array AggregationUnion.read(Variable mainv, Section section, CancelTask cancelTask)
           
 Array AggregationTiled.read(Variable mainv, Section wantSection, CancelTask cancelTask)
           
 Array AggregationOuterDimension.read(Variable mainv, Section section, CancelTask cancelTask)
          Read a section of an aggregation variable.
 Array AggregationFmrc.read(Variable mainv, Section section, CancelTask cancelTask)
          Read a section of an aggregation variable.
abstract  Array Aggregation.read(Variable mainv, Section section, CancelTask cancelTask)
          Read a section of an aggregation variable.
 Array Aggregation.DatasetProxyReader.read(Variable mainV, Section section, CancelTask cancelTask)
           
 

Uses of Variable in ucar.nc2.stream
 

Methods in ucar.nc2.stream with parameters of type Variable
protected  Array NcStreamRemote.readData(Variable v, Section section)
           
 Array NcStreamIosp.readData(Variable v, Section section)
           
 long NcStreamWriter.sendData(Variable v, Section section, java.nio.channels.WritableByteChannel wbc)
           
 

Uses of Variable in ucar.nc2.util
 

Methods in ucar.nc2.util with parameters of type Variable
static void CompareNetcdf.compareVariableData(Variable var1, Variable var2, boolean showCompare, java.util.Formatter f)
           
 

Uses of Variable in ucar.unidata.geoloc.vertical
 

Methods in ucar.unidata.geoloc.vertical with parameters of type Variable
protected  Array VerticalTransformImpl.readArray(Variable v, int timeIndex)
          Read the data Array from the variable, at the specified time index if applicable.