Skip to content

Commit

Permalink
update references
Browse files Browse the repository at this point in the history
  • Loading branch information
changliao1025 committed Feb 19, 2024
1 parent b6cc600 commit 2242511
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ Copyright © 2022, Battelle Memorial Institute

There are a number of publications that describe the algorithms used in `HexWatershed` in detail. If you make use of `HexWatershed` in your work, please consider including a reference to the following:

* Liao, Chang, Cooper, M. G. PyFlowline a mesh independent river network generator for hydrologic models. Journal of Open Source Software. https://doi.org/10.21105/joss.05446

Liao, Chang, Zhou, T., Xu, D., Tan, Z., Bisht, G., Cooper, M. G., et al. (2023). Topological relationship-based flow direction modeling: Stream burning and depression filling. Journal of Advances in Modeling Earth Systems, 15, e2022MS003487. https://doi.org/10.1029/2022MS003487

* Liao, Chang, Zhou, T., Xu, D., Cooper, M. G., Engwirda, D., Li, H.-Y., Leung, L. R. (2023). Topological relationship-based flow direction modeling: Mesh-independent river networks representation. Journal of Advances in Modeling Earth Systems, 15, e2022MS003089. https://doi.org/10.1029/2022MS003089

* Liao, Chang, Tian Zhou, Donghui Xu, Richard Barnes, Gautam Bisht, Hong-Yi Li, Zeli Tan, et al. (02/2022AD) 2022. “Advances In Hexagon Mesh-Based Flow Direction Modeling”. Advances In Water Resources 160. Elsevier BV: 104099.
https://doi.org/10.1016/j.advwatres.2021.104099.
Expand Down
10 changes: 5 additions & 5 deletions pyhexwatershed/classes/pycase.py
Original file line number Diff line number Diff line change
Expand Up @@ -1042,13 +1042,13 @@ def pyhexwatershed_export_all_polygon_variables(self):
sFilename_geojson = pBasin.sFilename_variable_polygon

if self.iMesh_type == 4: #mpas mesh
aVariable_json = ['lSubbasin','dArea','dElevation','dSlope_between', 'dDrainage_area','dDistance_to_watershed_outlet'] #profile not enabled
aVariable_geojson = ['subbasin','area','elevation', 'slope', 'drainage_area','travel_distance']
aVariable_json = ['lSubbasin','lHillslope','dArea','dElevation','dSlope_between', 'dDrainage_area','dDistance_to_watershed_outlet'] #profile not enabled
aVariable_geojson = ['subbasin','hillslope','area','elevation', 'slope', 'drainage_area','travel_distance']
else:
aVariable_json = ['lSubbasin','dArea','dElevation','dSlope_between', 'dDrainage_area','dDistance_to_watershed_outlet'] #profile not enabled
aVariable_geojson = ['subbasin','area','elevation', 'slope', 'drainage_area','travel_distance']
aVariable_json = ['lSubbasin','lHillslope','dArea','dElevation','dSlope_between', 'dDrainage_area','dDistance_to_watershed_outlet'] #profile not enabled
aVariable_geojson = ['subbasin','hillslope','area','elevation', 'slope', 'drainage_area','travel_distance']

aVariable_type= [1,2,2,2,2,2]
aVariable_type= [1,1,2,2,2,2,2]
export_json_to_geojson_polygon(sFilename_json,
sFilename_geojson,
aVariable_json,
Expand Down

0 comments on commit 2242511

Please sign in to comment.