Configuration

Configuration#

It is possible to specify additional parameters of the Dask based flood mapping algorithm. These settings are left for the expert user and allow, for example, to change the defaults size of the chunk size of the dask arrays as well as defining the STAC catalog from which to fetch the data.

User configuration#

These settings can be found in the user’s configuration directory.

from dask_flood_mapper.stac_config import get_user_config, load_config
get_user_config()
PosixPath('/home/runner/.config/dask_flood_mapper/config.yaml')

See the following output for the default settings.

load_config()
{'base': {'crs': 'EPSG:4326',
  'chunks': {'time': 1, 'latitude': 1300, 'longitude': 1300},
  'groupby': None},
 'api': 'https://stac.eodc.eu/api/v1'}

To our knowledge there is currently no other data storage besides EODC that provides the required static datasets required for the flood mapping algorithm.