Uses of Class
ucar.nc2.constants.AxisType

Packages that use AxisType
ucar.nc2.constants Enumerated constants used throughout the library. 
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.point Scientific data type "Point", collections of point observation data. 
ucar.nc2.ft.point.standard package ucar.nc2.ft.point.standard : Standard Implementation of Point Feature Types 
ucar.nc2.ft.point.standard.plug package ucar.nc2.ft.point.plug : Pluggable AAnalysers of Point Feature Type datasets 
ucar.nc2.iosp.misc Miscellaneous IOSPs. 
 

Uses of AxisType in ucar.nc2.constants
 

Methods in ucar.nc2.constants that return AxisType
static AxisType AxisType.getType(String name)
          Find the AxisType that matches this name.
static AxisType AxisType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AxisType[] AxisType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of AxisType in ucar.nc2.dataset
 

Fields in ucar.nc2.dataset declared as AxisType
 AxisType CoordSysBuilder.VarProcess.axisType
           
protected  AxisType CoordinateAxis.axisType
           
 

Methods in ucar.nc2.dataset that return AxisType
 AxisType CoordinateAxis.getAxisType()
          Get type of axis
protected  AxisType CoordSysBuilder.getAxisType(NetcdfDataset ncDataset, VariableEnhanced v)
          Identify what kind of AxisType the named variable is.
 

Methods in ucar.nc2.dataset with parameters of type AxisType
 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.
 CoordinateAxis NetcdfDataset.findCoordinateAxis(AxisType type)
          Retrieve the CoordinateAxis with the specified Axis Type.
 void CoordinateAxis.setAxisType(AxisType axisType)
          Set type of axis, or null if none.
 

Method parameters in ucar.nc2.dataset with type arguments of type AxisType
 boolean CoordinateSystem.containsAxisTypes(List<AxisType> wantAxes)
          Do we have all the axes types in the list?
 

Uses of AxisType in ucar.nc2.dataset.conv
 

Methods in ucar.nc2.dataset.conv that return AxisType
protected  AxisType CSMConvention.getAxisType(NetcdfDataset ncd, VariableEnhanced v)
           
protected  AxisType WRFConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType CF1Convention.getAxisType(NetcdfDataset ncDataset, VariableEnhanced v)
          Augment CSM axis type identification with "projection_x_coordinate", "projection_y_coordinate" and the various dimensionless vertical coordinates
protected  AxisType ADASConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType Suomi.getAxisType(NetcdfDataset ncDataset, VariableEnhanced v)
           
protected  AxisType COARDSConvention.getAxisType(NetcdfDataset ncDataset, VariableEnhanced v)
           
protected  AxisType M3IOConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType Jason2Convention.getAxisType(NetcdfDataset ncDataset, VariableEnhanced v)
          _more_
protected  AxisType DefaultConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType AWIPSsatConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType NUWGConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType M3IOVGGridConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType GDVConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType AWIPSConvention.getAxisType(NetcdfDataset ds, VariableEnhanced ve)
           
protected  AxisType Cosmic1Convention.getAxisType(NetcdfDataset ncDataset, VariableEnhanced v)
          _more_
 

Uses of AxisType in ucar.nc2.dt.point
 

Methods in ucar.nc2.dt.point with parameters of type AxisType
static Variable UnidataObsDatasetHelper.getCoordinate(NetcdfDataset ds, AxisType a)
          Tries to find the coordinate variable of the specified type.
 

Uses of AxisType in ucar.nc2.ft.point.standard
 

Methods in ucar.nc2.ft.point.standard with parameters of type AxisType
static CoordinateAxis CoordSysEvaluator.findCoordByType(NetcdfDataset ds, AxisType atype)
          Look for Axis by Type.
static CoordinateAxis CoordSysEvaluator.findCoordByType(NetcdfDataset ds, AxisType atype, CoordSysEvaluator.Predicate p)
          Look for Axis by Type and test against a predicate
static String CoordSysEvaluator.findCoordNameByType(NetcdfDataset ds, AxisType atype)
          Look for Axis by Type.
static String CoordSysEvaluator.findCoordShortNameByType(NetcdfDataset ds, AxisType atype)
           
static Dimension CoordSysEvaluator.findDimensionByType(NetcdfDataset ds, AxisType atype)
          Look for Axis by Type.
protected  String TableConfigurerImpl.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer)
           
protected  String TableConfigurerImpl.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer, Dimension inner)
           
protected  String TableConfigurerImpl.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer, Dimension middle, Dimension inner)
           
 

Uses of AxisType in ucar.nc2.ft.point.standard.plug
 

Methods in ucar.nc2.ft.point.standard.plug with parameters of type AxisType
static Variable UnidataPointDatasetHelper.getCoordinate(NetcdfDataset ds, AxisType a)
          Tries to find the coordinate variable of the specified type.
static String UnidataPointDatasetHelper.getCoordinateName(NetcdfDataset ds, AxisType a)
          Tries to find the coordinate variable of the specified type.
static String UnidataPointDatasetHelper.getCoordinateName(NetcdfDataset ds, AxisType a, Dimension dim)
          Tries to find the coordinate variable of the specified type, which has the specified dimension as its firsst dimension
protected  String CFpointObs.matchAxisTypeAndDimension(NetcdfDataset ds, AxisType type, Dimension outer)
           
 

Uses of AxisType in ucar.nc2.iosp.misc
 

Methods in ucar.nc2.iosp.misc with parameters of type AxisType
protected  Variable AbstractLightningIOSP.makeLightningVariable(NetcdfFile ncfile, Group group, Structure seq, String name, DataType dataType, String dims, String longName, String cfName, String units, AxisType type)
          Make lightning variables
 



Copyright © 1999-2011 UCAR/Unidata. All Rights Reserved.