Uses of Class
ucar.nc2.dataset.CoordinateAxis

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

Uses of CoordinateAxis in ucar.nc2.dataset
 

Subclasses of CoordinateAxis in ucar.nc2.dataset
 class CoordinateAxis1D
          A 1-dimensional Coordinate Axis.
 class CoordinateAxis1DTime
          A 1-dimensional Coordinate Axis representing Calendar time.
 class CoordinateAxis2D
          A 2-dimensional numeric Coordinate Axis.
 

Methods in ucar.nc2.dataset that return CoordinateAxis
 CoordinateAxis NetcdfDataset.addCoordinateAxis(VariableDS v)
          Add a CoordinateAxis.
static CoordinateAxis CoordinateAxis.factory(NetcdfDataset dataset, VariableDS vds)
          Create a coordinate axis from an existing Variable.
 CoordinateAxis CoordinateSystem.findAxis(AxisType type)
          Find the CoordinateAxis that has the given AxisType.
 CoordinateAxis NetcdfDataset.findCoordinateAxis(java.lang.String fullName)
          Retrieve the CoordinateAxis with the specified name.
 CoordinateAxis CoordinateSystem.getAzimuthAxis()
          get the CoordinateAxis with AxisType.RadialAzimuth, or null if none.
 CoordinateAxis CoordinateSystem.getElevationAxis()
          get the CoordinateAxis with AxisType.RadialElevation, or null if none.
 CoordinateAxis CoordinateSystem.getHeightAxis()
          get the CoordinateAxis with AxisType.Height, or null if none.
 CoordinateAxis CoordinateSystem.getLatAxis()
          get the CoordinateAxis with AxisType.Lat, or null if none.
 CoordinateAxis CoordinateSystem.getLonAxis()
          get the CoordinateAxis with AxisType.Lon, or null if none.
 CoordinateAxis CoordinateSystem.getPressureAxis()
          get the CoordinateAxis with AxisType.Pressure, or null if none.
 CoordinateAxis CoordinateSystem.getRadialAxis()
          get the CoordinateAxis with AxisType.RadialDistance, or null if none.
 CoordinateAxis CoordinateSystem.getTaxis()
          get the CoordinateAxis with AxisType.Time, or null if none.
 CoordinateAxis CoordinateSystem.getXaxis()
          get the CoordinateAxis with AxisType.GeoX, or null if none.
 CoordinateAxis CoordinateSystem.getYaxis()
          get the CoordinateAxis with AxisType.GeoY, or null if none.
 CoordinateAxis CoordinateSystem.getZaxis()
          get the CoordinateAxis with AxisType.GeoZ, or null if none.
 

Uses of CoordinateAxis in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return CoordinateAxis
 CoordinateAxis GridCoordSystem.getTimeAxis()
          Get the Time axis, if it exists.
 CoordinateAxis GridCoordSystem.getXHorizAxis()
          Get the X axis.
 CoordinateAxis GridCoordSystem.getYHorizAxis()
          Get the Y axis.