I need to some calculation with terrain surface, I use cesium but it works slow. Cesium has a method sampleTerrainMostDetailed, it gives me height of given coordinates but it calculates height on client.
sampleTerrainMostDetailed works like this:
- create tiles array which is which points inside which tile
- request tiles array from terrain
- and interpolate coordinate height from terrain data
This process happen in client and it's slow.
I want to do this in server side, but I don't know is there any service gives me height of given coordinate like sampleTerrainMostDetailed method ?