-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addition of raster functionality (#446)
* define sample_raster * adding module check in sample_raster * exposing sample_raster to wntr.gis interface * add test for sample_raster * trivial whitespace commit to re-run actions * adding rasterio to optional requirement * added tif to gitignore * updated docs for rasterio * clean up for raster functionality * update test to use net1. add user manual documentation. figure and data added for raster example * adjusting test to produce a smaller tiff file. * small updates to user docs * rename datafile * update test to include tanks * update gis to include tanks, add elevations to model, and mention hazard datasets. Figure filename changed. * cleanup test * adding documentation updates --------- Co-authored-by: kaklise <[email protected]>
- Loading branch information
Showing
10 changed files
with
231 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ temp* | |
|
||
examples/*.inp | ||
wntr/tests/*.png | ||
wntr/tests/*.tif | ||
|
||
documentation/_local | ||
documentation/apidoc |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ utm | |
openpyxl | ||
geopandas<1.0 | ||
fiona<1.10 | ||
rasterio | ||
rtree | ||
|
||
# Documentation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters