NREL-erad 0.0.0a0__tar.gz → 1.0.0__tar.gz

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 (52) hide show
  1. nrel_erad-1.0.0/.gitignore +136 -0
  2. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/LICENSE.txt +28 -28
  3. nrel_erad-1.0.0/PKG-INFO +65 -0
  4. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/README.md +20 -15
  5. nrel_erad-1.0.0/erad/__init__.py +1 -0
  6. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/constants.py +20 -20
  7. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/cypher_queries/load_data_v1.cypher +211 -211
  8. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/data/World_Earthquakes_1960_2016.csv +23410 -23410
  9. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/assets/critical_infras.py +170 -170
  10. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/assets/distribution_lines.py +101 -101
  11. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/credential_model.py +20 -20
  12. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/disaster_input_model.py +23 -23
  13. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/inject_earthquake.py +52 -52
  14. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/inject_flooding.py +53 -53
  15. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/neo4j_.py +162 -162
  16. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/db/utils.py +13 -13
  17. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/exceptions.py +68 -68
  18. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/metrics/check_microgrid.py +208 -208
  19. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/metrics/metric.py +178 -178
  20. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/programs/backup.py +61 -61
  21. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/programs/microgrid.py +44 -44
  22. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/abstract_scenario.py +102 -102
  23. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/common.py +92 -92
  24. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/earthquake_scenario.py +161 -161
  25. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/fire_scenario.py +160 -160
  26. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/flood_scenario.py +493 -493
  27. nrel_erad-1.0.0/erad/scenarios/flows.csv +671 -0
  28. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/utilities.py +75 -75
  29. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/scenarios/wind_scenario.py +89 -89
  30. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/utils/ditto_utils.py +252 -252
  31. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/utils/hifld_utils.py +147 -147
  32. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/utils/opendss_utils.py +357 -357
  33. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/utils/overpass.py +76 -76
  34. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/utils/util.py +178 -178
  35. {NREL-erad-0.0.0a0 → nrel_erad-1.0.0}/erad/visualization/plot_graph.py +218 -218
  36. nrel_erad-1.0.0/pyproject.toml +84 -0
  37. NREL-erad-0.0.0a0/NREL_erad.egg-info/PKG-INFO +0 -31
  38. NREL-erad-0.0.0a0/NREL_erad.egg-info/SOURCES.txt +0 -45
  39. NREL-erad-0.0.0a0/NREL_erad.egg-info/dependency_links.txt +0 -1
  40. NREL-erad-0.0.0a0/NREL_erad.egg-info/requires.txt +0 -32
  41. NREL-erad-0.0.0a0/NREL_erad.egg-info/top_level.txt +0 -1
  42. NREL-erad-0.0.0a0/PKG-INFO +0 -31
  43. NREL-erad-0.0.0a0/erad/visualization/__init__.py +0 -0
  44. NREL-erad-0.0.0a0/setup.cfg +0 -4
  45. NREL-erad-0.0.0a0/setup.py +0 -54
  46. {NREL-erad-0.0.0a0/erad → nrel_erad-1.0.0/erad/db}/__init__.py +0 -0
  47. {NREL-erad-0.0.0a0/erad/db → nrel_erad-1.0.0/erad/db/assets}/__init__.py +0 -0
  48. {NREL-erad-0.0.0a0/erad/db/assets → nrel_erad-1.0.0/erad/metrics}/__init__.py +0 -0
  49. {NREL-erad-0.0.0a0/erad/metrics → nrel_erad-1.0.0/erad/programs}/__init__.py +0 -0
  50. {NREL-erad-0.0.0a0/erad/programs → nrel_erad-1.0.0/erad/scenarios}/__init__.py +0 -0
  51. {NREL-erad-0.0.0a0/erad/scenarios → nrel_erad-1.0.0/erad/utils}/__init__.py +0 -0
  52. {NREL-erad-0.0.0a0/erad/utils → nrel_erad-1.0.0/erad/visualization}/__init__.py +0 -0
