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.nc2.dt.grid Scientific data type "Grid", uses cartesian coordinate system. 
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.grid   
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.iosp.dmsp I/O Service Provider for DMSP format files 
ucar.nc2.iosp.gempak   
ucar.nc2.ncml Netcdf Markup Language (NcML) Implementation classes see NcML home page 
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.
 

Fields in ucar.nc2 with type parameters of type Dimension
protected  List<Dimension> Group.dimensions
           
protected  List<Dimension> Variable.dimensions
           
protected  List<Dimension> NetcdfFile.dimensions
           
 

Methods in ucar.nc2 that return Dimension
 Dimension NetcdfFile.addDimension(Group parent, Dimension d)
          Add a shared Dimension to a Group.
 Dimension NetcdfFileWriteable.addDimension(String dimName, int length)
          Add a Dimension to the file.
 Dimension NetcdfFileWriteable.addDimension(String dimName, int length, boolean isShared, boolean isUnlimited, boolean isVariableLength)
          Add a Dimension to the file.
 Dimension NetcdfFileWriteable.addUnlimitedDimension(String dimName)
          Add an unlimited Dimension to the file.
 Dimension Group.findDimension(String name)
          Retrieve a Dimension using its (short) name.
 Dimension NetcdfFile.findDimension(String name)
          Retrieve a dimension by fullName.
 Dimension Group.findDimensionLocal(String name)
          Retrieve a Dimension using its (short) name, in this group only
 Dimension VariableIF.getDimension(int index)
           
 Dimension Variable.getDimension(int i)
          Get the ith dimension.
 Dimension NetcdfFile.getUnlimitedDimension()
          Return the unlimited (record) dimension, or null if not exist.
 Dimension NetcdfFileWriteable.renameDimension(String oldName, 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
 List<Dimension> VariableSimpleIF.getDimensions()
          Dimension List.
 List<Dimension> VariableIF.getDimensions()
           
 List<Dimension> Group.getDimensions()
          Get the Dimensions contained directly in this group.
 List<Dimension> Variable.getDimensions()
          Get the list of dimensions used by this variable.
 List<Dimension> VariableSimpleAdapter.getDimensions()
           
 List<Dimension> NetcdfFile.getDimensions()
          Get the shared Dimensions used in this file.
 List<Dimension> VariableIF.getDimensionsAll()
           
 List<Dimension> Variable.getDimensionsAll()
          Get list of Dimensions, including parents if any.
 

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(String varName, Class componentType, Dimension[] dims)
          Deprecated. use addVariable(String varName, DataType dataType, ArrayList dims);
 Variable NetcdfFileWriteable.addVariable(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(String varName, List<Dimension> dims, int max_strlen)
          Add a variable with DataType = String to the file.
 Variable NetcdfFileWriteable.addVariable(String shortName, DataType dataType, List<Dimension> dims)
          Add a variable to the file.
static String Dimension.makeDimensionList(List<Dimension> dimList)
           
 void Variable.setDimensions(List<Dimension> dims)
          Set the shape with a list of Dimensions.
 

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

Uses of Dimension in ucar.nc2.dataset
 

Fields in ucar.nc2.dataset with type parameters of type Dimension
protected  Map<Dimension,List<CoordSysBuilder.VarProcess>> CoordSysBuilder.coordVarMap
           
protected  List<Dimension> CoordinateSystem.domain
           
 

Methods in ucar.nc2.dataset that return Dimension
static Dimension DatasetConstructor.getBoundsDimension(NetcdfFile ncfile)
           
 

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

Methods in ucar.nc2.dataset with parameters of type Dimension
protected  void CoordSysBuilder.addCoordinateVariable(Dimension dim, CoordSysBuilder.VarProcess vp)
           
 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(List<Dimension> wantDimensions)
          Do we have all the dimensions in the list?
static boolean CoordinateSystem.isSubset(List<Dimension> subset, List<Dimension> set)
          Test if all the Dimensions in subset are in set
static boolean CoordinateSystem.isSubset(List<Dimension> subset, List<Dimension> set)
          Test if all the Dimensions in subset are in set
 

Constructors in ucar.nc2.dataset with parameters of type Dimension
StructurePseudo2Dim(NetcdfDataset ncfile, Group group, String shortName, List<String> varNames, Dimension outer, Dimension inner)
          Make a Structure out of named Variables which have var(outer, inner, ...)
StructurePseudoDS(NetcdfDataset ncfile, Group group, String shortName, List<String> varNames, Dimension outerDim)
          Make a Structure out of all Variables with the named dimension as their outermost dimension, or from a list named Variables, each has the same named outermost dimension.
 

Uses of Dimension in ucar.nc2.dataset.transform
 

Methods in ucar.nc2.dataset.transform with parameters of type Dimension
 VerticalTransform VAtmHybridSigmaPressure.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanSG2.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VAtmLnPressure.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanS.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)
           
 VerticalTransform VAtmHybridHeight.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
          Make the vertical transform transform
 VerticalTransform VExplicitField.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform AbstractCoordTransBuilder.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VAtmSigma.makeMathTransform(NetcdfDataset ds, Dimension timeDim, VerticalCT vCT)
           
 VerticalTransform VOceanSG1.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
 List<Dimension> VariableSimpleSubclass.getDimensions()
           
 List<Dimension> GridDatatype.getDimensions()
          Returns a List of Dimension containing the dimensions used by this grid.
 List<Dimension> GridCoordSystem.getDomain()
          Get the list of dimensions used by any of the Axes in the Coordinate System.
 

Uses of Dimension in ucar.nc2.dt.grid
 

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

Methods in ucar.nc2.dt.grid that return types with arguments of type Dimension
 List<Dimension> GeoGrid.getDimensions()
          Returns an ArrayList containing the dimensions used by this geoGrid.
 

Uses of Dimension in ucar.nc2.dt.point
 

Fields in ucar.nc2.dt.point declared as Dimension
protected  Dimension RecordDatasetHelper.obsDim
          Deprecated.  
 

Methods in ucar.nc2.dt.point that return Dimension
static Dimension UnidataObsDatasetHelper.findDimension(NetcdfFile ds, String name)
           
 

Uses of Dimension in ucar.nc2.dt.radial
 

Methods in ucar.nc2.dt.radial that return types with arguments of type Dimension
 List<Dimension> RadialDatasetSweepAdapter.MyRadialVariableAdapter.getDimensions()
           
 

Uses of Dimension in ucar.nc2.dt.trajectory
 

Fields in ucar.nc2.dt.trajectory declared as Dimension
protected  Dimension SingleTrajectoryObsDataset.timeDim
          Deprecated.  
protected  Dimension SingleTrajectoryObsDataset.Config.timeDim
           
protected  Dimension UnidataTrajectoryObsDataset2.timeDim
           
protected  Dimension MultiTrajectoryObsDataset.timeDim
          Deprecated.  
protected  Dimension UnidataTrajectoryObsDataset2.trajDim
           
protected  Dimension MultiTrajectoryObsDataset.trajDim
          Deprecated.  
protected  Dimension TrajectoryObsDatasetImpl.trajectoryDim
          Deprecated. _more_
protected  Dimension TrajectoryObsDatasetImpl.Config.trajectoryDim
          _more_
 

Methods in ucar.nc2.dt.trajectory that return Dimension
 Dimension SingleTrajectoryObsDataset.Config.getTimeDim()
           
 Dimension TrajectoryObsDatasetImpl.Config.getTrajectoryDim()
          _more_
 

Methods in ucar.nc2.dt.trajectory with parameters of type Dimension
 void SingleTrajectoryObsDataset.Config.setTimeDim(Dimension timeDim)
           
 void TrajectoryObsDatasetImpl.Config.setTrajectoryDim(Dimension trajectoryDim)
          _more_
 void MultiTrajectoryObsDataset.setTrajectoryInfo(Dimension trajDim, Variable trajVar, Dimension timeDim, Variable timeVar, Variable latVar, Variable lonVar, Variable elevVar)
          Deprecated. Setup needed for all MultiTrajectoryObsDatatypes.
 

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

Uses of Dimension in ucar.nc2.ft.grid
 

Methods in ucar.nc2.ft.grid that return Dimension
 Dimension Grid.getDimension(int i)
          get the ith dimension
 

Methods in ucar.nc2.ft.grid that return types with arguments of type Dimension
 List<Dimension> Grid.getDimensions()
          Returns a List of Dimension containing the dimensions used by this grid.
 List<Dimension> GridCoordSys.getDomain()
          Get the list of dimensions used by any of the Axes in the Coordinate System.
 

Uses of Dimension in ucar.nc2.ft.point
 

Fields in ucar.nc2.ft.point declared as Dimension
protected  Dimension RecordDatasetHelper.obsDim
           
 

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

Methods in ucar.nc2.ft.point.standard that return Dimension
static Dimension CoordSysEvaluator.findDimensionByType(NetcdfDataset ds, AxisType atype)
          Look for Axis by Type.
static Dimension Evaluator.getDimension(NetcdfDataset ds, String key, Formatter errlog)
           
 

Methods in ucar.nc2.ft.point.standard with parameters of type Dimension
static void CoordSysEvaluator.findCoordWithDimension(TableConfig nt, NetcdfDataset ds, Dimension outer)
           
protected  String TableConfigurerImpl.findNameVariableWithStandardNameAndDimension(NetcdfDataset ds, String standard_name, Dimension outer, Formatter errlog)
           
protected  Variable TableConfigurerImpl.findVariableWithStandardNameAndDimension(NetcdfDataset ds, String standard_name, Dimension outer, Formatter errlog)
           
protected  Variable TableConfigurerImpl.findVariableWithStandardNameAndNotDimension(NetcdfDataset ds, String standard_name, Dimension outer, Formatter errlog)
           
static Structure Evaluator.getStructureWithDimensions(NetcdfDataset ds, Dimension dim0, Dimension dim1)
           
protected  String TableConfigurerImpl.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer)
           
