How can I display tiles which are diffrent matrix on globe?
Hello
I meet such a problem. My tiles projection is not different from regular,
which I mean for example WebGLEarth tiles matrix is square(such as 4x4,8x8
etc), but our projection is different as the tiles matrix is rectangle
(such as 4x2,8x4 etc).
our Y axis is half smaller than the regular Y axis.
who can help you about this problem?thank you very much

-
AdminPetr Pridal (Admin, WebGL Earth) commented
Prepare your raster data in Mercator projection - the same as if you would like to display them on top of Google Maps or OpenStreetMap.
If you own the data - easiest is to render them into tiles with MapTiler (http://www.maptiler.org) or GDAL2Tiles, or a dynamic server to server them - such as http://www.geoserver.org/ or http://www.mapserver.org/.
If you do not control the data - you can set a proxy - such as http://mapproxy.org/ or http://www.tilecache.org/ to do that for remote data (WMS?).