flood-adapt 1.0.6__py3-none-any.whl → 1.1.1__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.
- flood_adapt/__init__.py +1 -2
- flood_adapt/adapter/fiat_adapter.py +12 -7
- flood_adapt/adapter/sfincs_adapter.py +20 -23
- flood_adapt/config/fiat.py +1 -1
- flood_adapt/config/gui.py +185 -8
- flood_adapt/config/hazard.py +1 -1
- flood_adapt/database_builder/database_builder.py +155 -129
- flood_adapt/database_builder/metrics_utils.py +1834 -0
- flood_adapt/dbs_classes/database.py +4 -4
- flood_adapt/dbs_classes/dbs_static.py +2 -2
- flood_adapt/flood_adapt.py +65 -14
- flood_adapt/misc/utils.py +29 -10
- flood_adapt/objects/forcing/plotting.py +4 -4
- flood_adapt/objects/measures/measures.py +3 -1
- flood_adapt/workflows/benefit_runner.py +3 -2
- {flood_adapt-1.0.6.dist-info → flood_adapt-1.1.1.dist-info}/METADATA +13 -124
- {flood_adapt-1.0.6.dist-info → flood_adapt-1.1.1.dist-info}/RECORD +21 -41
- flood_adapt/database_builder/templates/infographics/OSM/config_charts.toml +0 -90
- flood_adapt/database_builder/templates/infographics/OSM/config_people.toml +0 -57
- flood_adapt/database_builder/templates/infographics/OSM/config_risk_charts.toml +0 -121
- flood_adapt/database_builder/templates/infographics/OSM/config_roads.toml +0 -65
- flood_adapt/database_builder/templates/infographics/US_NSI/config_charts.toml +0 -126
- flood_adapt/database_builder/templates/infographics/US_NSI/config_people.toml +0 -60
- flood_adapt/database_builder/templates/infographics/US_NSI/config_risk_charts.toml +0 -121
- flood_adapt/database_builder/templates/infographics/US_NSI/config_roads.toml +0 -65
- flood_adapt/database_builder/templates/infographics/US_NSI/styles.css +0 -45
- flood_adapt/database_builder/templates/infometrics/OSM/metrics_additional_risk_configs.toml +0 -4
- flood_adapt/database_builder/templates/infometrics/OSM/with_SVI/infographic_metrics_config.toml +0 -143
- flood_adapt/database_builder/templates/infometrics/OSM/with_SVI/infographic_metrics_config_risk.toml +0 -153
- flood_adapt/database_builder/templates/infometrics/OSM/without_SVI/infographic_metrics_config.toml +0 -127
- flood_adapt/database_builder/templates/infometrics/OSM/without_SVI/infographic_metrics_config_risk.toml +0 -57
- flood_adapt/database_builder/templates/infometrics/US_NSI/metrics_additional_risk_configs.toml +0 -4
- flood_adapt/database_builder/templates/infometrics/US_NSI/with_SVI/infographic_metrics_config.toml +0 -191
- flood_adapt/database_builder/templates/infometrics/US_NSI/with_SVI/infographic_metrics_config_risk.toml +0 -153
- flood_adapt/database_builder/templates/infometrics/US_NSI/without_SVI/infographic_metrics_config.toml +0 -178
- flood_adapt/database_builder/templates/infometrics/US_NSI/without_SVI/infographic_metrics_config_risk.toml +0 -57
- flood_adapt/database_builder/templates/infometrics/mandatory_metrics_config.toml +0 -9
- flood_adapt/database_builder/templates/infometrics/mandatory_metrics_config_risk.toml +0 -65
- /flood_adapt/database_builder/templates/infographics/{OSM/styles.css → styles.css} +0 -0
- {flood_adapt-1.0.6.dist-info → flood_adapt-1.1.1.dist-info}/LICENSE +0 -0
- {flood_adapt-1.0.6.dist-info → flood_adapt-1.1.1.dist-info}/WHEEL +0 -0
- {flood_adapt-1.0.6.dist-info → flood_adapt-1.1.1.dist-info}/top_level.txt +0 -0
|
@@ -1,90 +0,0 @@
|
|
|
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: 1.5 m<br>
|
|
88
|
-
Destroyed: >1.5 m"""
|
|
89
|
-
image="https://openclipart.org/image/800px/302413"
|
|
90
|
-
scale=0.1
|
|
@@ -1,57 +0,0 @@
|
|
|
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 +0,0 @@
|
|
|
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,65 +0,0 @@
|
|
|
1
|
-
[Charts]
|
|
2
|
-
[Charts.Flooded_roads]
|
|
3
|
-
Name = "Flooded Roads"
|
|
4
|
-
|
|
5
|
-
[Categories]
|
|
6
|
-
[Categories.Slightly_Flooded]
|
|
7
|
-
Name = "Slightly Flooded"
|
|
8
|
-
Color = "#D5DEE1"
|
|
9
|
-
Image = "{image_path}/walking_person.png"
|
|
10
|
-
[Categories.Minor_Flooded]
|
|
11
|
-
Name = "Minor Flooded"
|
|
12
|
-
Color = "#88A2AA"
|
|
13
|
-
Image = "{image_path}/car.png"
|
|
14
|
-
[Categories.Major_Flooded]
|
|
15
|
-
Name = "Major Flooded"
|
|
16
|
-
Color = "#88A2AA"
|
|
17
|
-
Image = "{image_path}/truck.png"
|
|
18
|
-
[Categories.Fully_Flooded]
|
|
19
|
-
Name = "Fully Flooded"
|
|
20
|
-
Color = "#88A2AA"
|
|
21
|
-
Image = "{image_path}/ambulance.png"
|
|
22
|
-
|
|
23
|
-
[Slices]
|
|
24
|
-
[Slices.Slightly_Flooded]
|
|
25
|
-
Name = "Slightly Flooded"
|
|
26
|
-
Query = "SlightlyFloodedRoads"
|
|
27
|
-
Chart = "Flooded Roads"
|
|
28
|
-
Category = "Slightly Flooded"
|
|
29
|
-
[Slices.Minor_Flooded]
|
|
30
|
-
Name = "Minor Flooded"
|
|
31
|
-
Query = "MinorFloodedRoads"
|
|
32
|
-
Chart = "Flooded Roads"
|
|
33
|
-
Category = "Minor Flooded"
|
|
34
|
-
[Slices.Major_Flooded]
|
|
35
|
-
Name = "Major Flooded"
|
|
36
|
-
Query = "MajorFloodedRoads"
|
|
37
|
-
Chart = "Flooded Roads"
|
|
38
|
-
Category = "Major Flooded"
|
|
39
|
-
[Slices.Fully_Flooded]
|
|
40
|
-
Name = "Fully Flooded"
|
|
41
|
-
Query = "FullyFloodedRoads"
|
|
42
|
-
Chart = "Flooded Roads"
|
|
43
|
-
Category = "Fully Flooded"
|
|
44
|
-
|
|
45
|
-
[Other]
|
|
46
|
-
[Other.Plot]
|
|
47
|
-
image_scale = 0.1
|
|
48
|
-
numbers_font = 20
|
|
49
|
-
height = 350
|
|
50
|
-
width = 600
|
|
51
|
-
[Other.Title]
|
|
52
|
-
text = "Interrupted roads"
|
|
53
|
-
font = 30
|
|
54
|
-
[Other.Subtitle]
|
|
55
|
-
font = 25
|
|
56
|
-
[Other.Y_axis_title]
|
|
57
|
-
text = "Kilometers"
|
|
58
|
-
[Other.Info]
|
|
59
|
-
text="""Thresholds:<br>
|
|
60
|
-
Pedestrians: 0.05 m<br>
|
|
61
|
-
Cars: 0.10 m<br>
|
|
62
|
-
Trucks: 0.25 m<br>
|
|
63
|
-
Rescue vehicles: 0.40 m"""
|
|
64
|
-
image="{image_path}/info.png"
|
|
65
|
-
scale=0.1
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
[Charts]
|
|
2
|
-
[Charts.Homes]
|
|
3
|
-
Name = "Homes"
|
|
4
|
-
Image = "{image_path}/house.png"
|
|
5
|
-
[Charts.Businesses]
|
|
6
|
-
Name = "Businesses"
|
|
7
|
-
Image = "{image_path}/cart.png"
|
|
8
|
-
[Charts.Health]
|
|
9
|
-
Name = "Health facilities"
|
|
10
|
-
Image = "{image_path}/hospital.png"
|
|
11
|
-
[Charts.Schools]
|
|
12
|
-
Name = "Schools"
|
|
13
|
-
Image = "{image_path}/school.png"
|
|
14
|
-
[Charts.Emergency]
|
|
15
|
-
Name = "Emergency facilities"
|
|
16
|
-
Image = "{image_path}/firetruck.png"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
[Categories]
|
|
20
|
-
[Categories.Minor]
|
|
21
|
-
Name = "Minor"
|
|
22
|
-
Color = "#ffa500"
|
|
23
|
-
[Categories.Major]
|
|
24
|
-
Name = "Major"
|
|
25
|
-
Color = "#ff0000"
|
|
26
|
-
[Categories.Destroyed]
|
|
27
|
-
Name = "Destroyed"
|
|
28
|
-
Color = "#000000"
|
|
29
|
-
|
|
30
|
-
[Slices]
|
|
31
|
-
[Slices.Minor_Homes]
|
|
32
|
-
Name = "Minor Homes"
|
|
33
|
-
Query = "ResidentialMinorCount"
|
|
34
|
-
Chart = "Homes"
|
|
35
|
-
Category = "Minor"
|
|
36
|
-
[Slices.Major_Homes]
|
|
37
|
-
Name = "Major Homes"
|
|
38
|
-
Query = "ResidentialMajorCount"
|
|
39
|
-
Chart = "Homes"
|
|
40
|
-
Category = "Major"
|
|
41
|
-
[Slices.Destroyed_Homes]
|
|
42
|
-
Name = "Destroyed Homes"
|
|
43
|
-
Query = "ResidentialDestroyedCount"
|
|
44
|
-
Chart = "Homes"
|
|
45
|
-
Category = "Destroyed"
|
|
46
|
-
[Slices.Minor_Businesses]
|
|
47
|
-
Name = "Minor Businesses"
|
|
48
|
-
Query = "CommercialMinorCount"
|
|
49
|
-
Chart = "Businesses"
|
|
50
|
-
Category = "Minor"
|
|
51
|
-
[Slices.Major_Businesses]
|
|
52
|
-
Name = "Major Businesses"
|
|
53
|
-
Query = "CommercialMajorCount"
|
|
54
|
-
Chart = "Businesses"
|
|
55
|
-
Category = "Major"
|
|
56
|
-
[Slices.Destroyed_Businesses]
|
|
57
|
-
Name = "Destroyed Businesses"
|
|
58
|
-
Query = "CommercialDestroyedCount"
|
|
59
|
-
Chart = "Businesses"
|
|
60
|
-
Category = "Destroyed"
|
|
61
|
-
[Slices.Minor_Health]
|
|
62
|
-
Name = "Minor Health"
|
|
63
|
-
Query = "HealthMinorCount"
|
|
64
|
-
Chart = "Health facilities"
|
|
65
|
-
Category = "Minor"
|
|
66
|
-
[Slices.Major_Health]
|
|
67
|
-
Name = "Major Health"
|
|
68
|
-
Query = "HealthMajorCount"
|
|
69
|
-
Chart = "Health facilities"
|
|
70
|
-
Category = "Major"
|
|
71
|
-
[Slices.Destroyed_Health]
|
|
72
|
-
Name = "Destroyed Health"
|
|
73
|
-
Query = "HealthDestroyedCount"
|
|
74
|
-
Chart = "Health facilities"
|
|
75
|
-
Category = "Destroyed"
|
|
76
|
-
[Slices.Minor_Schools]
|
|
77
|
-
Name = "Minor Schools"
|
|
78
|
-
Query = "SchoolsMinorCount"
|
|
79
|
-
Chart = "Schools"
|
|
80
|
-
Category = "Minor"
|
|
81
|
-
[Slices.Major_Schools]
|
|
82
|
-
Name = "Major Schools"
|
|
83
|
-
Query = "SchoolsMajorCount"
|
|
84
|
-
Chart = "Schools"
|
|
85
|
-
Category = "Major"
|
|
86
|
-
[Slices.Destroyed_Schools]
|
|
87
|
-
Name = "Destroyed Schools"
|
|
88
|
-
Query = "SchoolsDestroyedCount"
|
|
89
|
-
Chart = "Schools"
|
|
90
|
-
Category = "Destroyed"
|
|
91
|
-
[Slices.Minor_Emergency]
|
|
92
|
-
Name = "Minor Emergency"
|
|
93
|
-
Query = "EmergencyMinorCount"
|
|
94
|
-
Chart = "Emergency facilities"
|
|
95
|
-
Category = "Minor"
|
|
96
|
-
[Slices.Major_Emergency]
|
|
97
|
-
Name = "Major Emergency"
|
|
98
|
-
Query = "EmergencyMajorCount"
|
|
99
|
-
Chart = "Emergency facilities"
|
|
100
|
-
Category = "Major"
|
|
101
|
-
[Slices.Destroyed_Emergency]
|
|
102
|
-
Name = "Destroyed Emergency"
|
|
103
|
-
Query = "EmergencyDestroyedCount"
|
|
104
|
-
Chart = "Emergency facilities"
|
|
105
|
-
Category = "Destroyed"
|
|
106
|
-
|
|
107
|
-
[Other]
|
|
108
|
-
[Other.Plot]
|
|
109
|
-
image_scale = 0.15
|
|
110
|
-
numbers_font = 20
|
|
111
|
-
height = 350
|
|
112
|
-
width = 1200
|
|
113
|
-
[Other.Title]
|
|
114
|
-
text = "Building damage"
|
|
115
|
-
font = 30
|
|
116
|
-
[Other.Subtitle]
|
|
117
|
-
font = 25
|
|
118
|
-
[Other.Legend]
|
|
119
|
-
font = 20
|
|
120
|
-
[Other.Info]
|
|
121
|
-
text="""Thresholds:<br>
|
|
122
|
-
Minor: <= 1 feet<br>
|
|
123
|
-
Major: > 1 and <= 6 feet<br>
|
|
124
|
-
Destroyed: > 6 feet<br>"""
|
|
125
|
-
image="https://openclipart.org/image/800px/302413"
|
|
126
|
-
scale=0.1
|
|
@@ -1,60 +0,0 @@
|
|
|
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
|
-
'Since some homes do not have an SVI,<br>
|
|
57
|
-
total number of homes might be different <br>
|
|
58
|
-
between this and the above graph.'"""
|
|
59
|
-
image="https://openclipart.org/image/800px/302413"
|
|
60
|
-
scale=0.1
|
|
@@ -1,121 +0,0 @@
|
|
|
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
|