Uses of Class
ucar.nc2.Dimension

Packages that use Dimension
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.transform Pluggable framework for handling Coordinate Transforms, both Projections and Vertical. 
ucar.nc2.dt Scientific data types package. 
ucar.unidata.geoloc.vertical Implementations of vertical coordinate transformations. 
 

Uses of Dimension in ucar.nc2
 

Fields in ucar.nc2 declared as Dimension
static Dimension Dimension.VLEN
          A variable-length dimension: the length is not known until the data is read.
 

Methods in ucar.nc2 that return Dimension
 Dimension NetcdfFile.addDimension(Group parent, Dimension d)
          Add a shared Dimension to a Group.
 Dimension NetcdfFileWriteable.addDimension(java.lang.String dimName, int length)
          Add a Dimension to the file.
 Dimension NetcdfFileWriteable.addDimension(java.lang.String dimName, int length, boolean isShared, boolean isUnlimited, boolean isVariableLength)
          Add a Dimension to the file.
 Dimension NetcdfFileWriteable.addUnlimitedDimension(java.lang.String dimName)
          Add an unlimited Dimension to the file.
 Dimension Group.findDimension(java.lang.String name)
          Retrieve a Dimension using its (short) name.
 Dimension NetcdfFile.findDimension(java.lang.String name)
          Retrieve a dimension by fullName.
 Dimension Group.findDimensionLocal(java.lang.String name)
          Retrieve a Dimension using its (short) name, in this group only
 Dimension Variable.getDimension(int i)
          Get the ith dimension.
 Dimension VariableIF.getDimension(int index)
           
 Dimension NetcdfFile.getUnlimitedDimension()
          Return the unlimited (record) dimension, or null if not exist.
 Dimension NetcdfFileWriteable.renameDimension(java.lang.String oldName, java.lang.String newName)
          Rename a Dimension.
 Dimension Dimension.setImmutable()
          Make this immutable.
 Dimension FileWriter.writeDimension(Dimension dim)
          Add a Dimension to the file
 

Methods in ucar.nc2 that return types with arguments of type Dimension
 java.util.List<Dimension> Group.getDimensions()
          Get the Dimensions contained directly in this group.
 java.util.List<Dimension> NetcdfFile.getDimensions()
          Get the shared Dimensions used in this file.
 java.util.List<Dimension> Variable.getDimensions()
          Get the list of dimensions used by this variable.
 java.util.List<Dimension> VariableIF.getDimensions()
           
 java.util.List<Dimension> VariableSimpleAdapter.getDimensions()
           
 java.util.List<Dimension> VariableSimpleIF.getDimensions()
          Dimension List.
 java.util.List<Dimension> Variable.getDimensionsAll()
          Get list of Dimensions, including parents if any.
 java.util.List<Dimension> VariableIF.getDimensionsAll()
           
 

Methods in ucar.nc2 with parameters of type Dimension
 void Group.addDimension(Dimension d)
          Add a shared Dimension
 Dimension NetcdfFile.addDimension(Group parent, Dimension d)
          Add a shared Dimension to a 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.
 boolean Group.remove(Dimension d)
          Remove an Dimension : uses the dimension hashCode to find it.
 void Variable.setDimension(int idx, Dimension dim)
          Replace a dimension with an equivalent one.
 Dimension FileWriter.writeDimension(Dimension dim)
          Add a Dimension to the file
 

Method parameters in ucar.nc2 with type arguments of type Dimension
 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 NetcdfFileWriteable.addVariable(java.lang.String varName, DataType dataType, java.util.List<Dimension> dims)
          Add a variable to the file.
 void Variable.setDimensions(java.util.List<Dimension> dims)
          Set the shape with a list of Dimensions.
 

Constructors in ucar.nc2 with parameters of type Dimension
Dimension(java.lang.String name, Dimension from)
          Copy Constructor.
StructurePseudo(NetcdfFile ncfile, Group group, java.lang.String shortName, Dimension dim)
          Make a Structure out of all Variables with the named dimension as their outermost dimension.
StructurePseudo(NetcdfFile ncfile, Group group, java.lang.String shortName, java.util.List<java.lang.String> varNames, Dimension dim)
          Make a Structure out of named Variables, each has the same named outermost dimension.
 

Uses of Dimension in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset that return types with arguments of type Dimension
 java.util.List<Dimension> CoordinateSystem.getDomain()
          List of Dimensions that constitute the domain.
static java.util.List<Dimension> CoordinateSystem.makeDomain(Variable[] axes)
           
 

Methods in ucar.nc2.dataset with parameters of type Dimension
 VerticalTransform CoordTransBuilderIF.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
          Make a VerticalTransform.
 VerticalTransform VerticalCT.makeVerticalTransform(NetcdfDataset ds, Dimension timeDim)
          Use the builder to make the Vertical Transform function
 

Method parameters in ucar.nc2.dataset with type arguments of type Dimension
 boolean CoordinateSystem.containsDomain(java.util.List<Dimension> wantDimensions)
          Do we have all the dimensions in the list?
static boolean CoordinateSystem.isSubset(java.util.List<Dimension> subset, java.util.List<Dimension> set)
          Test if all the Dimensions in subset are in set
static boolean CoordinateSystem.isSubset(java.util.List<Dimension> subset, java.util.List<Dimension> set)
          Test if all the Dimensions in subset are in set
 

Uses of Dimension in ucar.nc2.dataset.transform
 

Methods in ucar.nc2.dataset.transform with parameters of type Dimension
 VerticalTransform AbstractCoordTransBuilder.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VAtmHybridHeight.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
          Make the vertical transform transform
 VerticalTransform VAtmHybridSigmaPressure.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VAtmLnPressure.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VAtmSigma.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VExplicitField.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanS.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanSG1.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanSG2.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanSigma.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform WRFEtaTransformBuilder.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 

Uses of Dimension in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return Dimension
 Dimension GridDatatype.getDimension(int i)
          get the ith dimension
 Dimension GridDatatype.getEnsembleDimension()
          get the ensemble Dimension, if it exists
 Dimension GridDatatype.getRunTimeDimension()
          get the runtime Dimension, if it exists
 Dimension GridDatatype.getTimeDimension()
          get the time Dimension, if it exists
 Dimension GridDatatype.getXDimension()
          get the x Dimension, if it exists
 Dimension GridDatatype.getYDimension()
          get the y Dimension, if it exists
 Dimension GridDatatype.getZDimension()
          get the z Dimension, if it exists
 

Methods in ucar.nc2.dt that return types with arguments of type Dimension
 java.util.List<Dimension> GridDatatype.getDimensions()
          Returns a List of Dimension containing the dimensions used by this grid.
 java.util.List<Dimension> VariableSimpleSubclass.getDimensions()
           
 java.util.List<Dimension> GridCoordSystem.getDomain()
          Get the list of dimensions used by any of the Axes in the Coordinate System.
 

Uses of Dimension in ucar.unidata.geoloc.vertical
 

Constructors in ucar.unidata.geoloc.vertical with parameters of type Dimension
AtmosLnPressure(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Create a new vertical transform for Ocean S coordinates
AtmosSigma(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Create a new vertical transform for Ocean S coordinates
HybridHeight(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Construct a coordinate transform for hybrid height
HybridSigmaPressure(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Construct a coordinate transform for sigma pressure
OceanS(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Create a new vertical transform for Ocean S coordinates
OceanSG1(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Create a new vertical transform for Ocean_S_coordinate_g1
OceanSG2(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Create a new vertical transform for Ocean_S_coordinate_g2
OceanSigma(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Create a new vertical transform for Ocean S coordinates
VerticalTransformImpl(Dimension timeDim)
          Construct a VerticalCoordinate
VTfromExistingData(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Constructor.
WRFEta(NetcdfFile ds, Dimension timeDim, java.util.List<Parameter> params)
          Construct a vertical coordinate for the Weather Research and Forecast (WRF) model's vertical Eta coordinate