Package | Description |
---|---|
org.apache.sis.storage |
Data store base types for retrieving and saving geospatial data
in various storage formats.
|
org.apache.sis.storage.netcdf |
Maps ISO metadata elements from/to the CF-compliant
attributes in a NetCDF file.
|
Modifier and Type | Method and Description |
---|---|
abstract Boolean |
DataStoreProvider.canOpen(StorageConnector storage)
Returns
TRUE if the given storage appears to be supported by the DataStore . |
abstract void |
DataStore.close()
Closes this data store and releases any underlying resources.
|
void |
StorageConnector.closeAllExcept(Object view)
Closes all streams and connections created by this
StorageConnector except the given view. |
abstract Metadata |
DataStore.getMetadata()
Returns information about the dataset as a whole.
|
<T> T |
StorageConnector.getStorageAs(Class<T> type)
Returns the storage as a view of the given type if possible, or
null otherwise. |
abstract DataStore |
DataStoreProvider.open(StorageConnector storage)
Returns a data store implementation associated with this provider.
|
Modifier and Type | Method and Description |
---|---|
Boolean |
NetcdfStoreProvider.canOpen(StorageConnector storage)
Returns
TRUE if the given storage appears to be supported by NetcdfStore . |
void |
NetcdfStore.close()
Closes this NetCDF store and releases any underlying resources.
|
Metadata |
NetcdfStore.getMetadata()
Returns information about the dataset as a whole.
|
DataStore |
NetcdfStoreProvider.open(StorageConnector storage)
Returns a
NetcdfStore implementation associated with this provider. |
Constructor and Description |
---|
NetcdfStore(StorageConnector storage)
Creates a new NetCDF store from the given file, URL, stream or
NetcdfFile object. |
Copyright © 2010–2013 The Apache Software Foundation. All rights reserved.