-
Notifications
You must be signed in to change notification settings - Fork 17
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
How to deal with values at e.g. boundaries, hydraulic structures? #25
Comments
Similar to interpolation question "get water_level at (x,y)" |
Alternative 1 can be slow: string parsing every time Alternative 3:
This is already more in line with Alternative 2. |
This issue has come up in work with @rmcd-mscb. |
I think for boundaries: these can be implemented as seperate grids, ie one or more boundaries are refered to with different grid indices. These can be (depending on the implementation of the code) be really references to seperate grids, or references to a subset of the main grid. The issue is here a way to let the same variable life on different grids... for hydraulic structures, recording stations etc: these would benefit from #14, they need a way to represent non-grid data (e.g. a set of sampling stations). |
Alternative 1:
Alternative 2:
The text was updated successfully, but these errors were encountered: