-
Notifications
You must be signed in to change notification settings - Fork 32
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
[18p] REM w/ Ripple #1419
Comments
Algorithem for 2 tiff files of A1 and A2: Step1: In A1, find the max value (stage) and update A1 cells by subtracting the max from all values above zero (== A1_rem) Step2: In A2, find the max of A2 and update A2 cells by subtracting all cells above zero from the A2 max, but only do it in cells of A2 that has not been updated in A1. In this step A1 cells updated in step1 will be masked out (== A2_rem). Step3: in A2, replace the value of rest of A2 cells (not updated in step 2) with A1 cells values. So, only A2 cells that has not be updated in step2 will be replaced (== final_rem). Step4: Replace zero (0) values in final_rem with the A2 max value (A2 stage) with masking A1_rem |
rem = [[9 7 8 9 9 9] |
We are trying to apply the REM idea in Ripple output, then we can use the REM and rating curves idea in HydroVIS, instead of dealing with multiple depth layers.
The text was updated successfully, but these errors were encountered: