-
Notifications
You must be signed in to change notification settings - Fork 29
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
2024 04 24 fix swmm views #232
base: master
Are you sure you want to change the base?
Conversation
- SWMM 5.1. seems not to like NULL values in these colums and throws an error
Documentation update: see QGEP/docs#224 |
@ponceta Do I need to make a full delta? |
@ponceta What is going wrong here? |
NULL as StageData, | ||
-- 'FREE'::varchar as Type, | ||
CASE | ||
WHEN waterlevel_hydraulic IS NOT NULL THEN 'FIXED' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this attribute is only available in discharge points in this model
waterlevel_hydraulic
It would be better to be explicit like dp.waterlevel_hydraulic
to avoid missing joins
SWMM 5.1 / 5.2. seems not to like NULL values if there is no data - therefore replacing defaults with 0 resp. 0.0 instead.