TerrainInspector tile nr

The TerrainInspector tile nr dos not correspond to the documentation on https://github.com/AnalyticalGraphicsInc/cesium/wiki/Cesium-Terrain-Server

0/0 suppost to be in the bottom left corner not the top left. Or am i missing somthing ?

Hi Martin,

Terrain Inspector shows the internal tile numbering used by Cesium, which has its origin in the northwest corner. The CesiumTerrainProvider and the http://cesium.agi.com/smallterrain dataset, for no really good reason, use the Tile Map Service (TMS) tile organization, which is numbered from the southwest corner. You can see the code where CesiumTerrainProvider adapts Cesium’s internal numbering to TMS URLs here:
https://github.com/AnalyticalGraphicsInc/cesium/blob/master/Source/Scene/CesiumTerrainProvider.js#L97

Kevin

ok thanks for the info