Package org.apache.sis.storage.netcdf
Class NetcdfStore
-
- All Implemented Interfaces:
AutoCloseable,Aggregate,Resource,Localized
public class NetcdfStore extends DataStore implements Aggregate
A data store backed by netCDF files. Instances of this data store are created byNetcdfStoreProvider.open(StorageConnector).- Since:
- 0.3
- See Also:
NetcdfStoreProvider
Defined in the
sis-netcdfmodule
-
-
Constructor Summary
Constructors Constructor Description NetcdfStore(NetcdfStoreProvider provider, StorageConnector connector)Creates a new netCDF store from the given file, URL, stream orNetcdfFileobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends StoreEvent>
voidaddListener(Class<T> eventType, StoreListener<? super T> listener)Registers a listener to notify when the specified kind of event occurs in this data store.voidclose()Closes this netCDF store and releases any underlying resources.Collection<Resource>components()Returns the resources (features or coverages) in this netCDF store.VersiongetConventionVersion()Returns the version number of the Climate and Forecast (CF) conventions used in the netCDF file.Optional<GenericName>getIdentifier()Returns an identifier constructed from global attributes or the filename of the netCDF file.MetadatagetMetadata()Returns information about the dataset as a whole.Optional<ParameterValueGroup>getOpenParameters()Returns the parameters used to open this netCDF data store.StringtoString()Returns a string representation of this netCDF store for debugging purpose.-
Methods inherited from class DataStore
addWarningListener, findResource, getDisplayName, getLocale, getProvider, removeListener, removeWarningListener, setLocale
-
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface Resource
removeListener
-
-
-
-
Constructor Detail
-
NetcdfStore
public NetcdfStore(NetcdfStoreProvider provider, StorageConnector connector) throws DataStoreException
Creates a new netCDF store from the given file, URL, stream orNetcdfFileobject. This constructor invokesStorageConnector.closeAllExcept(Object), keeping open only the needed resource.- Parameters:
provider- the factory that created thisDataStoreinstance, ornullif unspecified.connector- information about the storage (URL, stream,NetcdfFileinstance, etc).- Throws:
DataStoreException- if an error occurred while opening the netCDF file.- Since:
- 0.8
-
-
Method Detail
-
getOpenParameters
public Optional<ParameterValueGroup> getOpenParameters()
Returns the parameters used to open this netCDF data store. If non-null, the parameters are described byNetcdfStoreProvider.getOpenParameters()and contains at least a parameter named "location" with aURIvalue. This method may returnnullif the storage input can not be described by a URI (for example a netCDF file reading directly from aReadableByteChannel).- Specified by:
getOpenParametersin classDataStore- Returns:
- parameters used for opening this data store.
- Since:
- 0.8
-
getConventionVersion
public Version getConventionVersion() throws DataStoreException
Returns the version number of the Climate and Forecast (CF) conventions used in the netCDF file. The use of CF convention is mandated by the OGC 11-165r2 standard (CF-netCDF3 Data Model Extension standard).- Returns:
- CF-convention version, or
nullif no information about CF convention has been found. - Throws:
DataStoreException- if an error occurred while reading the data.- Since:
- 0.8
-
getIdentifier
public Optional<GenericName> getIdentifier() throws DataStoreException
Returns an identifier constructed from global attributes or the filename of the netCDF file.- Specified by:
getIdentifierin interfaceResource- Overrides:
getIdentifierin classDataStore- Returns:
- the identifier fetched from global attributes or the filename. May be absent.
- Throws:
DataStoreException- if an error occurred while fetching the identifier.- Since:
- 1.0
-
getMetadata
public Metadata getMetadata() throws DataStoreException
Returns information about the dataset as a whole. The returned metadata object can contain information such as the spatiotemporal extent of the dataset, contact information about the creator or distributor, data quality, usage constraints and more.- Specified by:
getMetadatain interfaceResource- Specified by:
getMetadatain classDataStore- Returns:
- information about the dataset.
- Throws:
DataStoreException- if an error occurred while reading the data.
-
components
public Collection<Resource> components() throws DataStoreException
Returns the resources (features or coverages) in this netCDF store.- Specified by:
componentsin interfaceAggregate- Returns:
- children resources that are components of this netCDF store.
- Throws:
DataStoreException- if an error occurred while fetching the components.- Since:
- 0.8
-
addListener
public <T extends StoreEvent> void addListener(Class<T> eventType, StoreListener<? super T> listener)
Registers a listener to notify when the specified kind of event occurs in this data store. The current implementation of this data store can emit onlyWarningEvents; any listener specified for another kind of events will be ignored.- Specified by:
addListenerin interfaceResource- Overrides:
addListenerin classDataStore
-
close
public void close() throws DataStoreExceptionCloses this netCDF store and releases any underlying resources.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein classDataStore- Throws:
DataStoreException- if an error occurred while closing the netCDF file.
-
toString
public String toString()
Returns a string representation of this netCDF store for debugging purpose. The content of the string returned by this method may change in any future SIS version.- Overrides:
toStringin classDataStore- Returns:
- a string representation of this data store for debugging purpose.
-
-