Uses of Class
ucar.nc2.dataset.AxisType

Packages that use AxisType
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
 

Uses of AxisType in ucar.nc2.dataset
 

Fields in ucar.nc2.dataset declared as AxisType
 AxisType CoordSysBuilder.VarProcess.axisType
           
static AxisType AxisType.Ensemble
          represents the ensemble coordinate
static AxisType AxisType.GeoX
          represents a x coordinate
static AxisType AxisType.GeoY
          represents a y coordinate
static AxisType AxisType.GeoZ
          represents a z coordinate
static AxisType AxisType.Height
          represents a vertical height coordinate
static AxisType AxisType.Lat
          represents a latitude coordinate
static AxisType AxisType.Lon
          represents a longitude coordinate
static AxisType AxisType.Pressure
          represents a vertical pressure coordinate
static AxisType AxisType.RadialAzimuth
          represents a radial azimuth coordinate
static AxisType AxisType.RadialDistance
          represents a radial distance coordinate
static AxisType AxisType.RadialElevation
          represents a radial elevation coordinate
static AxisType AxisType.RunTime
          represents the runTime coordinate
static AxisType AxisType.Time
          represents the time coordinate
 

Methods in ucar.nc2.dataset that return AxisType
 AxisType CoordinateAxis.getAxisType()
          Get type of axis, or null if none.
static AxisType AxisType.getType(java.lang.String name)
          Find the AxisType that matches this name.
 

Methods in ucar.nc2.dataset with parameters of type AxisType
 int AxisType.compareTo(AxisType o)
          canonical ordering: (time, z, x, y) or (time, elevation, azimuth, distance)
 boolean CoordinateSystem.containsAxisType(AxisType wantAxisType)
          Do we have an axes of the given type?
 CoordinateAxis CoordinateSystem.findAxis(AxisType type)
          Find the CoordinateAxis that has the given AxisType.
 void CoordinateAxis.setAxisType(AxisType axisType)
          Set type of axis, or null if none.