-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
#116 online documentation
- Loading branch information
Showing
16 changed files
with
451 additions
and
73 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
.. _hazus: | ||
|
||
=============================================== | ||
HAZUS flood depth-damage functions | ||
=============================================== | ||
|
||
Users of **HydroMT-FIAT** can directly and easily make use of the depth-damage | ||
functions and repair values from `HAZUS | ||
<https://www.fema.gov/flood-maps/products-tools/hazus>`_. Hazus is a US-based | ||
program and the depth-damage functions are based on US data. The functions and | ||
values can be used only together with the `hydromt_fiat_catalog_USA.yml` and | ||
by providing the following values in the configuration file:: | ||
|
||
[setup_vulnerability] | ||
vulnerability_fn = "default_vulnerability_curves" | ||
vulnerability_identifiers_and_linking_fn = "default_hazus_iwr_linking" | ||
unit = "ft" | ||
|
||
[setup_exposure_vector] | ||
max_potential_damage = "hazus_max_potential_damages" | ||
unit = "m" | ||
|
||
|
||
The HAZUS flood depth-damage functions and replacement values are processed into an easy-to-use format | ||
for HydroMT-FIAT and stored in the ``hydromt_fiat/data`` folder. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. _exposure_vector: | ||
.. currentmodule:: hydromt_fiat.workflows.exposure_vector | ||
|
||
=============================== | ||
Exposure Module for Vector data | ||
=============================== | ||
|
||
Coming soon.. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.. _hazard: | ||
.. currentmodule:: hydromt_fiat.workflows.hazard | ||
|
||
======================= | ||
Hazard Module | ||
======================= | ||
|
||
Coming soon.. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.. _svi: | ||
.. currentmodule:: hydromt_fiat.workflows.social_vulnerability_index | ||
|
||
================================= | ||
Social Vulnerability Index Module | ||
================================= | ||
|
||
Coming soon.. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.. _vulnerability: | ||
.. currentmodule:: hydromt_fiat.workflows.vulnerability | ||
|
||
======================= | ||
Vulnerability Module | ||
======================= | ||
|
||
The vulnerability module contains functions to select vulnerability curves from | ||
existing (pre-defined) sources and transform them to a common | ||
`Delft-FIAT <https://github.com/Deltares/Delft-FIAT>`_ format, see vulnerability_format_. | ||
The currently available sources are :ref:`jrc` and :ref:`hazus`. | ||
|
||
Note that the terms vulnerability curves and damage functions are used interchangeably | ||
in this module and documentation. | ||
|
||
.. _vulnerability_format: | ||
|
||
Vulnerability CSV format | ||
------------------------ | ||
|
||
The format of a `Delft-FIAT <https://github.com/Deltares/Delft-FIAT>`_ vulnerability | ||
curve database is a csv file structured as follows: | ||
|
||
.. image:: /_static/format_vulnerability_curves.PNG | ||
:width: 300px | ||
:align: center | ||
:alt: Format vulnerability curves | ||
|
||
|
||
The first row contains the **unit** of the hazard values that are specified in the | ||
first column. The second row contains the **method** (mean or max) that should be | ||
used by FIAT to compute the hazard value for each asset when an aereal extraction | ||
method is used. This method links to the vulnerability curve specified in the same | ||
column below. For example, if the method of a certain vulnerability curves is set | ||
to `max`, the maximum value of the hazard values under the assets using that curve | ||
will be used to compute the damage. The third row contains the **name of the hazard | ||
and names of the damage functions**. | ||
|
Oops, something went wrong.