-
Notifications
You must be signed in to change notification settings - Fork 5
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
Remove HRU Overlap #157
Comments
I suspect we are seeing this issue: mapbox/tippecanoe#562 One cause was simplifying the source data before it reached tippecanoe. I am going to to try eliminating the precision flag here: https://github.com/usgs-makerspace/wbeep-processing/blob/master/jenkins/hru_R_Jenkinsfile#L38 Other possibilities include:
|
The next step IMO is to experiment with changing options in Tippecanoe. I think we may need to explicitly set the zoom levels, so that the highest zoom level corresponds to the limit in the style sheet. This will ensure that the Another alternative would be to try some kind of fancy preprocessing to get the polygon boundaries to try to snap together. Maybe some kind of topojson conversion or quantization would help? Could also make some parts worse though. |
Linking this separate ticket where it was attempted to use another data source for this issue: #172 |
Gonna call this complete. Marty added 100% opacity to the HRU polygons and while this does not fix the issue, it does conceal it. |
Now that we have decided to go with hill shading we have a problem. It seems that the polygons that form the HRUs overlap. Prior to hill shading this was not an issue because we set the opacity of the HRUs to 100%. However, to make the hill shade show, we need to reduce the opacity of the HRUs and allow the hill shade to filter through from underneath. But, because the of the HRU overlap the overlapping areas are twice as dark as the non overlapped areas creating what appears to be a border.
To eliminate the false borders created by the HRU overlap we can return the HRU opacity to 100% and put the hill shading on top. However, the results are less than ideal.
This is an issue that needs to be addressed in some fashion prior to MVP delivery as one of the stakeholder requests was to remove the HRU borders. Perhaps this issue can be addressed by altering the HRU tile set to prevent overlap. Otherwise, we will be forced to accept a map with reduced aesthetic appeal or will need to contact the stakeholders to see if the light lines produced by the HRU overlap is acceptable.
Completion Criteria
The text was updated successfully, but these errors were encountered: