We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
clip_to_catchments
The subbasin delineation here has huge influences on the rest of the procedure. It is conceivable that we should carve roads before doing this.
Can be done by inserting into graph_utilities.py:
graph_utilities.py
# Derive subbasins with tempfile.TemporaryDirectory() as temp_dir: temp_fid = Path(temp_dir) / "carved.tif" go.burn_shape_in_raster([d['geometry'] for u,v,d in G.edges(data=True)], subcatchment_derivation.carve_depth, addresses.elevation, temp_fid)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The subbasin delineation here has huge influences on the rest of the procedure. It is conceivable that we should carve roads before doing this.
Can be done by inserting into
graph_utilities.py
:The text was updated successfully, but these errors were encountered: