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.dataset.conv Parses the information in netCDF datasets using Conventions, and extracts information about coordinate systems. 
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.
 

Fields in ucar.nc2.dataset declared as CoordinateAxis
 CoordinateAxis CoordSysBuilder.VarProcess.axis
           
 

Methods in ucar.nc2.dataset that return CoordinateAxis
 CoordinateAxis NetcdfDataset.addCoordinateAxis(VariableDS v)
          Add a CoordinateAxis to the dataset, by turning the VariableDS into a CoordinateAxis (if needed).
 CoordinateAxis CoordinateAxis.copyNoCache()
          Make a copy, with an independent cache.
 CoordinateAxis CoordinateAxis1D.copyNoCache()
           
static CoordinateAxis CoordinateAxis.factory(NetcdfDataset ncd, 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(AxisType type)
          Retrieve the CoordinateAxis with the specified Axis Type.
 CoordinateAxis NetcdfDataset.findCoordinateAxis(java.lang.String fullName)
          Retrieve the CoordinateAxis with the specified type.
 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.
 CoordinateAxis CoordSysBuilder.VarProcess.makeIntoCoordinateAxis()
          Turn the variable into a coordinate axis, if not already.
 

Methods in ucar.nc2.dataset that return types with arguments of type CoordinateAxis
 java.util.List<CoordinateAxis> CoordSysBuilder.VarProcess.findCoordinateAxes(boolean addCoordVariables)
          Create a list of coordinate axes for this data variable.
 java.util.List<CoordinateAxis> CoordinateSystem.getCoordinateAxes()
          get the List of CoordinateAxis objects
 java.util.List<CoordinateAxis> NetcdfDataset.getCoordinateAxes()
          Get the list of all CoordinateAxis objects used by this dataset.
 

Methods in ucar.nc2.dataset with parameters of type CoordinateAxis
 int CoordinateAxis.AxisComparator.compare(CoordinateAxis c1, CoordinateAxis c2)
           
 

Method parameters in ucar.nc2.dataset with type arguments of type CoordinateAxis
 boolean CoordinateSystem.containsAxes(java.util.List<CoordinateAxis> wantAxes)
          Do we have all the axes in the list?
static java.lang.String CoordinateSystem.makeName(java.util.List<CoordinateAxis> axes)
          Create standard name from list of axes.
 

Constructor parameters in ucar.nc2.dataset with type arguments of type CoordinateAxis
CoordinateSystem(NetcdfDataset ds, java.util.Collection<CoordinateAxis> axes, java.util.Collection<CoordinateTransform> coordTrans)
          Constructor.
 

Uses of CoordinateAxis in ucar.nc2.dataset.conv
 

Methods in ucar.nc2.dataset.conv with parameters of type CoordinateAxis
 java.lang.String ADASConvention.getZisPositive(CoordinateAxis v)
          Does increasing values of Z go vertical up?
 java.lang.String NUWGConvention.getZisPositive(CoordinateAxis v)
           
 java.lang.String WRFConvention.getZisPositive(CoordinateAxis v)
          Does increasing values of Z go vertical up?
 

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.
 

Methods in ucar.nc2.dt that return types with arguments of type CoordinateAxis
 java.util.List<CoordinateAxis> GridCoordSystem.getCoordinateAxes()
          Get the list of all axes.