-
-
Notifications
You must be signed in to change notification settings - Fork 326
New issue
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
[Feat] r.sim.water: temporal output should start at t=0 instead of t=1 #4764
Comments
Hey, can someone help me with the steps to reproduce the issue (or where to find the steps), so as to understand the requirements better? |
Using the Here's an excerpt from the documentation that I modified (with the
|
Running the What might be going wrong? Following the steps you mentioned. |
It should create a bunch of raster layers named water_depth_01, water_depth_02... and so forth. I realized that, although the output is a time series, it's not yet registered to a space time raster dataset (strds). Check |
There's no
|
Hey all, I previously used a self-created dataset (which might be causing my error). Can someone help me how I can import the required dataset to the Grass GUI application? Thanks a lot! |
In the gui, there's a button to download sample datasets, at the top of the data tab |
Sorry, I couldn't figure out clearly which button you mean. And how do we navigate to |
Thanks a lot for the help, @echoix |
Just to clarify, To test any change that I make in the code - I am currently building the entire code again and, as a result, creating the application again to run. Is there a faster/simpler way to test my changes on the GUI? |
Generally it's enough to build just the part of the code you changed, so in your case |
What is the command used to build a part of the code? |
Is your feature request related to a problem? Please describe.
r.sim.water can output a space-time raster or vector dataset when using the
-t
flag. This will create a output time series that starts at timestep 1. For example, if the timestep is two minutes and the duration (niteration
) is 10 minutes, the resulting outputs will be at 2, 4, 6, 8, and 10 minutes. There is no way to see the initial conditions, i.e., output at 0 minutes.Describe the solution you'd like
I think that the initial conditions should be included in the output so that, in the example above, the results are at 0, 2, 4, 6, 8, and 10 minutes.
The text was updated successfully, but these errors were encountered: