flood-adapt 0.3.8__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 -1536
  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 -1846
  9. flood_adapt/adapter/sfincs_offshore.py +193 -193
  10. flood_adapt/config/config.py +248 -290
  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 -688
  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 -89
  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 -544
  92. flood_adapt/workflows/floodmap.py +85 -85
  93. flood_adapt/workflows/impacts_integrator.py +85 -82
  94. flood_adapt/workflows/scenario_runner.py +70 -70
  95. {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/LICENSE +674 -674
  96. {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/METADATA +866 -860
  97. flood_adapt-0.3.10.dist-info/RECORD +140 -0
  98. flood_adapt-0.3.8.dist-info/RECORD +0 -139
  99. {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/WHEEL +0 -0
  100. {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/top_level.txt +0 -0
@@ -1,153 +1,153 @@
1
- aggregateBy = []
2
-
3
- [[queries]]
4
- name = "FloodedHomes"
5
- description = "Homes likely to flood (Inundation Depth > 0.2) in 30 year period"
6
- select = "COUNT(*)"
7
- filter = "`Exceedance Probability` > 50 AND `Primary Object Type` = 'RES'"
8
- long_name = "Homes likely to flood in 30-year period (#)"
9
- show_in_metrics_table = "False"
10
-
11
- [[queries]]
12
- name = "ImpactedHomes2Y"
13
- description = "Homes impacted (Inundation Depth > 0.25) in the 2-year event"
14
- select = "COUNT(*)"
15
- filter = "`Inundation Depth (2Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
16
- long_name = "Flooded homes RP2"
17
- show_in_metrics_table = "True"
18
-
19
- [[queries]]
20
- name = "ImpactedHomes2YHighSVI"
21
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 2-year event"
22
- select = "COUNT(*)"
23
- filter = "`Inundation Depth (2Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
24
- long_name = "Highly vulnerable flooded homes RP2"
25
- show_in_metrics_table = "True"
26
-
27
- [[queries]]
28
- name = "ImpactedHomes2YLowSVI"
29
- description = "Less-vulnerable homes impacted (Inundation Depth > 0.25) in the 2-year event"
30
- select = "COUNT(*)"
31
- filter = "`Inundation Depth (2Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
32
- long_name = "Less vulnerable flooded homes RP2"
33
- show_in_metrics_table = "False"
34
-
35
- [[queries]]
36
- name = "ImpactedHomes5Y"
37
- description = "Homes impacted (Inundation Depth > 0.25) in the 5-year event"
38
- select = "COUNT(*)"
39
- filter = "`Inundation Depth (5Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
40
- long_name = "Flooded homes RP5"
41
- show_in_metrics_table = "True"
42
-
43
- [[queries]]
44
- name = "ImpactedHomes5YHighSVI"
45
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 5-year event"
46
- select = "COUNT(*)"
47
- filter = "`Inundation Depth (5Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
48
- long_name = "Highly vulnerable flooded homes RP5"
49
- show_in_metrics_table = "True"
50
-
51
- [[queries]]
52
- name = "ImpactedHomes5YLowSVI"
53
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 5-year event"
54
- select = "COUNT(*)"
55
- filter = "`Inundation Depth (5Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
56
- long_name = "Less vulnerable flooded homes RP5"
57
- show_in_metrics_table = "False"
58
-
59
- [[queries]]
60
- name = "ImpactedHomes10Y"
61
- description = "Homes impacted (Inundation Depth > 0.25) in the 10-year event"
62
- select = "COUNT(*)"
63
- filter = "`Inundation Depth (10Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
64
- long_name = "Flooded homes RP10"
65
- show_in_metrics_table = "True"
66
-
67
- [[queries]]
68
- name = "ImpactedHomes10YHighSVI"
69
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 10-year event"
70
- select = "COUNT(*)"
71
- filter = "`Inundation Depth (10Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
72
- long_name = "Highly vulnerable flooded homes RP10"
73
- show_in_metrics_table = "True"
74
-
75
- [[queries]]
76
- name = "ImpactedHomes10YLowSVI"
77
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 10-year event"
78
- select = "COUNT(*)"
79
- filter = "`Inundation Depth (10Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
80
- long_name = "Less vulnerable flooded homes RP10"
81
- show_in_metrics_table = "False"
82
-
83
- [[queries]]
84
- name = "ImpactedHomes25Y"
85
- description = "Homes impacted (Inundation Depth > 0.25) in the 25-year event"
86
- select = "COUNT(*)"
87
- filter = "`Inundation Depth (25Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
88
- long_name = "Flooded homes RP25"
89
- show_in_metrics_table = "True"
90
-
91
- [[queries]]
92
- name = "ImpactedHomes25YHighSVI"
93
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 25-year event"
94
- select = "COUNT(*)"
95
- filter = "`Inundation Depth (25Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
96
- long_name = "Highly vulnerable flooded homes RP25"
97
- show_in_metrics_table = "True"
98
-
99
- [[queries]]
100
- name = "ImpactedHomes25YLowSVI"
101
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 25-year event"
102
- select = "COUNT(*)"
103
- filter = "`Inundation Depth (25Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
104
- long_name = "Less vulnerable flooded homes RP25"
105
- show_in_metrics_table = "False"
106
-
107
- [[queries]]
108
- name = "ImpactedHomes50Y"
109
- description = "Homes impacted (Inundation Depth > 0.25) in the 50-year event"
110
- select = "COUNT(*)"
111
- filter = "`Inundation Depth (50Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
112
- long_name = "Flooded homes RP50"
113
- show_in_metrics_table = "True"
114
-
115
- [[queries]]
116
- name = "ImpactedHomes50YHighSVI"
117
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 50-year event"
118
- select = "COUNT(*)"
119
- filter = "`Inundation Depth (50Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
120
- long_name = "Highly vulnerable flooded homes RP50"
121
- show_in_metrics_table = "True"
122
-
123
- [[queries]]
124
- name = "ImpactedHomes50YLowSVI"
125
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 50-year event"
126
- select = "COUNT(*)"
127
- filter = "`Inundation Depth (50Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
128
- long_name = "Less vulnerable flooded homes RP50"
129
- show_in_metrics_table = "False"
130
-
131
- [[queries]]
132
- name = "ImpactedHomes100Y"
133
- description = "Homes impacted (Inundation Depth > 0.25) in the 100-year event"
134
- select = "COUNT(*)"
135
- filter = "`Inundation Depth (100Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
136
- long_name = "Flooded homes RP100"
137
- show_in_metrics_table = "True"
138
-
139
- [[queries]]
140
- name = "ImpactedHomes100YHighSVI"
141
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 100-year event"
142
- select = "COUNT(*)"
143
- filter = "`Inundation Depth (100Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
144
- long_name = "Highly vulnerable flooded homes RP100"
145
- show_in_metrics_table = "True"
146
-
147
- [[queries]]
148
- name = "ImpactedHomes100YLowSVI"
149
- description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 100-year event"
150
- select = "COUNT(*)"
151
- filter = "`Inundation Depth (100Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
152
- long_name = "Less vulnerable flooded homes RP100"
153
- show_in_metrics_table = "False"
1
+ aggregateBy = []
2
+
3
+ [[queries]]
4
+ name = "FloodedHomes"
5
+ description = "Homes likely to flood (Inundation Depth > 0.2) in 30 year period"
6
+ select = "COUNT(*)"
7
+ filter = "`Exceedance Probability` > 50 AND `Primary Object Type` = 'RES'"
8
+ long_name = "Homes likely to flood in 30-year period (#)"
9
+ show_in_metrics_table = "False"
10
+
11
+ [[queries]]
12
+ name = "ImpactedHomes2Y"
13
+ description = "Homes impacted (Inundation Depth > 0.25) in the 2-year event"
14
+ select = "COUNT(*)"
15
+ filter = "`Inundation Depth (2Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
16
+ long_name = "Flooded homes RP2"
17
+ show_in_metrics_table = "True"
18
+
19
+ [[queries]]
20
+ name = "ImpactedHomes2YHighSVI"
21
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 2-year event"
22
+ select = "COUNT(*)"
23
+ filter = "`Inundation Depth (2Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
24
+ long_name = "Highly vulnerable flooded homes RP2"
25
+ show_in_metrics_table = "True"
26
+
27
+ [[queries]]
28
+ name = "ImpactedHomes2YLowSVI"
29
+ description = "Less-vulnerable homes impacted (Inundation Depth > 0.25) in the 2-year event"
30
+ select = "COUNT(*)"
31
+ filter = "`Inundation Depth (2Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
32
+ long_name = "Less vulnerable flooded homes RP2"
33
+ show_in_metrics_table = "False"
34
+
35
+ [[queries]]
36
+ name = "ImpactedHomes5Y"
37
+ description = "Homes impacted (Inundation Depth > 0.25) in the 5-year event"
38
+ select = "COUNT(*)"
39
+ filter = "`Inundation Depth (5Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
40
+ long_name = "Flooded homes RP5"
41
+ show_in_metrics_table = "True"
42
+
43
+ [[queries]]
44
+ name = "ImpactedHomes5YHighSVI"
45
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 5-year event"
46
+ select = "COUNT(*)"
47
+ filter = "`Inundation Depth (5Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
48
+ long_name = "Highly vulnerable flooded homes RP5"
49
+ show_in_metrics_table = "True"
50
+
51
+ [[queries]]
52
+ name = "ImpactedHomes5YLowSVI"
53
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 5-year event"
54
+ select = "COUNT(*)"
55
+ filter = "`Inundation Depth (5Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
56
+ long_name = "Less vulnerable flooded homes RP5"
57
+ show_in_metrics_table = "False"
58
+
59
+ [[queries]]
60
+ name = "ImpactedHomes10Y"
61
+ description = "Homes impacted (Inundation Depth > 0.25) in the 10-year event"
62
+ select = "COUNT(*)"
63
+ filter = "`Inundation Depth (10Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
64
+ long_name = "Flooded homes RP10"
65
+ show_in_metrics_table = "True"
66
+
67
+ [[queries]]
68
+ name = "ImpactedHomes10YHighSVI"
69
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 10-year event"
70
+ select = "COUNT(*)"
71
+ filter = "`Inundation Depth (10Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
72
+ long_name = "Highly vulnerable flooded homes RP10"
73
+ show_in_metrics_table = "True"
74
+
75
+ [[queries]]
76
+ name = "ImpactedHomes10YLowSVI"
77
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 10-year event"
78
+ select = "COUNT(*)"
79
+ filter = "`Inundation Depth (10Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
80
+ long_name = "Less vulnerable flooded homes RP10"
81
+ show_in_metrics_table = "False"
82
+
83
+ [[queries]]
84
+ name = "ImpactedHomes25Y"
85
+ description = "Homes impacted (Inundation Depth > 0.25) in the 25-year event"
86
+ select = "COUNT(*)"
87
+ filter = "`Inundation Depth (25Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
88
+ long_name = "Flooded homes RP25"
89
+ show_in_metrics_table = "True"
90
+
91
+ [[queries]]
92
+ name = "ImpactedHomes25YHighSVI"
93
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 25-year event"
94
+ select = "COUNT(*)"
95
+ filter = "`Inundation Depth (25Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
96
+ long_name = "Highly vulnerable flooded homes RP25"
97
+ show_in_metrics_table = "True"
98
+
99
+ [[queries]]
100
+ name = "ImpactedHomes25YLowSVI"
101
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 25-year event"
102
+ select = "COUNT(*)"
103
+ filter = "`Inundation Depth (25Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
104
+ long_name = "Less vulnerable flooded homes RP25"
105
+ show_in_metrics_table = "False"
106
+
107
+ [[queries]]
108
+ name = "ImpactedHomes50Y"
109
+ description = "Homes impacted (Inundation Depth > 0.25) in the 50-year event"
110
+ select = "COUNT(*)"
111
+ filter = "`Inundation Depth (50Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
112
+ long_name = "Flooded homes RP50"
113
+ show_in_metrics_table = "True"
114
+
115
+ [[queries]]
116
+ name = "ImpactedHomes50YHighSVI"
117
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 50-year event"
118
+ select = "COUNT(*)"
119
+ filter = "`Inundation Depth (50Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
120
+ long_name = "Highly vulnerable flooded homes RP50"
121
+ show_in_metrics_table = "True"
122
+
123
+ [[queries]]
124
+ name = "ImpactedHomes50YLowSVI"
125
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 50-year event"
126
+ select = "COUNT(*)"
127
+ filter = "`Inundation Depth (50Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
128
+ long_name = "Less vulnerable flooded homes RP50"
129
+ show_in_metrics_table = "False"
130
+
131
+ [[queries]]
132
+ name = "ImpactedHomes100Y"
133
+ description = "Homes impacted (Inundation Depth > 0.25) in the 100-year event"
134
+ select = "COUNT(*)"
135
+ filter = "`Inundation Depth (100Y)` >= 0.25 AND `Primary Object Type` = 'RES'"
136
+ long_name = "Flooded homes RP100"
137
+ show_in_metrics_table = "True"
138
+
139
+ [[queries]]
140
+ name = "ImpactedHomes100YHighSVI"
141
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 100-year event"
142
+ select = "COUNT(*)"
143
+ filter = "`Inundation Depth (100Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` >= SVI_threshold"
144
+ long_name = "Highly vulnerable flooded homes RP100"
145
+ show_in_metrics_table = "True"
146
+
147
+ [[queries]]
148
+ name = "ImpactedHomes100YLowSVI"
149
+ description = "Highly vulnerable homes impacted (Inundation Depth > 0.25) in the 100-year event"
150
+ select = "COUNT(*)"
151
+ filter = "`Inundation Depth (100Y)` >= 0.25 AND `Primary Object Type` = 'RES' AND `SVI` < SVI_threshold"
152
+ long_name = "Less vulnerable flooded homes RP100"
153
+ show_in_metrics_table = "False"