Package ucar.nc2.grib.coord
Interface Coordinate
-
- All Known Implementing Classes:
CoordinateEns,CoordinateRuntime,CoordinateTime,CoordinateTime2D,CoordinateTimeAbstract,CoordinateTimeIntv,CoordinateVert
public interface CoordinateAbstract coordinate- Since:
- 11/24/13
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCoordinate.TypeCoordinate types
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ucar.nc2.util.CounterscalcDistributions()intestMemorySize()intgetCode()intgetIndex(Object val)StringgetName()intgetNCoords()intgetSize()Coordinate.TypegetType()StringgetUnit()ObjectgetValue(int idx)List<?>getValues()voidshowCoords(Formatter info)voidshowInfo(Formatter info, ucar.nc2.util.Indent indent)
-
-
-
Method Detail
-
getValues
List<?> getValues()
-
getValue
Object getValue(int idx)
-
getIndex
int getIndex(Object val)
-
getSize
int getSize()
-
getCode
int getCode()
-
getType
Coordinate.Type getType()
-
getName
String getName()
-
getUnit
String getUnit()
-
getNCoords
int getNCoords()
-
showInfo
void showInfo(Formatter info, ucar.nc2.util.Indent indent)
-
showCoords
void showCoords(Formatter info)
-
calcDistributions
ucar.nc2.util.Counters calcDistributions()
-
estMemorySize
int estMemorySize()
-
-