r.lake with raster as seed input #7038
-
|
Hello, I'm having some trouble using a raster layer with multiple seed points in r.lake. Is there anything I'm missing with using a raster as one of the inputs? Anything I should try? Problem: I am trying to run r.lake with a HAND layer and stream height at ~12 gauges. I've converted the point height data into a raster layer and use it as the seed or "Raster layer with with starting point(s)" parameter and HAND as the elevation parameter. Tried:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hi, the seed raster really specifies only the positions (coordinates), but there is still only one water level provided as water_level. My understanding is that r.lake fills a lake with a bathtub model, so it would not have any way to decide which water level to use when more than one is possible. What do you expect to happen? What about computing each gauge separately, and then combining the result in a way that upstream of a gauge only the corresponding gauge result is used, while downstream the highest one wins? Just an idea. Some scripting would be needed to do it for 12 gauges. |
Beta Was this translation helpful? Give feedback.
-
|
This is a limitation of |
Beta Was this translation helpful? Give feedback.
-
|
These answers have cleared up my misunderstanding. Thank you both! |
Beta Was this translation helpful? Give feedback.
Hi, the seed raster really specifies only the positions (coordinates), but there is still only one water level provided as water_level.
My understanding is that r.lake fills a lake with a bathtub model, so it would not have any way to decide which water level to use when more than one is possible. What do you expect to happen?
What about computing each gauge separately, and then combining the result in a way that upstream of a gauge only the corresponding gauge result is used, while downstream the highest one wins? Just an idea. Some scripting would be needed to do it for 12 gauges.