Is this the expected behavior for Hillshade and Contours algorithms? #1024
Replies: 1 comment 2 replies
-
You need to pass those pixels will then be removed https://github.com/developmentseed/titiler/blob/main/src/titiler/core/titiler/core/algorithm/dem.py#L45 when returning the result https://developmentseed.org/titiler/advanced/Algorithms/#usage
Your DEM is relatively titiler/src/titiler/core/titiler/core/algorithm/dem.py Lines 73 to 77 in 0075d1c |
Beta Was this translation helpful? Give feedback.
-
Hi! I'm trying to serve COP-DEM elevation data through Titiler.
The elevation data looks nice when serving the tiles as a regular WebMapTileServiceImageryProvider with Cesium.js.
My problems begin when trying to apply algorithms to this DEM layer.
For example, when applying Hillshade, I'm seeing this behavior in the borders between tiles:
I tried playing with some of the algorithm parameters but didn't manage to find a nice combination, and I don't really understand the difference between the tile's buffer property and the algorithm's buffer propery.
Also, it's interesting for my use case to apply the contours algorithm, but what I'm seeing is quite different from the docs examples:
I believe this can be related to the resolution of our DEM, but I didn't manage to form nicely defined lines, most of the time my countours it's just made up by some non-connected dots.
Beta Was this translation helpful? Give feedback.
All reactions