Package ucar.nc2.iosp.grid
Class GridEnsembleCoord
- java.lang.Object
-
- ucar.nc2.iosp.grid.GridEnsembleCoord
-
public abstract class GridEnsembleCoord extends Object
Handles the Ensemble coordinate dimension.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
GridEnsembleCoord.EnsCoord
-
Field Summary
Fields Modifier and Type Field Description protected List<GridEnsembleCoord.EnsCoord>
ensCoords
protected int
seq
-
Constructor Summary
Constructors Constructor Description GridEnsembleCoord()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addDimensionsToNetcdfFile(NetcdfFile ncfile, Group g)
Add this as a dimension to a netCDF fileprotected void
addToNetcdfFile(NetcdfFile ncfile, Group g)
boolean
equals(Object o)
String
getName()
Get the nameint
getNEnsembles()
Get the number of Ensemblesint
hashCode()
void
setSequence(int seq)
Set the sequence number
-
-
-
Field Detail
-
ensCoords
protected List<GridEnsembleCoord.EnsCoord> ensCoords
-
seq
protected int seq
-
-
Method Detail
-
setSequence
public void setSequence(int seq)
Set the sequence number- Parameters:
seq
- the sequence number
-
getName
public String getName()
Get the name- Returns:
- the name
-
addDimensionsToNetcdfFile
public void addDimensionsToNetcdfFile(NetcdfFile ncfile, Group g)
Add this as a dimension to a netCDF file- Parameters:
ncfile
- the netCDF fileg
- the group in the file
-
addToNetcdfFile
protected void addToNetcdfFile(NetcdfFile ncfile, Group g)
-
getNEnsembles
public int getNEnsembles()
Get the number of Ensembles- Returns:
- the number of Ensembles
-
-