Uses of Class
org.apache.sis.storage.StorageConnector
-
Packages that use StorageConnector 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.org.apache.sis.storage.sql Data store capable to read and create features from a JDBC connection to a database. -
-
Uses of StorageConnector in org.apache.sis.storage
Methods in org.apache.sis.storage with parameters of type StorageConnector Modifier and Type Method 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 theDataStore
s created by this provider.Constructors in org.apache.sis.storage with parameters of type StorageConnector Constructor 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. -
Uses of StorageConnector in org.apache.sis.storage.earthobservation
Methods in org.apache.sis.storage.earthobservation with parameters of type StorageConnector Modifier and Type Method Description DataStore
LandsatStoreProvider. open(StorageConnector connector)
Returns aLandsatStore
implementation associated with this provider.ProbeResult
LandsatStoreProvider. probeContent(StorageConnector connector)
ReturnsProbeResult.SUPPORTED
if the given storage appears to be supported byLandsatStore
.Constructors in org.apache.sis.storage.earthobservation with parameters of type StorageConnector Constructor Description LandsatStore(LandsatStoreProvider provider, StorageConnector connector)
Creates a new Landsat store from the given file, URL, stream or character reader. -
Uses of StorageConnector in org.apache.sis.storage.geotiff
Methods in org.apache.sis.storage.geotiff with parameters of type StorageConnector Modifier and Type Method Description DataStore
GeoTiffStoreProvider. open(StorageConnector connector)
Returns aGeoTiffStore
implementation associated with this provider.ProbeResult
GeoTiffStoreProvider. probeContent(StorageConnector connector)
ReturnsProbeResult.SUPPORTED
if the given storage appears to be supported byGeoTiffStore
.Constructors in org.apache.sis.storage.geotiff with parameters of type StorageConnector Constructor Description GeoTiffStore(GeoTiffStoreProvider provider, StorageConnector connector)
Creates a new GeoTIFF store from the given file, URL or stream object. -
Uses of StorageConnector in org.apache.sis.storage.netcdf
Methods in org.apache.sis.storage.netcdf with parameters of type StorageConnector Modifier and Type Method Description DataStore
NetcdfStoreProvider. open(StorageConnector connector)
Returns aNetcdfStore
implementation associated with this provider.ProbeResult
NetcdfStoreProvider. probeContent(StorageConnector connector)
ReturnsProbeResult.SUPPORTED
if the given storage appears to be supported byNetcdfStore
.Constructors in org.apache.sis.storage.netcdf with parameters of type StorageConnector Constructor Description NetcdfStore(NetcdfStoreProvider provider, StorageConnector connector)
Creates a new netCDF store from the given file, URL, stream orNetcdfFile
object. -
Uses of StorageConnector in org.apache.sis.storage.sql
Methods in org.apache.sis.storage.sql with parameters of type StorageConnector Modifier and Type Method Description DataStore
SQLStoreProvider. open(StorageConnector connector)
Returns aSQLStore
implementation associated with this provider.ProbeResult
SQLStoreProvider. probeContent(StorageConnector connector)
ReturnsProbeResult.SUPPORTED
if the given storage appears to be supported bySQLStore
.Constructors in org.apache.sis.storage.sql with parameters of type StorageConnector Constructor Description SQLStore(SQLStoreProvider provider, StorageConnector connector, GenericName... tableNames)
Creates a new instance for the given storage.
-