protected  String TableConfigurerImpl.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer, Dimension inner)
           
protected  String TableConfigurerImpl.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer, Dimension middle, Dimension inner)
           
 

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

Methods in ucar.nc2.ft.point.standard.plug that return Dimension
static Dimension UnidataPointDatasetHelper.findDimension(NetcdfFile ds, String name)
           
static Dimension UnidataPointDatasetHelper.findObsDimension(NetcdfFile ds)
           
 

Methods in ucar.nc2.ft.point.standard.plug with parameters of type Dimension
static String UnidataPointDatasetHelper.getCoordinateName(NetcdfDataset ds, AxisType a, Dimension dim)
          Tries to find the coordinate variable of the specified type, which has the specified dimension as its firsst dimension
protected  String CFpointObs.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer)
           
 

Uses of Dimension in ucar.nc2.iosp.dmsp
 

Methods in ucar.nc2.iosp.dmsp that return Dimension
 Dimension DMSPHeader.getNumDataRecordsDim()
           
 Dimension DMSPHeader.getNumSamplesPerBandDim()
           
 

Uses of Dimension in ucar.nc2.iosp.gempak
 

Fields in ucar.nc2.iosp.gempak declared as Dimension
protected static Dimension GempakStationFileIOSP.DIM_LEN2
          static for shared dimension of length 2
