Package | Description |
---|---|
org.apache.sis.storage |
Data store base types for retrieving and saving geospatial data
in various storage formats.
|
org.apache.sis.storage.earthobservation |
Metadata readers for some format used in Earth observation (Landsat, MODIS).
|
org.apache.sis.storage.geotiff |
Maps ISO metadata elements from/to the GeoTIFF tags.
|
org.apache.sis.storage.netcdf |
Maps ISO metadata elements from/to the Climate and Forecast (CF)
attributes in a netCDF file.
|
Modifier and Type | Method and Description |
---|---|
abstract DataStore |
DataStoreProvider.open(StorageConnector connector)
Returns a data store implementation associated with this provider.
|
abstract ProbeResult |
DataStoreProvider.probeContent(StorageConnector connector)
Indicates if the given storage appears to be supported by the
DataStore s created by this provider. |
Constructor and Description |
---|
DataStore(DataStoreProvider provider,
StorageConnector connector)
Creates a new instance for the given storage (typically file or database).
|
DataStore(DataStore parent,
StorageConnector connector)
Creates a new instance as a child of another data store instance.
|
Modifier and Type | Method and Description |
---|---|
DataStore |
LandsatStoreProvider.open(StorageConnector connector)
Returns a
LandsatStore implementation associated with this provider. |
ProbeResult |
LandsatStoreProvider.probeContent(StorageConnector connector)
Returns
ProbeResult.SUPPORTED if the given storage appears to be supported by LandsatStore . |
Constructor and Description |
---|
LandsatStore(LandsatStoreProvider provider,
StorageConnector connector)
Creates a new Landsat store from the given file, URL, stream or character reader.
|
Modifier and Type | Method and Description |
---|---|
DataStore |
GeoTiffStoreProvider.open(StorageConnector connector)
Returns a
GeoTiffStore implementation associated with this provider. |
ProbeResult |
GeoTiffStoreProvider.probeContent(StorageConnector connector)
Returns
ProbeResult.SUPPORTED if the given storage appears to be supported by GeoTiffStore . |
Constructor and Description |
---|
GeoTiffStore(GeoTiffStoreProvider provider,
StorageConnector connector)
Creates a new GeoTIFF store from the given file, URL or stream object.
|
Modifier and Type | Method and Description |
---|---|
DataStore |
NetcdfStoreProvider.open(StorageConnector connector)
Returns a
NetcdfStore implementation associated with this provider. |
ProbeResult |
NetcdfStoreProvider.probeContent(StorageConnector connector)
Returns
ProbeResult.SUPPORTED if the given storage appears to be supported by NetcdfStore . |
Constructor and Description |
---|
NetcdfStore(NetcdfStoreProvider provider,
StorageConnector connector)
Creates a new netCDF store from the given file, URL, stream or
NetcdfFile object. |
NetcdfStore(StorageConnector connector)
Deprecated.
|
Copyright © 2010–2017 The Apache Software Foundation. All rights reserved.