Uses of Class
ucar.nc2.dataset.CoordinateSystem

Packages that use CoordinateSystem
ucar.nc2.dataset An extension to the netCDF API which provides support for coordinate systems, scale/offset/missing data, and NcML. 
ucar.nc2.dataset.transform Pluggable framework for handling Coordinate Transforms, both Projections and Vertical. 
 

Uses of CoordinateSystem in ucar.nc2.dataset
 

Fields in ucar.nc2.dataset declared as CoordinateSystem
 CoordinateSystem CoordSysBuilder.VarProcess.cs
           
 

Methods in ucar.nc2.dataset that return CoordinateSystem
 CoordinateSystem NetcdfDataset.findCoordinateSystem(java.lang.String name)
          Retrieve the CoordinateSystem with the specified name.
 

Methods in ucar.nc2.dataset that return types with arguments of type CoordinateSystem
 java.util.List<CoordinateSystem> Enhancements.getCoordinateSystems()
          Get the list of Coordinate Systems for this Variable.
 java.util.List<CoordinateSystem> NetcdfDataset.getCoordinateSystems()
          Get the list of all CoordinateSystem objects used by this dataset.
 java.util.List<CoordinateSystem> StructureDS.getCoordinateSystems()
           
 java.util.List<CoordinateSystem> VariableDS.getCoordinateSystems()
           
 

Methods in ucar.nc2.dataset with parameters of type CoordinateSystem
 void Enhancements.addCoordinateSystem(CoordinateSystem cs)
          Add a CoordinateSystem to the dataset.
 void NetcdfDataset.addCoordinateSystem(CoordinateSystem cs)
          Add a CoordinateSystem to the dataset.
 void StructureDS.addCoordinateSystem(CoordinateSystem p0)
           
 void VariableDS.addCoordinateSystem(CoordinateSystem p0)
           
 void Enhancements.removeCoordinateSystem(CoordinateSystem cs)
          Remove a CoordinateSystem from the dataset.
 void StructureDS.removeCoordinateSystem(CoordinateSystem p0)
           
 void VariableDS.removeCoordinateSystem(CoordinateSystem p0)
           
 

Uses of CoordinateSystem in ucar.nc2.dataset.transform
 

Constructors in ucar.nc2.dataset.transform with parameters of type CoordinateSystem
WRFEtaTransformBuilder(CoordinateSystem cs)