rinigus / osmscout-server

Maps server providing tiles, geocoder, and router
https://rinigus.github.io/osmscout-server
GNU General Public License v3.0
160 stars 27 forks source link

Hiking #297

Open semicarbazid opened 5 years ago

semicarbazid commented 5 years ago

Hi,

currently I am using Android + Oruxmaps + OpenAndroMaps (Elevate theme) for offline hiking. Is it possible to resemble something close to that with the mapbox-gl data from osmscout-server? Does the data contain contour lines, hiking paths, and so on? Is it possible to create a theme which highlights those data and for example render hiking routes based on SAC scale? I had a look at Mapbox Outdoors theme. Comes kind of close (although the SAC scale is missing). But that would be a start...

Thank you for your thoughts! Bernd

rinigus commented 5 years ago

Such data are not imported at the moment, but there is nothing preventing to do so. I will have to look up how to do it in terms of data that needs to be retrieved and how to show it.

semicarbazid commented 5 years ago

Thank you. I am looking forward to using this on the upcoming Librem 5! :-)

Am 6. Januar 2019 18:34:58 MEZ schrieb rinigus notifications@github.com:

Such data are not imported at the moment, but there is nothing preventing to do so. I will have to look up how to do it in terms of data that needs to be retrieved and how to show it.

-- You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub: https://github.com/rinigus/osmscout-server/issues/297#issuecomment-451759464

rinigus commented 5 years ago

Will be there in time :) . Not sure whether with the contours though...

semicarbazid commented 5 years ago

Maybe adding support for user-supplied DEM files might be helpful? Apart from being better (at least from a LIDAR source) than gps heights in track recording, these can be used to produce map overlays such as hill shadows and slope maps (possible in Oruxmaps). So it may be also possible to produce a contour line overlay...

Am 6. Januar 2019 20:26:18 MEZ schrieb rinigus notifications@github.com:

Will be there in time :) . Not sure whether with the contours though...

-- You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub: https://github.com/rinigus/osmscout-server/issues/297#issuecomment-451767469

rinigus commented 5 years ago

I am ont sure it will be easy to support user-provided data. Let's see when I get to it.

dustinlagoy commented 3 years ago

This feature would be great for me too. I currently use Android and OsmAnd which has some features I like. It is really helpful for me to have the ability for custom overlays similar to what @semicarbazid mentions in Oruxmaps. With some GIS and command line scripting I can put basically any raster into OsmAnd, including satellite imagery, custom slope angles and scanned topos, and overlay them with the OSM vector data in the app. Some things like this that would be great for me for hiking and similar activities in OSM Scout Server (or maybe Pure Maps) are:

For the elevation layers, I see two approaches. OsmAnd seems to have separate maps for each type (contours, hillshades, etc) which I expect is simpler implementation wise and also probably requires less processing but almost definitely more storage. The other option would be to have just one (probably raster) elevation data set and derive the various layers from it. @semicarbazid is this what Oruxmaps does? Deriving the layers on the fly sounds resource intensive to me.

Integration of all these different types layers would be great, but at the very least having the ability to overlay custom user-provided raster/vector maps would cover 99% of my usage, as I can just make any layer I want myself. I'd be happy to help out with some implementation too if you think any of this is doable @rinigus