The support forum is temporarily read-only. For urgent requests, please email contact[at]psyberia.net
Whats source of "Public waypoints"
- tallowcatch
- Posts: 15
- Joined: Tue Oct 22, 2019 12:58 pm
Whats source of "Public waypoints"
I want update some of the public waypoints. Where do they come from?
-
- Site Admin
- Posts: 6408
- Joined: Wed Apr 14, 2010 9:41 pm
Re: Whats source of "Public waypoints"
Hi,
They come from the OSM project, but are quite out-dated now...
They come from the OSM project, but are quite out-dated now...
Do you like AlpineQuest ? Leave a small comment on Google Play !
- tallowcatch
- Posts: 15
- Joined: Tue Oct 22, 2019 12:58 pm
Re: Whats source of "Public waypoints"
So no dynamic updates? I figure it would be nice if you could load specific nodes from OSM (Like Hiking shelter) as an overlay to show on the map.Psyberia-Support wrote: ↑Tue May 25, 2021 3:39 pm Hi,
They come from the OSM project, but are quite out-dated now...
Kind of the same way as this page does https://pangose.github.io/sheltermap/
-
- Site Admin
- Posts: 6408
- Joined: Wed Apr 14, 2010 9:41 pm
Re: Whats source of "Public waypoints"
Unfortunately not.
When I need to extract specific OSM data I use this great tool: https://overpass-turbo.eu/
For example, to export all shelters of an area, move the map over your area and choose a correct zoom value,
Then paste this code in the text field:
Code: Select all
(
node[amenity=shelter]({{bbox}});
node[tourism=alpine_hut]({{bbox}});
node[tourism=wilderness_hut]({{bbox}});
);
out;
Finally click "Export" to export in a GPX or KML file you can open with the app.
Do you like AlpineQuest ? Leave a small comment on Google Play !