|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| 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.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.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 java.util.List<Dimension> |
Variable.dimensions
|
protected java.util.List<Dimension> |
NetcdfFile.dimensions
|
protected java.util.List<Dimension> |
Group.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(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 |
NetcdfFile.findDimension(java.lang.String name)
Retrieve a dimension by fullName. |
Dimension |
Group.findDimension(java.lang.String name)
Retrieve a Dimension using its (short) name. |
Dimension |
Group.findDimensionLocal(java.lang.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(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> |
VariableSimpleIF.getDimensions()
Dimension List. |
java.util.List<Dimension> |
VariableSimpleAdapter.getDimensions()
|
java.util.List<Dimension> |
VariableIF.getDimensions()
|
java.util.List<Dimension> |
Variable.getDimensions()
Get the list of dimensions used by this variable. |
java.util.List<Dimension> |
NetcdfFile.getDimensions()
Get the shared Dimensions used in this file. |
java.util.List<Dimension> |
Group.getDimensions()
Get the Dimensions contained directly in this group. |
java.util.List<Dimension> |
VariableIF.getDimensionsAll()
|
java.util.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(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 |
|---|
| Fields in ucar.nc2.dataset with type parameters of type Dimension | |
|---|---|
protected java.util.Map<Dimension,java.util.List<CoordSysBuilder.VarProcess>> |
CoordSysBuilder.coordVarMap
|
protected java.util.List<Dimension> |
CoordinateSystem.domain
|
| 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 | |
|---|---|
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(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 |
|---|
| 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> |
VariableSimpleSubclass.getDimensions()
|
java.util.List<Dimension> |
GridDatatype.getDimensions()
Returns a List of Dimension containing the dimensions used by this grid. |
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.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 | |
|---|---|
java.util.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
|
| Methods in ucar.nc2.dt.point that return Dimension | |
|---|---|
static Dimension |
UnidataObsDatasetHelper.findDimension(NetcdfFile ds,
java.lang.String name)
|
| Uses of Dimension in ucar.nc2.dt.radial |
|---|
| Methods in ucar.nc2.dt.radial that return types with arguments of type Dimension | |
|---|---|
java.util.List<Dimension> |
RadialDatasetSweepAdapter.MyRadialVariableAdapter.getDimensions()
|
| Uses of Dimension in ucar.nc2.dt.trajectory |
|---|
| Fields in ucar.nc2.dt.trajectory declared as Dimension | |
|---|---|
protected Dimension |
UnidataTrajectoryObsDataset2.timeDim
|
protected Dimension |
SingleTrajectoryObsDataset.timeDim
|
protected Dimension |
SingleTrajectoryObsDataset.Config.timeDim
|
protected Dimension |
MultiTrajectoryObsDataset.timeDim
|
protected Dimension |
UnidataTrajectoryObsDataset2.trajDim
|
protected Dimension |
MultiTrajectoryObsDataset.trajDim
|
| Methods in ucar.nc2.dt.trajectory that return Dimension | |
|---|---|
Dimension |
SingleTrajectoryObsDataset.Config.getTimeDim()
|
| Methods in ucar.nc2.dt.trajectory with parameters of type Dimension | |
|---|---|
void |
SingleTrajectoryObsDataset.Config.setTimeDim(Dimension timeDim)
|
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 Dimension | |
|---|---|
SingleTrajectoryObsDataset.Config(java.lang.String trajectoryId,
Dimension timeDim,
Variable timeVar,
Variable latVar,
Variable lonVar,
Variable elevVar)
|
|
| 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 |
|---|
| Fields in ucar.nc2.ft.point.standard declared as Dimension | |
|---|---|
Dimension |
TableConfig.dim
|
Dimension |
TableConfig.inner
|
Dimension |
TableConfig.outer
|
| 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,
java.lang.String key,
java.util.Formatter errlog)
|
| Methods in ucar.nc2.ft.point.standard with parameters of type Dimension | |
|---|---|
static Structure |
Evaluator.getStructureWithDimensions(NetcdfDataset ds,
Dimension dim0,
Dimension dim1)
|
protected java.util.List<Variable> |
TableAnalyzer.getStructVars(java.util.List<Variable> vars,
Dimension dim)
|
| 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,
java.lang.String name)
|
static Dimension |
UnidataPointDatasetHelper.findObsDimension(NetcdfFile ds)
|
| Methods in ucar.nc2.ft.point.standard.plug with parameters of type Dimension | |
|---|---|
static java.lang.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 |
| 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.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,
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 |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||