@@ -0,0 +1,136 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ .vscode/**
6
+
7
+ # C extensions
8
+ *.so
9
+
10
+ notebooks/*.csv
11
+ erad_web/
12
+ *.pdf
13
+ *.jats
14
+
15
+ # Distribution / packaging
16
+ .Python
17
+ cache/
18
+ build/
19
+ develop-eggs/
20
+ dist/
21
+ downloads/
22
+ eggs/
23
+ .eggs/
24
+ lib/
25
+ lib64/
26
+ parts/
27
+ sdist/
28
+ var/
29
+ wheels/
30
+ pip-wheel-metadata/
31
+ share/python-wheels/
32
+ *.egg-info/
33
+ .installed.cfg
34
+ *.egg
35
+ MANIFEST
36
+
37
+ # PyInstaller
38
+ # Usually these files are written by a python script from a template
39
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
40
+ *.manifest
41
+ *.spec
42
+
43
+ # Installer logs
44
+ pip-log.txt
45
+ pip-delete-this-directory.txt
46
+
47
+ # Unit test / coverage reports
48
+ htmlcov/
49
+ .tox/
50
+ .nox/
51
+ .coverage
52
+ .coverage.*
53
+ .cache
54
+ nosetests.xml
55
+ coverage.xml
56
+ *.cover
57
+ *.py,cover
58
+ .hypothesis/
59
+ .pytest_cache/
60
+
61
+ # Translations
62
+ *.mo
63
+ *.pot
64
+
65
+ # Django stuff:
66
+ *.log
67
+ local_settings.py
68
+ db.sqlite3
69
+ db.sqlite3-journal
70
+
71
+ # Flask stuff:
72
+ instance/
73
+ .webassets-cache
74
+
75
+ # Scrapy stuff:
76
+ .scrapy
77
+
78
+ # Sphinx documentation
79
+ docs/_build/
80
+
81
+ # PyBuilder
82
+ target/
83
+
84
+ # Jupyter Notebook
85
+ .ipynb_checkpoints
86
+
87
+ # IPython
88
+ profile_default/
89
+ ipython_config.py
90
+
91
+ # pyenv
92
+ .python-version
93
+
94
+ # pipenv
95
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
96
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
97
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
98
+ # install all needed dependencies.
99
+ #Pipfile.lock
100
+
101
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
102
+ __pypackages__/
103
+
104
+ # Celery stuff
105
+ celerybeat-schedule
106
+ celerybeat.pid
107
+
108
+ # SageMath parsed files
109
+ *.sage.py
110
+
111
+ # Environments
112
+ .env
113
+ .venv
114
+ env/
115
+ venv/
116
+ ENV/
117
+ env.bak/
118
+ venv.bak/
119
+
120
+ # Spyder project settings
121
+ .spyderproject
122
+ .spyproject
123
+
124
+ # Rope project settings
125
+ .ropeproject
126
+
127
+ # mkdocs documentation
128
+ /site
129
+
130
+ # mypy
131
+ .mypy_cache/
132
+ .dmypy.json
133
+ dmypy.json
134
+
135
+ # Pyre type checker
136
+ .pyre/
@@ -1,29 +1,29 @@
1
- BSD 3-Clause License
2
-
3
- Copyright (c) 2023, Alliance for Sustainable Energy, LLC
4
- All rights reserved.
5
-
6
- Redistribution and use in source and binary forms, with or without
7
- modification, are permitted provided that the following conditions are met:
8
-
9
- 1. Redistributions of source code must retain the above copyright notice, this
10
- list of conditions and the following disclaimer.
11
-
12
- 2. Redistributions in binary form must reproduce the above copyright notice,
13
- this list of conditions and the following disclaimer in the documentation
14
- and/or other materials provided with the distribution.
15
-
16
- 3. Neither the name of the copyright holder nor the names of its
17
- contributors may be used to endorse or promote products derived from
18
- this software without specific prior written permission.
19
-
20
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2023, Alliance for Sustainable Energy, LLC
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
29
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.3
2
+ Name: NREL-erad
3
+ Version: 1.0.0
4
+ Summary: Graph based scalable tool for computing equitable resilience metrics for distribution systems.
5
+ Project-URL: Homepage, https://github.com/nrel/erad
6
+ Author-email: Kapil Duwadi <kapil.duwadi@nrel.gov>, Aadil Latif <aadil.altif@nrel.gov>, Kwami Sedzro <sherinann.abraham@nrel.gov>, Sherin Ann Abraham <kwami.sedzro@nrel.gov>, Bryan Palmintier <bryan.palmintier@nrel.gov>
7
+ License-File: LICENSE.txt
8
+ Keywords: Distribution,Earthquake,Equity,Fire,Flooding,Power,Python,Resilience,Systems
9
+ Classifier: License :: OSI Approved :: BSD License
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3.8
12
+ Requires-Python: >=3.8
13
+ Requires-Dist: boto3
14
+ Requires-Dist: botocore
15
+ Requires-Dist: ditto-py
16
+ Requires-Dist: geojson
17
+ Requires-Dist: geopandas
18
+ Requires-Dist: geopy
19
+ Requires-Dist: graphdatascience
20
+ Requires-Dist: jupyter
21
+ Requires-Dist: matplotlib
22
+ Requires-Dist: neo4j-driver
23
+ Requires-Dist: networkx
24
+ Requires-Dist: opendssdirect-py
25
+ Requires-Dist: pandas
26
+ Requires-Dist: plotly
27
+ Requires-Dist: pydantic~=1.10.14
28
+ Requires-Dist: pytest
29
+ Requires-Dist: python-dotenv
30
+ Requires-Dist: pyyaml
31
+ Requires-Dist: rasterio
32
+ Requires-Dist: requests
33
+ Requires-Dist: scipy
34
+ Requires-Dist: shapely
35
+ Requires-Dist: stateplane
36
+ Requires-Dist: xmltodict
37
+ Provides-Extra: dev
38
+ Requires-Dist: black; extra == 'dev'
39
+ Requires-Dist: mkdocs; extra == 'dev'
40
+ Requires-Dist: mkdocs-jupyter; extra == 'dev'
41
+ Requires-Dist: mkdocs-material; extra == 'dev'
42
+ Requires-Dist: mkdocstrings[python]; extra == 'dev'
43
+ Requires-Dist: pylint; extra == 'dev'
44
+ Description-Content-Type: text/markdown
45
+
46
+ # ERAD (<u>E</u>quity and <u>R</u>esilience <u>A</u>nalysis for electric <u>D</u>istribution systems)
47
+ <p align="center">
48
+ <img src="docs/images/logo.svg" width="250" style="display:flex;justify-content:center;">
49
+ <p align="center">Graph based python tool for computing equitable resilience. </p>
50
+ </p>
51
+
52
+ ![GitHub all releases](https://img.shields.io/github/downloads/NREL/erad/total?logo=Github&logoColor=%2300ff00&style=flat-square)
53
+ ![GitHub repo size](https://img.shields.io/github/repo-size/nrel/erad?style=flat-square)
54
+ [![CodeFactor](https://www.codefactor.io/repository/github/nrel/erad/badge)](https://www.codefactor.io/repository/github/nrel/erad)
55
+ [![GitHub license](https://img.shields.io/github/license/NREL/erad?style=flat-square)](https://github.com/NREL/erad/blob/main/LICENSE.txt)
56
+ [![GitHub issues](https://img.shields.io/github/issues/NREL/erad?style=flat-square)](https://github.com/NREL/erad/issues)
57
+ ![GitHub top language](https://img.shields.io/github/languages/top/nrel/erad?style=flat-square)
58
+
59
+ [Visit full documentation here.](https://nrel.github.io/erad/)
60
+
61
+ Understanding the impact of disaster events on people's ability to access critical service is key to designing appropriate programs to minimize the overall impact. Flooded roads, downed power lines, flooded power substation etc. could impact access to critical services like electricity, food, health and more. The field of disaster modeling is still evolving and so is our understanding of how these events would impact our critical infrastructures such power grid, hospitals, groceries, banks etc.
62
+
63
+ ERAD is a free, open-source Python toolkit for computing equity and resilience measures in the face of hazards like earthquakes and flooding. It uses graph database to store data and perform computation at the household level for a variety of critical services that are connected by power distribution network. It uses asset fragility curves, which are functions that relate hazard severity to survival probability for power system assets including cables, transformers, substations, roof-mounted solar panels, etc. recommended in top literature. Programs like undergrounding, microgrid, and electricity backup units for critical infrastructures may all be evaluated using metrics and compared across different neighborhoods to assess their effects on equity and resilience.
64
+
65
+ ERAD is designed to be used by researchers, students, community stakeholders, distribution utilities to understand and possibly evaluate effectiveness of different post disaster programs to improve resilience and equity. It was funded by National Renewable Energy Laboratory (NREL) and made publicly available with open license.
@@ -1,15 +1,20 @@
1
- # ERAD (Equitable Resilience Analysis For Power Distribution System)
2
- <p align="center">
3
- <img src="logo.svg" width="250" style="display:flex;justify-content:center;">
4
- <p align="center">Graph based python tool for computing equitable resilience. </p>
5
- </p>
6
-
7
-
8
-
9
- [Visit full documentation here.](https://nrel.github.io/erad/)
10
-
11
- Understanding the impact of disaster events on people's ability to access critical service is key to designing appropriate programs to minimize the overall impact. Flooded roads, downed power lines, flooded power substation etc. could impact access to critical servies like electricity, food, health and more. The field of disaster modeling is still evolving and so is our understanding of how these events would impact our critical infrastrctures such power grid, hospitals, groceries, banks etc.
12
-
13
- ERAD is a free, open-source Python toolkit for computing equity and resilience measures in the face of hazards like earthquakes and flooding. It uses graph database to store data and perform computation at the household level for a variety of critical services that are connected by power distribution network. It uses asset fragility curves, which are functions that relate hazard severity to survival probability for power system assets including cables, transformers, substations, roof-mounted solar panels, etc. recommended in top literature. Programs like undergrounding, microgrid, and electricity backup units for critical infrastructures may all be evaluated using metrics and compared across different neighborhoods to assess their effects on equity and resilience.
14
-
15
- ERAD is designed to be used by researchers, students, community stakeholders, distribution utilities to understand and possibly evaluate effectiveness of different post disaster programs to improve resilience and equity. It was funded by National Renewable Energy Laboratory (NREL) and made publicy available with open license.
1
+ # ERAD (<u>E</u>quity and <u>R</u>esilience <u>A</u>nalysis for electric <u>D</u>istribution systems)
2
+ <p align="center">
3
+ <img src="docs/images/logo.svg" width="250" style="display:flex;justify-content:center;">
4
+ <p align="center">Graph based python tool for computing equitable resilience. </p>
5
+ </p>
6
+
7
+ ![GitHub all releases](https://img.shields.io/github/downloads/NREL/erad/total?logo=Github&logoColor=%2300ff00&style=flat-square)
8
+ ![GitHub repo size](https://img.shields.io/github/repo-size/nrel/erad?style=flat-square)
9
+ [![CodeFactor](https://www.codefactor.io/repository/github/nrel/erad/badge)](https://www.codefactor.io/repository/github/nrel/erad)
10
+ [![GitHub license](https://img.shields.io/github/license/NREL/erad?style=flat-square)](https://github.com/NREL/erad/blob/main/LICENSE.txt)
11
+ [![GitHub issues](https://img.shields.io/github/issues/NREL/erad?style=flat-square)](https://github.com/NREL/erad/issues)
12
+ ![GitHub top language](https://img.shields.io/github/languages/top/nrel/erad?style=flat-square)
13
+
14
+ [Visit full documentation here.](https://nrel.github.io/erad/)
15
+
16
+ Understanding the impact of disaster events on people's ability to access critical service is key to designing appropriate programs to minimize the overall impact. Flooded roads, downed power lines, flooded power substation etc. could impact access to critical services like electricity, food, health and more. The field of disaster modeling is still evolving and so is our understanding of how these events would impact our critical infrastructures such power grid, hospitals, groceries, banks etc.
17
+
18
+ ERAD is a free, open-source Python toolkit for computing equity and resilience measures in the face of hazards like earthquakes and flooding. It uses graph database to store data and perform computation at the household level for a variety of critical services that are connected by power distribution network. It uses asset fragility curves, which are functions that relate hazard severity to survival probability for power system assets including cables, transformers, substations, roof-mounted solar panels, etc. recommended in top literature. Programs like undergrounding, microgrid, and electricity backup units for critical infrastructures may all be evaluated using metrics and compared across different neighborhoods to assess their effects on equity and resilience.
19
+
20
+ ERAD is designed to be used by researchers, students, community stakeholders, distribution utilities to understand and possibly evaluate effectiveness of different post disaster programs to improve resilience and equity. It was funded by National Renewable Energy Laboratory (NREL) and made publicly available with open license.
@@ -0,0 +1 @@
1
+ __version__ = "1.0.0"
@@ -1,20 +1,20 @@
1
- """ Module for managing constants in ERAD package.
2
-
3
- _Do not change this constants in your code._
4
- """
5
-
6
- import os
7
-
8
- ROOT_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
9
- DATA_FOLDER_NAME = "data"
10
- DATA_FOLDER = os.path.join(ROOT_PATH, DATA_FOLDER_NAME)
11
-
12
- FIRE_HISTORIC_GEODATAFRAME_PATH = "US_Wildfires_1878_2019.gdb"
13
- EARTHQUAKE_HISTORIC_CSV_PATH = "World_Earthquakes_1960_2016.csv"
14
- FLOOD_HISTORIC_SHP_PATH = "FEMA_100_Year_Flood_Zones_in_the_US\\FEMA_100_Year_Flood_Zones_in_the_US.shp"
15
- #FLOOD_HISTORIC_SHP_PATH = "NFHL_06_20230323.gdb"
16
- ELEVATION_RASTER_FILE = "TrueMarble.250m.21600x21600.B2.tif"
17
-
18
- SMARTDS_VALID_YEARS = [2016, 2017, 2018]
19
- SMARTDS_VALID_AREAS = ['SFO', 'GSO', 'AUS']
20
-
1
+ """ Module for managing constants in ERAD package.
2
+
3
+ _Do not change this constants in your code._
4
+ """
5
+
6
+ import os
7
+
8
+ ROOT_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
9
+ DATA_FOLDER_NAME = "data"
10
+ DATA_FOLDER = os.path.join(ROOT_PATH, DATA_FOLDER_NAME)
11
+
12
+ FIRE_HISTORIC_GEODATAFRAME_PATH = "US_Wildfires_1878_2019.gdb"
13
+ EARTHQUAKE_HISTORIC_CSV_PATH = "World_Earthquakes_1960_2016.csv"
14
+ FLOOD_HISTORIC_SHP_PATH = "FEMA_100_Year_Flood_Zones_in_the_US\\FEMA_100_Year_Flood_Zones_in_the_US.shp"
15
+ #FLOOD_HISTORIC_SHP_PATH = "NFHL_06_20230323.gdb"
16
+ ELEVATION_RASTER_FILE = "TrueMarble.250m.21600x21600.B2.tif"
17
+
18
+ SMARTDS_VALID_YEARS = [2016, 2017, 2018]
19
+ SMARTDS_VALID_AREAS = ['SFO', 'GSO', 'AUS']
20
+