You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When displaying some negative elevation data in an ElevationLayer, the bounding boxes of tiles are clamped above -10 meters.
This is caused by this line when computing the minimal and maximal value of elevation data within a given tile.
This value has been hard coded to prevent an issue with geoportail elevation data. Along the coast line, these data contain isolated points with extremely low altitude (sometimes lower than the earth radius). The bounding sphere of the tiles is therefore huge, exceeding the sse threshold above which tiles are subdivided. It causes tiles along the coast line to be subdivided too much. This can be seen in the screenshot bellow.
Clamping the minimal elevation value of a tile prevents this. However, relevant negative elevation values should not be clamped.
The -10 hard coded value should be parametrized in the ElevationLayer creation, with a default value of -Infinity.
The text was updated successfully, but these errors were encountered:
When displaying some negative elevation data in an
ElevationLayer
, the bounding boxes of tiles are clamped above-10
meters.This is caused by this line when computing the minimal and maximal value of elevation data within a given tile.
This value has been hard coded to prevent an issue with geoportail elevation data. Along the coast line, these data contain isolated points with extremely low altitude (sometimes lower than the earth radius). The bounding sphere of the tiles is therefore huge, exceeding the
sse
threshold above which tiles are subdivided. It causes tiles along the coast line to be subdivided too much. This can be seen in the screenshot bellow.Clamping the minimal elevation value of a tile prevents this. However, relevant negative elevation values should not be clamped.
The
-10
hard coded value should be parametrized in theElevationLayer
creation, with a default value of-Infinity
.The text was updated successfully, but these errors were encountered: