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 DataStoreDataStoreProvider. open(StorageConnector connector)Returns a data store implementation associated with this provider.DataStoreDataStoreProvider. open(ParameterValueGroup parameters)Returns a data store implementation associated with this provider for the given parameters.static DataStoreDataStores. open(Object storage)Creates aDataStorefor the given storage.Methods in org.apache.sis.storage with parameters of type DataStore Modifier and Type Method Description voidFeatureNaming. add(DataStore store, GenericName name, E value)Adds a value for the given name if none exist.EFeatureNaming. get(DataStore store, String name)Returns the value associated to the given name.booleanFeatureNaming. 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 voidDataStore. addWarningListener(WarningListener<? super DataStore> listener)Deprecated.Replaced byaddListener(listener, WarningEvent.class).voidDataStore. 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 classLandsatStoreParses Landsat metadata as ISO 19115 Metadata object.Methods in org.apache.sis.storage.earthobservation that return DataStore Modifier and Type Method Description DataStoreLandsatStoreProvider. open(StorageConnector connector)Returns aLandsatStoreimplementation 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 classGeoTiffStoreA data store backed by GeoTIFF files.Methods in org.apache.sis.storage.geotiff that return DataStore Modifier and Type Method Description DataStoreGeoTiffStoreProvider. open(StorageConnector connector)Returns aGeoTiffStoreimplementation 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 classNetcdfStoreA data store backed by netCDF files.Methods in org.apache.sis.storage.netcdf that return DataStore Modifier and Type Method Description DataStoreNetcdfStoreProvider. open(StorageConnector connector)Returns aNetcdfStoreimplementation 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 classSQLStoreA 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 DataStoreSQLStoreProvider. open(StorageConnector connector)Returns aSQLStoreimplementation associated with this provider.DataStoreSQLStoreProvider. open(ParameterValueGroup parameters)Returns a data store implementation associated with this provider for the given parameters.
-