Uses of Class
org.apache.sis.storage.DataStore
-
Packages that use DataStore 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 DataStore in org.apache.sis.storage
Methods in org.apache.sis.storage that return DataStore Modifier and Type Method Description abstract DataStore
DataStoreProvider. open(StorageConnector connector)
Returns a data store implementation associated with this provider.DataStore
DataStoreProvider. open(ParameterValueGroup parameters)
Returns a data store implementation associated with this provider for the given parameters.static DataStore
DataStores. open(Object storage)
Creates aDataStore
for the given storage.Methods in org.apache.sis.storage with parameters of type DataStore Modifier and Type Method Description void
FeatureNaming. add(DataStore store, GenericName name, E value)
Adds a value for the given name if none exist.E
FeatureNaming. get(DataStore store, String name)
Returns the value associated to the given name.boolean
FeatureNaming. remove(DataStore store, GenericName name)
Removes the value associated to the given name.Method parameters in org.apache.sis.storage with type arguments of type DataStore Modifier and Type Method Description void
DataStore. addWarningListener(WarningListener<? super DataStore> listener)
Deprecated.Replaced byaddListener(listener, WarningEvent.class)
.void
DataStore. removeWarningListener(WarningListener<? super DataStore> listener)
Deprecated.Replaced byremoveListener(listener, WarningEvent.class)
.Constructors in org.apache.sis.storage with parameters of type DataStore Constructor Description DataStore(DataStore parent, StorageConnector connector)
Creates a new instance as a child of another data store instance. -
Uses of DataStore in org.apache.sis.storage.earthobservation
Subclasses of DataStore in org.apache.sis.storage.earthobservation Modifier and Type Class Description class
LandsatStore
Parses Landsat metadata as ISO 19115 Metadata object.Methods in org.apache.sis.storage.earthobservation that return DataStore Modifier and Type Method Description DataStore
LandsatStoreProvider. open(StorageConnector connector)
Returns aLandsatStore
implementation associated with this provider. -
Uses of DataStore in org.apache.sis.storage.geotiff
Subclasses of DataStore in org.apache.sis.storage.geotiff Modifier and Type Class Description class
GeoTiffStore
A data store backed by GeoTIFF files.Methods in org.apache.sis.storage.geotiff that return DataStore Modifier and Type Method Description DataStore
GeoTiffStoreProvider. open(StorageConnector connector)
Returns aGeoTiffStore
implementation associated with this provider. -
Uses of DataStore in org.apache.sis.storage.netcdf
Subclasses of DataStore in org.apache.sis.storage.netcdf Modifier and Type Class Description class
NetcdfStore
A data store backed by netCDF files.Methods in org.apache.sis.storage.netcdf that return DataStore Modifier and Type Method Description DataStore
NetcdfStoreProvider. open(StorageConnector connector)
Returns aNetcdfStore
implementation associated with this provider. -
Uses of DataStore in org.apache.sis.storage.sql
Subclasses of DataStore in org.apache.sis.storage.sql Modifier and Type Class Description class
SQLStore
A data store capable to read and create features from a spatial database.Methods in org.apache.sis.storage.sql that return DataStore Modifier and Type Method Description DataStore
SQLStoreProvider. open(StorageConnector connector)
Returns aSQLStore
implementation associated with this provider.DataStore
SQLStoreProvider. open(ParameterValueGroup parameters)
Returns a data store implementation associated with this provider for the given parameters.
-