protected static Dimension GempakStationFileIOSP.DIM_LEN4
          static for shared dimension of length 4
protected static Dimension GempakStationFileIOSP.DIM_LEN8
          static for shared dimension of length 4
protected static Dimension GempakSoundingIOSP.DIM_MAXMERGELEVELS
          static for shared dimension of length 4
 

Methods in ucar.nc2.iosp.gempak with parameters of type Dimension
protected  Variable GempakStationFileIOSP.makeStationVariable(String varname, Dimension firstDim)
          Make a station variable
protected  List<Variable> GempakStationFileIOSP.makeStationVars(List<GempakStation> stations, Dimension dim)
          Make the station variables from a representative station
 

Method parameters in ucar.nc2.iosp.gempak with type arguments of type Dimension
protected  Variable GempakStationFileIOSP.makeParamVariable(GempakParameter param, List<Dimension> dims)
          Make a variable from a GempakParmaeter
 

Uses of Dimension in ucar.nc2.ncml
 

Methods in ucar.nc2.ncml with parameters of type Dimension
static org.jdom.Element NcMLWriter.writeDimension(Dimension dim, org.jdom.Namespace ns)
           
 

Uses of Dimension in ucar.unidata.geoloc.vertical
 

Methods in ucar.unidata.geoloc.vertical that return Dimension
protected  Dimension VerticalTransformImpl.getTimeDimension()
          Get the time Dimension
 

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



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