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.
- flood_adapt/__init__.py +26 -22
- flood_adapt/adapter/__init__.py +9 -9
- flood_adapt/adapter/fiat_adapter.py +1541 -1536
- flood_adapt/adapter/interface/hazard_adapter.py +70 -70
- flood_adapt/adapter/interface/impact_adapter.py +36 -36
- flood_adapt/adapter/interface/model_adapter.py +89 -89
- flood_adapt/adapter/interface/offshore.py +19 -19
- flood_adapt/adapter/sfincs_adapter.py +1848 -1846
- flood_adapt/adapter/sfincs_offshore.py +193 -193
- flood_adapt/config/config.py +248 -290
- flood_adapt/config/fiat.py +219 -219
- flood_adapt/config/gui.py +331 -331
- flood_adapt/config/sfincs.py +481 -336
- flood_adapt/config/site.py +129 -129
- flood_adapt/database_builder/database_builder.py +2210 -2210
- flood_adapt/database_builder/templates/default_units/imperial.toml +9 -9
- flood_adapt/database_builder/templates/default_units/metric.toml +9 -9
- flood_adapt/database_builder/templates/green_infra_table/green_infra_lookup_table.csv +10 -10
- flood_adapt/database_builder/templates/infographics/OSM/config_charts.toml +90 -90
- flood_adapt/database_builder/templates/infographics/OSM/config_people.toml +57 -57
- flood_adapt/database_builder/templates/infographics/OSM/config_risk_charts.toml +121 -121
- flood_adapt/database_builder/templates/infographics/OSM/config_roads.toml +65 -65
- flood_adapt/database_builder/templates/infographics/OSM/styles.css +45 -45
- flood_adapt/database_builder/templates/infographics/US_NSI/config_charts.toml +126 -126
- flood_adapt/database_builder/templates/infographics/US_NSI/config_people.toml +60 -60
- flood_adapt/database_builder/templates/infographics/US_NSI/config_risk_charts.toml +121 -121
- flood_adapt/database_builder/templates/infographics/US_NSI/config_roads.toml +65 -65
- flood_adapt/database_builder/templates/infographics/US_NSI/styles.css +45 -45
- flood_adapt/database_builder/templates/infometrics/OSM/metrics_additional_risk_configs.toml +4 -4
- flood_adapt/database_builder/templates/infometrics/OSM/with_SVI/infographic_metrics_config.toml +143 -143
- flood_adapt/database_builder/templates/infometrics/OSM/with_SVI/infographic_metrics_config_risk.toml +153 -153
- flood_adapt/database_builder/templates/infometrics/OSM/without_SVI/infographic_metrics_config.toml +127 -127
- flood_adapt/database_builder/templates/infometrics/OSM/without_SVI/infographic_metrics_config_risk.toml +57 -57
- flood_adapt/database_builder/templates/infometrics/US_NSI/metrics_additional_risk_configs.toml +4 -4
- flood_adapt/database_builder/templates/infometrics/US_NSI/with_SVI/infographic_metrics_config.toml +191 -191
- flood_adapt/database_builder/templates/infometrics/US_NSI/with_SVI/infographic_metrics_config_risk.toml +153 -153
- flood_adapt/database_builder/templates/infometrics/US_NSI/without_SVI/infographic_metrics_config.toml +178 -178
- flood_adapt/database_builder/templates/infometrics/US_NSI/without_SVI/infographic_metrics_config_risk.toml +57 -57
- flood_adapt/database_builder/templates/infometrics/mandatory_metrics_config.toml +9 -9
- flood_adapt/database_builder/templates/infometrics/mandatory_metrics_config_risk.toml +65 -65
- flood_adapt/database_builder/templates/output_layers/bin_colors.toml +5 -5
- flood_adapt/database_builder.py +16 -16
- flood_adapt/dbs_classes/__init__.py +21 -21
- flood_adapt/dbs_classes/database.py +495 -688
- flood_adapt/dbs_classes/dbs_benefit.py +77 -76
- flood_adapt/dbs_classes/dbs_event.py +61 -59
- flood_adapt/dbs_classes/dbs_measure.py +112 -111
- flood_adapt/dbs_classes/dbs_projection.py +34 -34
- flood_adapt/dbs_classes/dbs_scenario.py +137 -137
- flood_adapt/dbs_classes/dbs_static.py +274 -273
- flood_adapt/dbs_classes/dbs_strategy.py +130 -129
- flood_adapt/dbs_classes/dbs_template.py +279 -278
- flood_adapt/dbs_classes/interface/database.py +107 -139
- flood_adapt/dbs_classes/interface/element.py +121 -121
- flood_adapt/dbs_classes/interface/static.py +47 -47
- flood_adapt/flood_adapt.py +1207 -1178
- flood_adapt/misc/database_user.py +16 -16
- flood_adapt/misc/exceptions.py +22 -0
- flood_adapt/misc/log.py +183 -183
- flood_adapt/misc/path_builder.py +54 -54
- flood_adapt/misc/utils.py +185 -185
- flood_adapt/objects/__init__.py +82 -82
- flood_adapt/objects/benefits/benefits.py +61 -61
- flood_adapt/objects/events/event_factory.py +135 -135
- flood_adapt/objects/events/event_set.py +88 -84
- flood_adapt/objects/events/events.py +234 -234
- flood_adapt/objects/events/historical.py +58 -58
- flood_adapt/objects/events/hurricane.py +68 -67
- flood_adapt/objects/events/synthetic.py +46 -50
- flood_adapt/objects/forcing/__init__.py +92 -92
- flood_adapt/objects/forcing/csv.py +68 -68
- flood_adapt/objects/forcing/discharge.py +66 -66
- flood_adapt/objects/forcing/forcing.py +150 -150
- flood_adapt/objects/forcing/forcing_factory.py +182 -182
- flood_adapt/objects/forcing/meteo_handler.py +93 -93
- flood_adapt/objects/forcing/netcdf.py +40 -40
- flood_adapt/objects/forcing/plotting.py +453 -429
- flood_adapt/objects/forcing/rainfall.py +98 -98
- flood_adapt/objects/forcing/tide_gauge.py +191 -191
- flood_adapt/objects/forcing/time_frame.py +90 -90
- flood_adapt/objects/forcing/timeseries.py +564 -564
- flood_adapt/objects/forcing/unit_system.py +580 -580
- flood_adapt/objects/forcing/waterlevels.py +108 -108
- flood_adapt/objects/forcing/wind.py +124 -124
- flood_adapt/objects/measures/measure_factory.py +92 -92
- flood_adapt/objects/measures/measures.py +529 -529
- flood_adapt/objects/object_model.py +74 -68
- flood_adapt/objects/projections/projections.py +103 -89
- flood_adapt/objects/scenarios/scenarios.py +22 -22
- flood_adapt/objects/strategies/strategies.py +89 -89
- flood_adapt/workflows/benefit_runner.py +579 -544
- flood_adapt/workflows/floodmap.py +85 -85
- flood_adapt/workflows/impacts_integrator.py +85 -82
- flood_adapt/workflows/scenario_runner.py +70 -70
- {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/LICENSE +674 -674
- {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/METADATA +866 -860
- flood_adapt-0.3.10.dist-info/RECORD +140 -0
- flood_adapt-0.3.8.dist-info/RECORD +0 -139
- {flood_adapt-0.3.8.dist-info → flood_adapt-0.3.10.dist-info}/WHEEL +0 -0
- {flood_adapt-0.3.8.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
|