Select to view content in your preferred language

Fetching to WorldElevation3D/Terrain3D is returning wrong altitude

153
0
4 weeks ago
LuisSolaRuiz
New Contributor III

Hello! I am working to obtain the altitude of certain points but I receive different information depending on the source I consult.

When I query the information of a point through the identify property of the WorldElevation3D/Terrain3D layer, it returns an altitude of 433.707m.

LuisSolaRuiz_0-1716879121034.png

Instead, if I query directly to the elevation Layer of my project that is equal to this one, I receive a z-value of 569.0930288257836m. This altitude is the right one. 

LuisSolaRuiz_1-1716879182282.png

Layer Definition: 

 

ground: new Ground(
    {
        layers: [new ElevationLayer({
            url: '//elevation3d.arcgis.com/arcgis/rest/services/WorldElevation3D/Terrain3D/ImageServer',
            id: 'groundLayer',
        })],
    },
),

 

Query the layer: 

 

map.ground.queryElevation(point)

 

 

Why is this behaviour happening? Thanks

0 Kudos
0 Replies