Add an ellipsoid tileset loader for flat terrain generation#908
Add an ellipsoid tileset loader for flat terrain generation#908azrogers merged 18 commits intoCesiumGS:mainfrom
Conversation
|
Hi @jqntn - thanks for the pull request! Haven't dug through this yet, but I'd like to point you to PR #890, which is almost in, that adds custom ellipsoid support to cesium-native. For cesium-native, this means instead of passing the ellipsoid as a separate parameter, you can access it from Alternatively, if you see a circumstance where you'd want to use a different ellipsoid for terrain generation than you use for georeferencing, I'll point you to CesiumGS/cesium-unity#465. With that PR, you can change "From WGS84 Ellipsoid" to "From Ellipsoid Asset" or something of the sort on Cesium3DTileset in Unity, and add a property to it that takes a CesiumEllipsoid asset (a ScriptableObject that contains the ellipsoid's radii). Regardless, this looks good on a quick skim - please @ me when you're ready to have it reviewed! |
Cesium3DTilesSelection/include/Cesium3DTilesSelection/EllipsoidTilesetLoader.h
Outdated
Show resolved
Hide resolved
Cesium3DTilesSelection/include/Cesium3DTilesSelection/EllipsoidTilesetLoader.h
Show resolved
Hide resolved
|
I'm moving this out of the July release for now, to give time to make a few more changes. |
|
Hi @kring! Any update on this? |
|
Really sorry, but we have to move this out of this month's release again. |
|
Thank you for your patience on this, @jqntn. This PR is looking good, just one tiny change - can you move the additions you've made to CHANGES.md up to the "Not Released Yet" temporary section? It's currently under 0.37.0. I think that's the last bit needed to merge this in. |
|
Scratch that, I've made that change myself. Once CI completes I'll make the merge! |
|
Thanks for adding this feature, @jqntn! |
|
Hi @azrogers, thank you for keeping me updated 🙂 |
Hi,
This is a proposal to implement an ellipsoid tileset loader. It leverages the custom loader API and allows the
Cesium3DTilesetto generate terrain by creating an ellipsoidal surface.I believe this is equivalent to EllipsoidTerrainProvider in CesiumJS.
In my opinion, this can be very useful, especially on low-end devices, or if you simply don't have a tileset at your disposal.
Here is a Unity example using the raster overlay, which you can try on this branch using this version of the cesium-unity package:
CC @carlopiersanti