flood-mapping-tool / app /src /config_parameters.py
TCJ21's picture
upgraded to python3.12, uv and latest package versions
eb2388c
raw
history blame contribute delete
1.25 kB
"""Configuration file."""
params = {
# Title browser tab
"browser_title": "Flood mapping tool - 510",
# Data scientists involved
"data_scientists": {
"Daniele": "[email protected]",
},
# Urls
"url_github_repo": "https://github.com/mapaction/flood-extent-tool",
"url_sentinel_dataset": (
"https://developers.google.com/earth-engine/datasets/catalog/COPERNICUS_S1_GRD"
),
"url_sentinel_img": (
"https://sentinel.esa.int/documents/247904/4748961/Sentinel-1-Repeat-"
"Coverage-Frequency-Geometry-2021.jpg"
),
"url_sentinel_img_location": (
"https://sentinel.esa.int/web/sentinel/missions/sentinel-1/observation-scenario"
),
# Layout and styles
## Sidebar
"sidebar_header": "Flood Mapping Tool",
"sidebar_header_fontsize": "30px",
"sidebar_header_fontweight": "bold",
"about_box_background_color": "#dae7f4",
## Introduction and Documentation pages
"docs_fontsize": "1.2rem",
"docs_caption_fontsize": "1rem",
## Tool page
"expander_header_fontsize": "23px",
"widget_header_fontsize": "18px",
"button_text_fontsize": "24px",
"button_text_fontweight": "bold",
"button_background_color": "#dae7f4",
}