Uses of Interface
ucar.nc2.util.CancelTask

Packages that use CancelTask
ucar.nc2 The public API to the Java-NetCDF 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 Scientific data types package. 
ucar.nc2.ft Scientific feature types package 
 

Uses of CancelTask in ucar.nc2
 

Methods in ucar.nc2 with parameters of type CancelTask
static NetcdfFile NetcdfFile.open(java.lang.String location, CancelTask cancelTask)
          Open an existing file (read only), with option of cancelling.
static NetcdfFile NetcdfFile.open(java.lang.String location, int buffer_size, CancelTask cancelTask)
          Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency.
static NetcdfFile NetcdfFile.open(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object iospMessage)
          Open an existing file (read only), with option of cancelling, setting the RandomAccessFile buffer size for efficiency, with an optional special object for the iosp.
static NetcdfFile NetcdfFile.open(java.lang.String location, java.lang.String iospClassName, int bufferSize, CancelTask cancelTask, java.lang.Object iospMessage)
          Open an existing file (read only), specifying which IOSP is to be used.
static boolean NCdump.print(NetcdfFile nc, java.io.OutputStream out, boolean showAll, boolean showCoords, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          Deprecated. ncdump-like print of netcdf file.
static boolean NCdump.print(NetcdfFile nc, java.lang.String command, java.io.OutputStream out, CancelTask ct)
          Deprecated. ncdump, parsing command string, file already open.
static boolean NCdumpW.print(NetcdfFile nc, java.lang.String command, java.io.Writer out, CancelTask ct)
          ncdump, parsing command string, file already open.
static boolean NCdumpW.print(NetcdfFile nc, java.io.Writer out, boolean showAll, boolean showCoords, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          ncdump-like print of netcdf file.
static boolean NCdumpW.print(NetcdfFile nc, java.io.Writer out, NCdumpW.WantValues showValues, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          ncdump-like print of netcdf file.
static boolean NCdump.print(java.lang.String fileName, java.io.OutputStream out, boolean showAll, boolean showCoords, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          Deprecated. ncdump-like print of netcdf file.
static boolean NCdump.print(java.lang.String command, java.io.OutputStream out, CancelTask ct)
          Deprecated. ncdump that parses a command string.
static boolean NCdumpW.print(java.lang.String filename, java.io.Writer out, boolean showAll, boolean showCoords, boolean ncml, boolean strict, java.lang.String varNames, CancelTask ct)
          ncdump-like print of netcdf file.
static boolean NCdumpW.print(java.lang.String command, java.io.Writer out, CancelTask ct)
          ncdump that parses a command string.
static java.lang.String NCdumpW.printArray(Array array, java.lang.String name, CancelTask ct)
           
static void NCdump.printArray(Array array, java.lang.String name, java.io.PrintStream out, CancelTask ct)
          Deprecated. Print the data array.
static void NCdumpW.printArray(Array array, java.lang.String name, java.io.PrintWriter out, CancelTask ct)
          Print the data array.
static java.lang.String NCdump.printVariableData(VariableIF v, CancelTask ct)
          Deprecated. Print all the data of the given Variable.
static java.lang.String NCdumpW.printVariableData(VariableIF v, CancelTask ct)
          Print all the data of the given Variable.
static java.lang.String NCdump.printVariableDataSection(VariableIF v, java.lang.String sectionSpec, CancelTask ct)
          Deprecated. Print a section of the data of the given Variable.
static java.lang.String NCdumpW.printVariableDataSection(Variable v, java.lang.String sectionSpec, CancelTask ct)
          Print a section of the data of the given Variable.
 Array ProxyReader.read(Variable mainv, CancelTask cancelTask)
          Read all the data for a Variable.
 Array ProxyReader.read(Variable mainv, Section section, CancelTask cancelTask)
          Read a section of the data for a Variable.
 

Uses of CancelTask in ucar.nc2.dataset
 

Methods in ucar.nc2.dataset with parameters of type CancelTask
static NetcdfDataset NetcdfDataset.acquireDataset(ucar.nc2.util.cache.FileFactory fac, java.lang.String location, java.util.Set<NetcdfDataset.Enhance> enhanceMode, int buffer_size, CancelTask cancelTask, java.lang.Object iospMessage)
          Same as openDataset, but file is acquired through the File Cache.
static NetcdfDataset NetcdfDataset.acquireDataset(java.lang.String location, CancelTask cancelTask)
          Same as openDataset, but file is acquired through the File Cache, with defaultEnhanceMode.
static NetcdfFile NetcdfDataset.acquireFile(ucar.nc2.util.cache.FileFactory factory, java.lang.Object hashKey, java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Same as openFile, but file is acquired through the File Cache.
static NetcdfFile NetcdfDataset.acquireFile(java.lang.String location, CancelTask cancelTask)
          Same as openFile, but file is acquired through the File Cache.
static CoordSysBuilderIF CoordSysBuilder.addCoordinateSystems(NetcdfDataset ds, CancelTask cancelTask)
           
 void CoordSysBuilderIF.augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask)
          Make changes to the dataset, like adding new variables, attribuites, etc.
 void CoordSysBuilder.augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask)
          This is where subclasses make changes to the dataset, like adding new variables, attribuites, etc.
static CoordSysBuilderIF CoordSysBuilder.factory(NetcdfDataset ds, CancelTask cancelTask)
          Get a CoordSysBuilder whose job it is to add Coordinate information to a NetcdfDataset.
static NetcdfDataset NetcdfDataset.openDataset(java.lang.String location, boolean enhance, CancelTask cancelTask)
          Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
static NetcdfDataset NetcdfDataset.openDataset(java.lang.String location, boolean enhance, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
static NetcdfDataset NetcdfDataset.openDataset(java.lang.String location, java.util.Set<NetcdfDataset.Enhance> enhanceMode, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Factory method for opening a dataset through the netCDF API, and identifying its coordinate variables.
static NetcdfFile NetcdfDataset.openFile(java.lang.String location, CancelTask cancelTask)
          Factory method for opening a NetcdfFile through the netCDF API.
static NetcdfFile NetcdfDataset.openFile(java.lang.String location, int buffer_size, CancelTask cancelTask, java.lang.Object spiObject)
          Factory method for opening a NetcdfFile through the netCDF API.
 

Uses of CancelTask in ucar.nc2.dataset.conv
 

Methods in ucar.nc2.dataset.conv with parameters of type CancelTask
 void ADASConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
          create a NetcdfDataset out of this NetcdfFile, adding coordinates etc.
 void ATDRadarConvention.augmentDataset(NetcdfDataset ncDataset, CancelTask cancelTask)
           
 void AWIPSConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void AWIPSsatConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void AvhrrConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void BUFRConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
          create a NetcdfDataset out of this NetcdfFile, adding coordinates etc.
 void CF1Convention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void CSMConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void DefaultConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void EpicInsitu.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void FslWindProfiler.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void GDVConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void GIEFConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void IFPSConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void M3IOConvention.augmentDataset(NetcdfDataset ncd, CancelTask cancelTask)
           
 void M3IOVGGridConvention.augmentDataset(NetcdfDataset ncd, CancelTask cancelTask)
           
 void MADISStation.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void ModisSatellite.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void NUWGConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void Nimbus.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void NsslRadarMosaicConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void UnidataObsConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
          create a NetcdfDataset out of this NetcdfFile, adding coordinates etc.
 void WRFConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 void ZebraConvention.augmentDataset(NetcdfDataset ds, CancelTask cancelTask)
           
 

Uses of CancelTask in ucar.nc2.dt
 

Methods in ucar.nc2.dt with parameters of type CancelTask
 java.util.List PointCollection.getData(CancelTask cancel)
          Get all data, allow user to cancel.
 java.util.List PointCollection.getData(LatLonRect boundingBox, CancelTask cancel)
          Get all data within the specified bounding box, allow user to cancel.
 java.util.List PointCollection.getData(LatLonRect boundingBox, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get all data within the specified bounding box and date range, allow user to cancel.
 java.util.List StationCollection.getData(java.util.List<Station> stations, CancelTask cancel)
          Get all data for a list of Stations, allow user to cancel.
 java.util.List StationCollection.getData(java.util.List<Station> stations, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get data for a list of Stations within the specified date range, allow user to cancel.
 java.util.List StationCollection.getData(Station s, CancelTask cancel)
          Get all data for this Station, allow user to cancel.
 java.util.List StationCollection.getData(Station s, java.util.Date start, java.util.Date end, CancelTask cancel)
          Get data for this Station within the specified date range, allow user to cancel.
 java.util.List<Station> StationCollection.getStations(CancelTask cancel)
          Get all the Stations in the collection, allow user to cancel.
 java.util.List<Station> StationCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          Get all the Stations within a bounding box, allow user to cancel.
 java.util.List<Station> StationRadarCollection.getStations(LatLonRect boundingBox, CancelTask cancel)
          Get all the Stations within a bounding box, allow user to cancel.
static TypedDataset TypedDatasetFactory.open(FeatureType datatype, NetcdfDataset ncd, CancelTask task, java.lang.StringBuilder errlog)
          Open a dataset as a TypedDataset.
static TypedDataset TypedDatasetFactory.open(FeatureType datatype, java.lang.String location, CancelTask task, java.lang.StringBuilder errlog)
          Open a dataset as a TypedDataset.
 TypedDataset TypedDatasetFactoryIF.open(NetcdfDataset ncd, CancelTask task, java.lang.StringBuilder errlog)
          Open a NetcdfDataset as a TypedDataset.
 

Uses of CancelTask in ucar.nc2.ft
 

Methods in ucar.nc2.ft with parameters of type CancelTask
 FeatureDataset FeatureDatasetFactory.open(FeatureType ftype, NetcdfDataset ncd, java.lang.Object analysis, CancelTask task, java.util.Formatter errlog)
          Open a NetcdfDataset as a FeatureDataset.
static FeatureDataset FeatureDatasetFactoryManager.open(FeatureType wantFeatureType, java.lang.String location, CancelTask task, java.util.Formatter errlog)
          Open a dataset as a FeatureDataset.
static FeatureDataset FeatureDatasetFactoryManager.wrap(FeatureType wantFeatureType, NetcdfDataset ncd, CancelTask task, java.util.Formatter errlog)
          Wrap a NetcdfDataset as a FeatureDataset.