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 Climate and Forecast (CF)
attributes in a NetCDF file.
|
Modifier and Type | Class and Description |
---|---|
class |
UnsupportedStorageException
Thrown when no
DataStoreProvider is found for a given storage object. |
Modifier and Type | Method and Description |
---|---|
Boolean |
DataStoreProvider.canOpen(StorageConnector storage)
Deprecated.
Replaced by
DataStoreProvider.probeContent(StorageConnector) . |
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. |
static DataStore |
DataStores.open(Object storage)
Creates a
DataStore for the given storage. |
abstract DataStore |
DataStoreProvider.open(StorageConnector storage)
Returns a data store implementation associated with this provider.
|
abstract ProbeResult |
DataStoreProvider.probeContent(StorageConnector storage)
Indicates if the given storage appears to be supported by the
DataStore s created by this provider. |
static String |
DataStores.probeContentType(Object storage)
Returns the MIME type of the storage file format, or
null if unknown or not applicable. |
Modifier and Type | Method and Description |
---|---|
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. |
ProbeResult |
NetcdfStoreProvider.probeContent(StorageConnector storage)
Returns
ProbeResult.SUPPORTED if the given storage appears to be supported by NetcdfStore . |
Constructor and Description |
---|
NetcdfStore(StorageConnector storage)
Creates a new NetCDF store from the given file, URL, stream or
NetcdfFile object. |
Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.