flood-adapt 0.3.9__py3-none-any.whl → 0.3.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. flood_adapt/__init__.py +26 -22
  2. flood_adapt/adapter/__init__.py +9 -9
  3. flood_adapt/adapter/fiat_adapter.py +1541 -1541
  4. flood_adapt/adapter/interface/hazard_adapter.py +70 -70
  5. flood_adapt/adapter/interface/impact_adapter.py +36 -36
  6. flood_adapt/adapter/interface/model_adapter.py +89 -89
  7. flood_adapt/adapter/interface/offshore.py +19 -19
  8. flood_adapt/adapter/sfincs_adapter.py +1848 -1848
  9. flood_adapt/adapter/sfincs_offshore.py +193 -193
  10. flood_adapt/config/config.py +248 -248
  11. flood_adapt/config/fiat.py +219 -219
  12. flood_adapt/config/gui.py +331 -331
  13. flood_adapt/config/sfincs.py +481 -336
  14. flood_adapt/config/site.py +129 -129
  15. flood_adapt/database_builder/database_builder.py +2210 -2210
  16. flood_adapt/database_builder/templates/default_units/imperial.toml +9 -9
  17. flood_adapt/database_builder/templates/default_units/metric.toml +9 -9
  18. flood_adapt/database_builder/templates/green_infra_table/green_infra_lookup_table.csv +10 -10
  19. flood_adapt/database_builder/templates/infographics/OSM/config_charts.toml +90 -90
  20. flood_adapt/database_builder/templates/infographics/OSM/config_people.toml +57 -57
  21. flood_adapt/database_builder/templates/infographics/OSM/config_risk_charts.toml +121 -121
  22. flood_adapt/database_builder/templates/infographics/OSM/config_roads.toml +65 -65
  23. flood_adapt/database_builder/templates/infographics/OSM/styles.css +45 -45
  24. flood_adapt/database_builder/templates/infographics/US_NSI/config_charts.toml +126 -126
  25. flood_adapt/database_builder/templates/infographics/US_NSI/config_people.toml +60 -60
  26. flood_adapt/database_builder/templates/infographics/US_NSI/config_risk_charts.toml +121 -121
  27. flood_adapt/database_builder/templates/infographics/US_NSI/config_roads.toml +65 -65
  28. flood_adapt/database_builder/templates/infographics/US_NSI/styles.css +45 -45
  29. flood_adapt/database_builder/templates/infometrics/OSM/metrics_additional_risk_configs.toml +4 -4
  30. flood_adapt/database_builder/templates/infometrics/OSM/with_SVI/infographic_metrics_config.toml +143 -143
  31. flood_adapt/database_builder/templates/infometrics/OSM/with_SVI/infographic_metrics_config_risk.toml +153 -153
  32. flood_adapt/database_builder/templates/infometrics/OSM/without_SVI/infographic_metrics_config.toml +127 -127
  33. flood_adapt/database_builder/templates/infometrics/OSM/without_SVI/infographic_metrics_config_risk.toml +57 -57
  34. flood_adapt/database_builder/templates/infometrics/US_NSI/metrics_additional_risk_configs.toml +4 -4
  35. flood_adapt/database_builder/templates/infometrics/US_NSI/with_SVI/infographic_metrics_config.toml +191 -191
  36. flood_adapt/database_builder/templates/infometrics/US_NSI/with_SVI/infographic_metrics_config_risk.toml +153 -153
  37. flood_adapt/database_builder/templates/infometrics/US_NSI/without_SVI/infographic_metrics_config.toml +178 -178
  38. flood_adapt/database_builder/templates/infometrics/US_NSI/without_SVI/infographic_metrics_config_risk.toml +57 -57
  39. flood_adapt/database_builder/templates/infometrics/mandatory_metrics_config.toml +9 -9
  40. flood_adapt/database_builder/templates/infometrics/mandatory_metrics_config_risk.toml +65 -65
  41. flood_adapt/database_builder/templates/output_layers/bin_colors.toml +5 -5
  42. flood_adapt/database_builder.py +16 -16
  43. flood_adapt/dbs_classes/__init__.py +21 -21
  44. flood_adapt/dbs_classes/database.py +495 -684
  45. flood_adapt/dbs_classes/dbs_benefit.py +77 -76
  46. flood_adapt/dbs_classes/dbs_event.py +61 -59
  47. flood_adapt/dbs_classes/dbs_measure.py +112 -111
  48. flood_adapt/dbs_classes/dbs_projection.py +34 -34
  49. flood_adapt/dbs_classes/dbs_scenario.py +137 -137
  50. flood_adapt/dbs_classes/dbs_static.py +274 -273
  51. flood_adapt/dbs_classes/dbs_strategy.py +130 -129
  52. flood_adapt/dbs_classes/dbs_template.py +279 -278
  53. flood_adapt/dbs_classes/interface/database.py +107 -139
  54. flood_adapt/dbs_classes/interface/element.py +121 -121
  55. flood_adapt/dbs_classes/interface/static.py +47 -47
  56. flood_adapt/flood_adapt.py +1207 -1178
  57. flood_adapt/misc/database_user.py +16 -16
  58. flood_adapt/misc/exceptions.py +22 -0
  59. flood_adapt/misc/log.py +183 -183
  60. flood_adapt/misc/path_builder.py +54 -54
  61. flood_adapt/misc/utils.py +185 -185
  62. flood_adapt/objects/__init__.py +82 -82
  63. flood_adapt/objects/benefits/benefits.py +61 -61
  64. flood_adapt/objects/events/event_factory.py +135 -135
  65. flood_adapt/objects/events/event_set.py +88 -84
  66. flood_adapt/objects/events/events.py +234 -234
  67. flood_adapt/objects/events/historical.py +58 -58
  68. flood_adapt/objects/events/hurricane.py +68 -67
  69. flood_adapt/objects/events/synthetic.py +46 -50
  70. flood_adapt/objects/forcing/__init__.py +92 -92
  71. flood_adapt/objects/forcing/csv.py +68 -68
  72. flood_adapt/objects/forcing/discharge.py +66 -66
  73. flood_adapt/objects/forcing/forcing.py +150 -150
  74. flood_adapt/objects/forcing/forcing_factory.py +182 -182
  75. flood_adapt/objects/forcing/meteo_handler.py +93 -93
  76. flood_adapt/objects/forcing/netcdf.py +40 -40
  77. flood_adapt/objects/forcing/plotting.py +453 -429
  78. flood_adapt/objects/forcing/rainfall.py +98 -98
  79. flood_adapt/objects/forcing/tide_gauge.py +191 -191
  80. flood_adapt/objects/forcing/time_frame.py +90 -90
  81. flood_adapt/objects/forcing/timeseries.py +564 -564
  82. flood_adapt/objects/forcing/unit_system.py +580 -580
  83. flood_adapt/objects/forcing/waterlevels.py +108 -108
  84. flood_adapt/objects/forcing/wind.py +124 -124
  85. flood_adapt/objects/measures/measure_factory.py +92 -92
  86. flood_adapt/objects/measures/measures.py +529 -529
  87. flood_adapt/objects/object_model.py +74 -68
  88. flood_adapt/objects/projections/projections.py +103 -103
  89. flood_adapt/objects/scenarios/scenarios.py +22 -22
  90. flood_adapt/objects/strategies/strategies.py +89 -89
  91. flood_adapt/workflows/benefit_runner.py +579 -554
  92. flood_adapt/workflows/floodmap.py +85 -85
  93. flood_adapt/workflows/impacts_integrator.py +85 -85
  94. flood_adapt/workflows/scenario_runner.py +70 -70
  95. {flood_adapt-0.3.9.dist-info → flood_adapt-0.3.10.dist-info}/LICENSE +674 -674
  96. {flood_adapt-0.3.9.dist-info → flood_adapt-0.3.10.dist-info}/METADATA +866 -865
  97. flood_adapt-0.3.10.dist-info/RECORD +140 -0
  98. flood_adapt-0.3.9.dist-info/RECORD +0 -139
  99. {flood_adapt-0.3.9.dist-info → flood_adapt-0.3.10.dist-info}/WHEEL +0 -0
  100. {flood_adapt-0.3.9.dist-info → flood_adapt-0.3.10.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,9 @@
1
- default_length_units = "feet"
2
- default_distance_units = "miles"
3
- default_area_units = "sf"
4
- default_volume_units = "cf"
5
- default_velocity_units = "knots"
6
- default_direction_units = "deg N"
7
- default_discharge_units = "cfs"
8
- default_intensity_units = "inch/hr"
9
- default_cumulative_units = "inch"
1
+ default_length_units = "feet"
2
+ default_distance_units = "miles"
3
+ default_area_units = "sf"
4
+ default_volume_units = "cf"
5
+ default_velocity_units = "knots"
6
+ default_direction_units = "deg N"
7
+ default_discharge_units = "cfs"
8
+ default_intensity_units = "inch/hr"
9
+ default_cumulative_units = "inch"
@@ -1,9 +1,9 @@
1
- default_length_units = "meters"
2
- default_distance_units = "meters"
3
- default_area_units = "m2"
4
- default_volume_units = "m3"
5
- default_velocity_units = "m/s"
6
- default_direction_units = "deg N"
7
- default_discharge_units = "m3/s"
8
- default_intensity_units = "mm/hr"
9
- default_cumulative_units = "millimeters"
1
+ default_length_units = "meters"
2
+ default_distance_units = "meters"
3
+ default_area_units = "m2"
4
+ default_volume_units = "m3"
5
+ default_velocity_units = "m/s"
6
+ default_direction_units = "deg N"
7
+ default_discharge_units = "m3/s"
8
+ default_intensity_units = "mm/hr"
9
+ default_cumulative_units = "millimeters"
@@ -1,10 +1,10 @@
1
- Measure,Infiltration depth (feet),types
2
- Rainwater detention pond (dry pond),2.6,water_square
3
- Infiltration fields,2.6,water_square
4
- Water square,2.5,water_square
5
- Bioswale,1.1,"water_square, greening"
6
- Rainwater retention pond (wet pond),1,"water_square, greening"
7
- Hollow roads,0.3,"water_square, greening"
8
- Permeable pavement,0.3,"water_square, greening"
9
- Adding trees,0.2,"water_square, greening"
10
- Remove pavement to plant green,0.2,"water_square, greening"
1
+ Measure,Infiltration depth (feet),types
2
+ Rainwater detention pond (dry pond),2.6,water_square
3
+ Infiltration fields,2.6,water_square
4
+ Water square,2.5,water_square
5
+ Bioswale,1.1,"water_square, greening"
6
+ Rainwater retention pond (wet pond),1,"water_square, greening"
7
+ Hollow roads,0.3,"water_square, greening"
8
+ Permeable pavement,0.3,"water_square, greening"
9
+ Adding trees,0.2,"water_square, greening"
10
+ Remove pavement to plant green,0.2,"water_square, greening"
@@ -1,90 +1,90 @@
1
- [Charts]
2
- [Charts.Homes]
3
- Name = "Homes"
4
- Image = "{image_path}/house.png"
5
- [Charts.Commercial]
6
- Name = "Commercial"
7
- Image = "{image_path}/cart.png"
8
- [Charts.Industry]
9
- Name = "Industrial facilities"
10
- Image = "{image_path}/factory.png"
11
-
12
-
13
- [Categories]
14
- [Categories.Minor]
15
- Name = "Minor"
16
- Color = "#ffa500"
17
- [Categories.Major]
18
- Name = "Major"
19
- Color = "#ff0000"
20
- [Categories.Destroyed]
21
- Name = "Destroyed"
22
- Color = "#000000"
23
-
24
- [Slices]
25
- [Slices.Minor_Homes]
26
- Name = "Minor Homes"
27
- Query = "ResidentialMinorCount"
28
- Chart = "Homes"
29
- Category = "Minor"
30
- [Slices.Major_Homes]
31
- Name = "Major Homes"
32
- Query = "ResidentialMajorCount"
33
- Chart = "Homes"
34
- Category = "Major"
35
- [Slices.Destroyed_Homes]
36
- Name = "Destroyed Homes"
37
- Query = "ResidentialDestroyedCount"
38
- Chart = "Homes"
39
- Category = "Destroyed"
40
- [Slices.Minor_Commercial]
41
- Name = "Minor Commercial"
42
- Query = "CommercialMinorCount"
43
- Chart = "Commercial"
44
- Category = "Minor"
45
- [Slices.Major_Commercial]
46
- Name = "Major Commercial"
47
- Query = "CommercialMajorCount"
48
- Chart = "Commercial"
49
- Category = "Major"
50
- [Slices.Destroyed_Commercial]
51
- Name = "Destroyed Commercial"
52
- Query = "CommercialDestroyedCount"
53
- Chart = "Commercial"
54
- Category = "Destroyed"
55
- [Slices.Minor_Industry]
56
- Name = "Minor Industrial"
57
- Query = "IndustrialMinorCount"
58
- Chart = "Industrial facilities"
59
- Category = "Minor"
60
- [Slices.Major_Industrial]
61
- Name = "Major Industrial"
62
- Query = "IndustrialMajorCount"
63
- Chart = "Industrial facilities"
64
- Category = "Major"
65
- [Slices.Destroyed_Industrial]
66
- Name = "Destroyed Industrial"
67
- Query = "IndustrialDestroyedCount"
68
- Chart = "Industrial facilities"
69
- Category = "Destroyed"
70
-
71
- [Other]
72
- [Other.Plot]
73
- image_scale = 0.15
74
- numbers_font = 20
75
- height = 350
76
- width = 1200
77
- [Other.Title]
78
- text = "Building damage"
79
- font = 30
80
- [Other.Subtitle]
81
- font = 25
82
- [Other.Legend]
83
- font = 20
84
- [Other.Info]
85
- text="""Inundation depth thresholds:<br>
86
- Minor: 0.25 m<br>
87
- Major: 2.0 m<br>
88
- Destroyed: >2.0 m"""
89
- image="https://openclipart.org/image/800px/302413"
90
- scale=0.1
1
+ [Charts]
2
+ [Charts.Homes]
3
+ Name = "Homes"
4
+ Image = "{image_path}/house.png"
5
+ [Charts.Commercial]
6
+ Name = "Commercial"
7
+ Image = "{image_path}/cart.png"
8
+ [Charts.Industry]
9
+ Name = "Industrial facilities"
10
+ Image = "{image_path}/factory.png"
11
+
12
+
13
+ [Categories]
14
+ [Categories.Minor]
15
+ Name = "Minor"
16
+ Color = "#ffa500"
17
+ [Categories.Major]
18
+ Name = "Major"
19
+ Color = "#ff0000"
20
+ [Categories.Destroyed]
21
+ Name = "Destroyed"
22
+ Color = "#000000"
23
+
24
+ [Slices]
25
+ [Slices.Minor_Homes]
26
+ Name = "Minor Homes"
27
+ Query = "ResidentialMinorCount"
28
+ Chart = "Homes"
29
+ Category = "Minor"
30
+ [Slices.Major_Homes]
31
+ Name = "Major Homes"
32
+ Query = "ResidentialMajorCount"
33
+ Chart = "Homes"
34
+ Category = "Major"
35
+ [Slices.Destroyed_Homes]
36
+ Name = "Destroyed Homes"
37
+ Query = "ResidentialDestroyedCount"
38
+ Chart = "Homes"
39
+ Category = "Destroyed"
40
+ [Slices.Minor_Commercial]
41
+ Name = "Minor Commercial"
42
+ Query = "CommercialMinorCount"
43
+ Chart = "Commercial"
44
+ Category = "Minor"
45
+ [Slices.Major_Commercial]
46
+ Name = "Major Commercial"
47
+ Query = "CommercialMajorCount"
48
+ Chart = "Commercial"
49
+ Category = "Major"
50
+ [Slices.Destroyed_Commercial]
51
+ Name = "Destroyed Commercial"
52
+ Query = "CommercialDestroyedCount"
53
+ Chart = "Commercial"
54
+ Category = "Destroyed"
55
+ [Slices.Minor_Industry]
56
+ Name = "Minor Industrial"
57
+ Query = "IndustrialMinorCount"
58
+ Chart = "Industrial facilities"
59
+ Category = "Minor"
60
+ [Slices.Major_Industrial]
61
+ Name = "Major Industrial"
62
+ Query = "IndustrialMajorCount"
63
+ Chart = "Industrial facilities"
64
+ Category = "Major"
65
+ [Slices.Destroyed_Industrial]
66
+ Name = "Destroyed Industrial"
67
+ Query = "IndustrialDestroyedCount"
68
+ Chart = "Industrial facilities"
69
+ Category = "Destroyed"
70
+
71
+ [Other]
72
+ [Other.Plot]
73
+ image_scale = 0.15
74
+ numbers_font = 20
75
+ height = 350
76
+ width = 1200
77
+ [Other.Title]
78
+ text = "Building damage"
79
+ font = 30
80
+ [Other.Subtitle]
81
+ font = 25
82
+ [Other.Legend]
83
+ font = 20
84
+ [Other.Info]
85
+ text="""Inundation depth thresholds:<br>
86
+ Minor: 0.25 m<br>
87
+ Major: 2.0 m<br>
88
+ Destroyed: >2.0 m"""
89
+ image="https://openclipart.org/image/800px/302413"
90
+ scale=0.1
@@ -1,57 +1,57 @@
1
- [Charts]
2
- [Charts.Impacted]
3
- Name = "Impacted"
4
- Image = "{image_path}/house.png"
5
- [Charts.Displaced]
6
- Name = "Displaced"
7
- Image = "{image_path}/house.png"
8
-
9
- [Categories]
10
- [Categories.LowVulnerability]
11
- Name = "LowVulnerability"
12
- Color = "#D5DEE1"
13
- [Categories.HighVulnerability]
14
- Name = "HighVulnerability"
15
- Color = "#88A2AA"
16
-
17
- [Slices]
18
- [Slices.Flooded_Low_Vulnerability_People]
19
- Name = "Flooded low vulnerability homes"
20
- Query = "FloodedLowVulnerability"
21
- Chart = "Impacted"
22
- Category = "LowVulnerability"
23
- [Slices.Flooded_High_Vulnerability_People]
24
- Name = "Flooded high vulnerability homes"
25
- Query = "FloodedHighVulnerability"
26
- Chart = "Impacted"
27
- Category = "HighVulnerability"
28
- [Slices.Displaced_Low_Vulnerability_People]
29
- Name = "Displaced low vulnerability homes"
30
- Query = "DisplacedLowVulnerability"
31
- Chart = "Displaced"
32
- Category = "LowVulnerability"
33
- [Slices.Displaced_High_Vulnerability_People]
34
- Name = "Displaced high vulnerability homes"
35
- Query = "DisplacedHighVulnerability"
36
- Chart = "Displaced"
37
- Category = "HighVulnerability"
38
-
39
- [Other]
40
- [Other.Plot]
41
- image_scale = 0.15
42
- numbers_font = 20
43
- height = 350
44
- width = 600
45
- [Other.Title]
46
- text = "Homes"
47
- font = 30
48
- [Other.Subtitle]
49
- font = 25
50
- [Other.Legend]
51
- font = 20
52
- [Other.Info]
53
- text="""Thresholds:<br>
54
- Impacted: <= 6 feet<br>
55
- Displaced: > 6 feet<br>"""
56
- image="https://openclipart.org/image/800px/302413"
57
- scale=0.1
1
+ [Charts]
2
+ [Charts.Impacted]
3
+ Name = "Impacted"
4
+ Image = "{image_path}/house.png"
5
+ [Charts.Displaced]
6
+ Name = "Displaced"
7
+ Image = "{image_path}/house.png"
8
+
9
+ [Categories]
10
+ [Categories.LowVulnerability]
11
+ Name = "LowVulnerability"
12
+ Color = "#D5DEE1"
13
+ [Categories.HighVulnerability]
14
+ Name = "HighVulnerability"
15
+ Color = "#88A2AA"
16
+
17
+ [Slices]
18
+ [Slices.Flooded_Low_Vulnerability_People]
19
+ Name = "Flooded low vulnerability homes"
20
+ Query = "FloodedLowVulnerability"
21
+ Chart = "Impacted"
22
+ Category = "LowVulnerability"
23
+ [Slices.Flooded_High_Vulnerability_People]
24
+ Name = "Flooded high vulnerability homes"
25
+ Query = "FloodedHighVulnerability"
26
+ Chart = "Impacted"
27
+ Category = "HighVulnerability"
28
+ [Slices.Displaced_Low_Vulnerability_People]
29
+ Name = "Displaced low vulnerability homes"
30
+ Query = "DisplacedLowVulnerability"
31
+ Chart = "Displaced"
32
+ Category = "LowVulnerability"
33
+ [Slices.Displaced_High_Vulnerability_People]
34
+ Name = "Displaced high vulnerability homes"
35
+ Query = "DisplacedHighVulnerability"
36
+ Chart = "Displaced"
37
+ Category = "HighVulnerability"
38
+
39
+ [Other]
40
+ [Other.Plot]
41
+ image_scale = 0.15
42
+ numbers_font = 20
43
+ height = 350
44
+ width = 600
45
+ [Other.Title]
46
+ text = "Homes"
47
+ font = 30
48
+ [Other.Subtitle]
49
+ font = 25
50
+ [Other.Legend]
51
+ font = 20
52
+ [Other.Info]
53
+ text="""Thresholds:<br>
54
+ Impacted: <= 6 feet<br>
55
+ Displaced: > 6 feet<br>"""
56
+ image="https://openclipart.org/image/800px/302413"
57
+ scale=0.1
@@ -1,121 +1,121 @@
1
- [Charts]
2
- [Charts.2Y]
3
- Name = "2Y"
4
- Image = "{image_path}/house.png"
5
- [Charts.5Y]
6
- Name = "5Y"
7
- Image = "{image_path}/house.png"
8
- [Charts.10Y]
9
- Name = "10Y"
10
- Image = "{image_path}/house.png"
11
- [Charts.25Y]
12
- Name = "25Y"
13
- Image = "{image_path}/house.png"
14
- [Charts.50Y]
15
- Name = "50Y"
16
- Image = "{image_path}/house.png"
17
- [Charts.100Y]
18
- Name = "100Y"
19
- Image = "{image_path}/house.png"
20
-
21
- [Categories]
22
- [Categories.LowVulnerability]
23
- Name = "LowVulnerability"
24
- Color = "#D5DEE1"
25
- [Categories.HighVulnerability]
26
- Name = "HighVulnerability"
27
- Color = "#88A2AA"
28
-
29
- [Slices]
30
- [Slices.Low_Vulnerability_2Y]
31
- Name = "2Y Low Vulnerability"
32
- Query = "ImpactedHomes2YLowSVI"
33
- Chart = "2Y"
34
- Category = "LowVulnerability"
35
- [Slices.High_Vulnerability_2Y]
36
- Name = "2Y High Vulnerability"
37
- Query = "ImpactedHomes2YHighSVI"
38
- Chart = "2Y"
39
- Category = "HighVulnerability"
40
- [Slices.Low_Vulnerability_5Y]
41
- Name = "5Y Low Vulnerability"
42
- Query = "ImpactedHomes5YLowSVI"
43
- Chart = "5Y"
44
- Category = "LowVulnerability"
45
- [Slices.High_Vulnerability_5Y]
46
- Name = "5Y High Vulnerability"
47
- Query = "ImpactedHomes5YHighSVI"
48
- Chart = "5Y"
49
- Category = "HighVulnerability"
50
- [Slices.Low_Vulnerability_10Y]
51
- Name = "10Y Low Vulnerability"
52
- Query = "ImpactedHomes10YLowSVI"
53
- Chart = "10Y"
54
- Category = "LowVulnerability"
55
- [Slices.High_Vulnerability_10Y]
56
- Name = "10Y High Vulnerability"
57
- Query = "ImpactedHomes10YHighSVI"
58
- Chart = "10Y"
59
- Category = "HighVulnerability"
60
- [Slices.Low_Vulnerability_25Y]
61
- Name = "25Y Low Vulnerability"
62
- Query = "ImpactedHomes25YLowSVI"
63
- Chart = "25Y"
64
- Category = "LowVulnerability"
65
- [Slices.High_Vulnerability_25Y]
66
- Name = "25Y High Vulnerability"
67
- Query = "ImpactedHomes25YHighSVI"
68
- Chart = "25Y"
69
- Category = "HighVulnerability"
70
- [Slices.Low_Vulnerability_50Y]
71
- Name = "50Y Low Vulnerability"
72
- Query = "ImpactedHomes50YLowSVI"
73
- Chart = "50Y"
74
- Category = "LowVulnerability"
75
- [Slices.High_Vulnerability_50Y]
76
- Name = "50Y High Vulnerability"
77
- Query = "ImpactedHomes50YHighSVI"
78
- Chart = "50Y"
79
- Category = "HighVulnerability"
80
- [Slices.Low_Vulnerability_100Y]
81
- Name = "100Y Low Vulnerability"
82
- Query = "ImpactedHomes100YLowSVI"
83
- Chart = "100Y"
84
- Category = "LowVulnerability"
85
- [Slices.High_Vulnerability_100Y]
86
- Name = "100Y High Vulnerability"
87
- Query = "ImpactedHomes100YHighSVI"
88
- Chart = "100Y"
89
- Category = "HighVulnerability"
90
-
91
- [Other]
92
- [Other.Expected_Damages]
93
- title = "Expected annual damages"
94
- image = "{image_path}/money.png"
95
- image_scale = 1.3
96
- title_font_size = 25
97
- numbers_font_size = 20
98
- height = 300
99
-
100
- [Other.Flooded]
101
- title = "Number of homes with a high chance of being flooded in a 30-year period"
102
- image = "{image_path}/house.png"
103
- image_scale = 0.7
104
- title_font_size = 25
105
- numbers_font_size = 20
106
- height = 300
107
-
108
- [Other.Return_Periods]
109
- title = "Buildings impacted"
110
- font_size = 25
111
- image_scale = 0.2
112
- numbers_font = 15
113
- subtitle_font = 22
114
- legend_font = 20
115
- plot_height = 300
116
-
117
- [Other.Info]
118
- text="""Thresholds:<br>
119
- Impacted: >= 0.25 feet<br>"""
120
- image="https://openclipart.org/image/800px/302413"
121
- scale=0.1
1
+ [Charts]
2
+ [Charts.2Y]
3
+ Name = "2Y"
4
+ Image = "{image_path}/house.png"
5
+ [Charts.5Y]
6
+ Name = "5Y"
7
+ Image = "{image_path}/house.png"
8
+ [Charts.10Y]
9
+ Name = "10Y"
10
+ Image = "{image_path}/house.png"
11
+ [Charts.25Y]
12
+ Name = "25Y"
13
+ Image = "{image_path}/house.png"
14
+ [Charts.50Y]
15
+ Name = "50Y"
16
+ Image = "{image_path}/house.png"
17
+ [Charts.100Y]
18
+ Name = "100Y"
19
+ Image = "{image_path}/house.png"
20
+
21
+ [Categories]
22
+ [Categories.LowVulnerability]
23
+ Name = "LowVulnerability"
24
+ Color = "#D5DEE1"
25
+ [Categories.HighVulnerability]
26
+ Name = "HighVulnerability"
27
+ Color = "#88A2AA"
28
+
29
+ [Slices]
30
+ [Slices.Low_Vulnerability_2Y]
31
+ Name = "2Y Low Vulnerability"
32
+ Query = "ImpactedHomes2YLowSVI"
33
+ Chart = "2Y"
34
+ Category = "LowVulnerability"
35
+ [Slices.High_Vulnerability_2Y]
36
+ Name = "2Y High Vulnerability"
37
+ Query = "ImpactedHomes2YHighSVI"
38
+ Chart = "2Y"
39
+ Category = "HighVulnerability"
40
+ [Slices.Low_Vulnerability_5Y]
41
+ Name = "5Y Low Vulnerability"
42
+ Query = "ImpactedHomes5YLowSVI"
43
+ Chart = "5Y"
44
+ Category = "LowVulnerability"
45
+ [Slices.High_Vulnerability_5Y]
46
+ Name = "5Y High Vulnerability"
47
+ Query = "ImpactedHomes5YHighSVI"
48
+ Chart = "5Y"
49
+ Category = "HighVulnerability"
50
+ [Slices.Low_Vulnerability_10Y]
51
+ Name = "10Y Low Vulnerability"
52
+ Query = "ImpactedHomes10YLowSVI"
53
+ Chart = "10Y"
54
+ Category = "LowVulnerability"
55
+ [Slices.High_Vulnerability_10Y]
56
+ Name = "10Y High Vulnerability"
57
+ Query = "ImpactedHomes10YHighSVI"
58
+ Chart = "10Y"
59
+ Category = "HighVulnerability"
60
+ [Slices.Low_Vulnerability_25Y]
61
+ Name = "25Y Low Vulnerability"
62
+ Query = "ImpactedHomes25YLowSVI"
63
+ Chart = "25Y"
64
+ Category = "LowVulnerability"
65
+ [Slices.High_Vulnerability_25Y]
66
+ Name = "25Y High Vulnerability"
67
+ Query = "ImpactedHomes25YHighSVI"
68
+ Chart = "25Y"
69
+ Category = "HighVulnerability"
70
+ [Slices.Low_Vulnerability_50Y]
71
+ Name = "50Y Low Vulnerability"
72
+ Query = "ImpactedHomes50YLowSVI"
73
+ Chart = "50Y"
74
+ Category = "LowVulnerability"
75
+ [Slices.High_Vulnerability_50Y]
76
+ Name = "50Y High Vulnerability"
77
+ Query = "ImpactedHomes50YHighSVI"
78
+ Chart = "50Y"
79
+ Category = "HighVulnerability"
80
+ [Slices.Low_Vulnerability_100Y]
81
+ Name = "100Y Low Vulnerability"
82
+ Query = "ImpactedHomes100YLowSVI"
83
+ Chart = "100Y"
84
+ Category = "LowVulnerability"
85
+ [Slices.High_Vulnerability_100Y]
86
+ Name = "100Y High Vulnerability"
87
+ Query = "ImpactedHomes100YHighSVI"
88
+ Chart = "100Y"
89
+ Category = "HighVulnerability"
90
+
91
+ [Other]
92
+ [Other.Expected_Damages]
93
+ title = "Expected annual damages"
94
+ image = "{image_path}/money.png"
95
+ image_scale = 1.3
96
+ title_font_size = 25
97
+ numbers_font_size = 20
98
+ height = 300
99
+
100
+ [Other.Flooded]
101
+ title = "Number of homes with a high chance of being flooded in a 30-year period"
102
+ image = "{image_path}/house.png"
103
+ image_scale = 0.7
104
+ title_font_size = 25
105
+ numbers_font_size = 20
106
+ height = 300
107
+
108
+ [Other.Return_Periods]
109
+ title = "Buildings impacted"
110
+ font_size = 25
111
+ image_scale = 0.2
112
+ numbers_font = 15
113
+ subtitle_font = 22
114
+ legend_font = 20
115
+ plot_height = 300
116
+
117
+ [Other.Info]
118
+ text="""Thresholds:<br>
119
+ Impacted: >= 0.25 feet<br>"""
120
+ image="https://openclipart.org/image/800px/302413"
121
+ scale=0.1