├── .github └── workflows │ └── python-publish.yml ├── GeoGLOWS ├── GeoGLOWS.ipynb └── hydrotable │ ├── fim45geoglows_12060102.csv │ └── fim45geoglows_12060202.csv ├── HUC.csv ├── LICENSE ├── Makefile ├── README.md ├── dist ├── .gitignore ├── fimserve-0.1.83-py3-none-any.whl ├── fimserve-0.1.83.tar.gz ├── fimserve-0.1.84-py3-none-any.whl ├── fimserve-0.1.84.tar.gz ├── fimserve-0.1.85-py3-none-any.whl ├── fimserve-0.1.85.tar.gz ├── fimserve-0.1.86-py3-none-any.whl ├── fimserve-0.1.86.tar.gz ├── fimserve-0.1.87-py3-none-any.whl └── fimserve-0.1.87.tar.gz ├── docs ├── FIMin3steps.ipynb ├── HUC.csv ├── code_usage.ipynb ├── source │ ├── FIMin3Steps.rst │ ├── _static │ │ └── graphicaloverview.png │ ├── conf.py │ ├── detailedusage.rst │ ├── getting_started.rst │ ├── index.rst │ └── installation.rst └── subsetBoundary │ ├── subsetBoundary.cpg │ ├── subsetBoundary.dbf │ ├── subsetBoundary.prj │ ├── subsetBoundary.qmd │ ├── subsetBoundary.shp │ └── subsetBoundary.shx ├── images └── flowchart.jpg ├── make.bat ├── pyproject.toml ├── requirements.txt ├── src └── fimserve │ ├── FIMsubset │ ├── __init__.py │ ├── shpsubset.py │ └── xycoord.py │ ├── __init__.py │ ├── datadownload.py │ ├── enhancement_withSM │ ├── README.md │ ├── SM_prediction.py │ ├── SM_preprocess.py │ ├── __init__.py │ ├── applyingSM_usage.ipynb │ ├── building_exposure.py │ ├── graphics │ │ ├── building_exposure.png │ │ ├── operationalFIM.jpg │ │ └── population_exposure.png │ ├── interactS3.py │ ├── pop_exposure.py │ ├── preprocessFIM.py │ ├── surrogate_model.py │ └── utlis.py │ ├── fimevaluation │ ├── __init__.py │ ├── fims_setup.py │ ├── run_fimeval.py │ └── utilis.py │ ├── intersectedHUC.py │ ├── plot │ ├── __init__.py │ ├── comparestreamflow.py │ ├── nwmfid.py │ ├── src.py │ ├── usgs.py │ └── usgsandfid.py │ ├── runFIM.py │ ├── statistics │ ├── __init__.py │ └── calculatestatistics.py │ ├── streamflowdata │ ├── __init__.py │ ├── forecasteddata.py │ ├── geoglows.py │ ├── nwmretrospective.py │ └── usgsdata.py │ └── vizualizationFIM.py └── tests ├── test_03020202.py ├── test_computationaltime.py ├── test_cumulativetime.py ├── test_datadownload.py ├── test_evalutionhandfim.py ├── test_forecasteddata.py ├── test_geoglows.py ├── test_intersectedHUC8.py ├── test_nwmdata.py ├── test_plot.py ├── test_runfim.py ├── test_statistics.py └── test_subsetFIM.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /GeoGLOWS/GeoGLOWS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/GeoGLOWS/GeoGLOWS.ipynb -------------------------------------------------------------------------------- /GeoGLOWS/hydrotable/fim45geoglows_12060102.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/GeoGLOWS/hydrotable/fim45geoglows_12060102.csv -------------------------------------------------------------------------------- /GeoGLOWS/hydrotable/fim45geoglows_12060202.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/GeoGLOWS/hydrotable/fim45geoglows_12060202.csv -------------------------------------------------------------------------------- /HUC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/HUC.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /dist/fimserve-0.1.83-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.83-py3-none-any.whl -------------------------------------------------------------------------------- /dist/fimserve-0.1.83.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.83.tar.gz -------------------------------------------------------------------------------- /dist/fimserve-0.1.84-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.84-py3-none-any.whl -------------------------------------------------------------------------------- /dist/fimserve-0.1.84.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.84.tar.gz -------------------------------------------------------------------------------- /dist/fimserve-0.1.85-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.85-py3-none-any.whl -------------------------------------------------------------------------------- /dist/fimserve-0.1.85.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.85.tar.gz -------------------------------------------------------------------------------- /dist/fimserve-0.1.86-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.86-py3-none-any.whl -------------------------------------------------------------------------------- /dist/fimserve-0.1.86.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.86.tar.gz -------------------------------------------------------------------------------- /dist/fimserve-0.1.87-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.87-py3-none-any.whl -------------------------------------------------------------------------------- /dist/fimserve-0.1.87.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/dist/fimserve-0.1.87.tar.gz -------------------------------------------------------------------------------- /docs/FIMin3steps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/FIMin3steps.ipynb -------------------------------------------------------------------------------- /docs/HUC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/HUC.csv -------------------------------------------------------------------------------- /docs/code_usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/code_usage.ipynb -------------------------------------------------------------------------------- /docs/source/FIMin3Steps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/FIMin3Steps.rst -------------------------------------------------------------------------------- /docs/source/_static/graphicaloverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/_static/graphicaloverview.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/detailedusage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/detailedusage.rst -------------------------------------------------------------------------------- /docs/source/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/getting_started.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/subsetBoundary/subsetBoundary.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /docs/subsetBoundary/subsetBoundary.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/subsetBoundary/subsetBoundary.dbf -------------------------------------------------------------------------------- /docs/subsetBoundary/subsetBoundary.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/subsetBoundary/subsetBoundary.prj -------------------------------------------------------------------------------- /docs/subsetBoundary/subsetBoundary.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/subsetBoundary/subsetBoundary.qmd -------------------------------------------------------------------------------- /docs/subsetBoundary/subsetBoundary.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/subsetBoundary/subsetBoundary.shp -------------------------------------------------------------------------------- /docs/subsetBoundary/subsetBoundary.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/docs/subsetBoundary/subsetBoundary.shx -------------------------------------------------------------------------------- /images/flowchart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/images/flowchart.jpg -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/make.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/fimserve/FIMsubset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/FIMsubset/__init__.py -------------------------------------------------------------------------------- /src/fimserve/FIMsubset/shpsubset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/FIMsubset/shpsubset.py -------------------------------------------------------------------------------- /src/fimserve/FIMsubset/xycoord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/FIMsubset/xycoord.py -------------------------------------------------------------------------------- /src/fimserve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/__init__.py -------------------------------------------------------------------------------- /src/fimserve/datadownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/datadownload.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/README.md -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/SM_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/SM_prediction.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/SM_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/SM_preprocess.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/applyingSM_usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/applyingSM_usage.ipynb -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/building_exposure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/building_exposure.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/graphics/building_exposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/graphics/building_exposure.png -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/graphics/operationalFIM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/graphics/operationalFIM.jpg -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/graphics/population_exposure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/graphics/population_exposure.png -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/interactS3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/interactS3.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/pop_exposure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/pop_exposure.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/preprocessFIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/preprocessFIM.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/surrogate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/surrogate_model.py -------------------------------------------------------------------------------- /src/fimserve/enhancement_withSM/utlis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/enhancement_withSM/utlis.py -------------------------------------------------------------------------------- /src/fimserve/fimevaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/fimevaluation/__init__.py -------------------------------------------------------------------------------- /src/fimserve/fimevaluation/fims_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/fimevaluation/fims_setup.py -------------------------------------------------------------------------------- /src/fimserve/fimevaluation/run_fimeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/fimevaluation/run_fimeval.py -------------------------------------------------------------------------------- /src/fimserve/fimevaluation/utilis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/fimevaluation/utilis.py -------------------------------------------------------------------------------- /src/fimserve/intersectedHUC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/intersectedHUC.py -------------------------------------------------------------------------------- /src/fimserve/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/plot/__init__.py -------------------------------------------------------------------------------- /src/fimserve/plot/comparestreamflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/plot/comparestreamflow.py -------------------------------------------------------------------------------- /src/fimserve/plot/nwmfid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/plot/nwmfid.py -------------------------------------------------------------------------------- /src/fimserve/plot/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/plot/src.py -------------------------------------------------------------------------------- /src/fimserve/plot/usgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/plot/usgs.py -------------------------------------------------------------------------------- /src/fimserve/plot/usgsandfid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/plot/usgsandfid.py -------------------------------------------------------------------------------- /src/fimserve/runFIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/runFIM.py -------------------------------------------------------------------------------- /src/fimserve/statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/statistics/__init__.py -------------------------------------------------------------------------------- /src/fimserve/statistics/calculatestatistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/statistics/calculatestatistics.py -------------------------------------------------------------------------------- /src/fimserve/streamflowdata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/streamflowdata/__init__.py -------------------------------------------------------------------------------- /src/fimserve/streamflowdata/forecasteddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/streamflowdata/forecasteddata.py -------------------------------------------------------------------------------- /src/fimserve/streamflowdata/geoglows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/streamflowdata/geoglows.py -------------------------------------------------------------------------------- /src/fimserve/streamflowdata/nwmretrospective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/streamflowdata/nwmretrospective.py -------------------------------------------------------------------------------- /src/fimserve/streamflowdata/usgsdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/streamflowdata/usgsdata.py -------------------------------------------------------------------------------- /src/fimserve/vizualizationFIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/src/fimserve/vizualizationFIM.py -------------------------------------------------------------------------------- /tests/test_03020202.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_03020202.py -------------------------------------------------------------------------------- /tests/test_computationaltime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_computationaltime.py -------------------------------------------------------------------------------- /tests/test_cumulativetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_cumulativetime.py -------------------------------------------------------------------------------- /tests/test_datadownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_datadownload.py -------------------------------------------------------------------------------- /tests/test_evalutionhandfim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_evalutionhandfim.py -------------------------------------------------------------------------------- /tests/test_forecasteddata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_forecasteddata.py -------------------------------------------------------------------------------- /tests/test_geoglows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_geoglows.py -------------------------------------------------------------------------------- /tests/test_intersectedHUC8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_intersectedHUC8.py -------------------------------------------------------------------------------- /tests/test_nwmdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_nwmdata.py -------------------------------------------------------------------------------- /tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_plot.py -------------------------------------------------------------------------------- /tests/test_runfim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_runfim.py -------------------------------------------------------------------------------- /tests/test_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_statistics.py -------------------------------------------------------------------------------- /tests/test_subsetFIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdmlua/FIMserv/HEAD/tests/test_subsetFIM.py --------------------------------------------------------------------------------