how to Use LERC encoded tiles in a local tile package as an elevation source?

724
1
07-07-2017 01:02 AM
xipeng
by
New Contributor III

In 100.1, can Use LERC encoded tiles in a local tile package as an elevation source, and how the data is made, I've made a TPK, but I haven't seen the ups and downs of the terrain, why?

The test data is uploaded to the attachment.

My code is as follows;

string tileCachePath = @"D:\runtime\SanFrancisco.tpk";
TileCache tileCache = new TileCache(tileCachePath);
elevationSrc = new ArcGISTiledElevationSource(tileCache);
elevationSrc.Loaded += ElevationSrc_Loaded;
this.mapScene.Scene.BaseSurface.ElevationSources.Add(elevationSrc);

0 Kudos
1 Reply
GregDeStigter
Esri Contributor

Your code looks correct, but your tile package (.tpk) file doesn't seem valid. If you follow these instructions you should be able to create a LERC TPK that can be used as an elevation surface. Make sure you use the right tiling scheme in the Manage Tile Cache tool so that the elevation data comes through.

0 Kudos