Latest:
- Sailfish OS and memory
- Hillshade tile server
- Statistics of OSM Scout for Sailfish OS
- Nebezpečný router
- Tree model with Silica components
By month:
- November 2021
- January 2019
- December 2017
- December 2016
- May 2014
- April 2014
- November 2013
- April 2013
- April 2011
- February 2011
- January 2011
- August 2010
- May 2010
- March 2010
- January 2010
- October 2009
- April 2009
- February 2009
- October 2008
- September 2008
- August 2008
- April 2008
- March 2008
- February 2008
Topic:
Hillshade tile server
When you are hiking, cycling, skiing or do any other activity in mountain area, it is useful to have map that gives you overview about terrain. Clasic way how to provide this overview in 2D map is adding contour lines. For fast overview and good-looking map is great to add even hillshades.
I was using hillshade tiles provided by Heidelberg university for my project – OSM Scout for Sailfish OS. They allow me to use it for my non-profit project, but without any guaranties. This „korona“ hillshade server stops working few months ago unfortunately, it just reply with HTTP code 503 „Service Unavailable“ to every request. I don't try to contact them, but tried to find a way how to deploy own tile server…
On the internet exists many tutorials how to generate hillshade layer and tiles for specific area and generate tiles from it. I read these two: „Create beautiful hillshade maps…“ from Michael Corey and „Creating Hill Shaded Tile Overlays“ from Alastair Aitchison. But no tutorial nor project don't allow me to build tile server with global coverage.
Long story short, I combined all steps to one Python script that generates hillshade image using GDAL library and transforms it to png tile using Python Imaging Library. For generating tile on demand on web server, I wrote simple PHP script. It looks to tile cache on the server first and if this tile was not generated yet, executes python script. GDAL library may be memory expensive, to avoid denial of service by memory exhaustion, I needed to limit maximum count of parallel python processes. To do this, I wrote spin lock with shared counter in Memcached. For this solution inspires me blog post on leaseweb.com.
You can try result here (using Leaflet JavaScript library), and clone source code from Github: Hillshade tile server.