Erstelle deine eigenen POI

In diesem Abschnitt wird es etwas komplexer und ist eher ein Ding für Bastler und Programmierer.

Using create_poi

If you choose to create your own set of POIs, there are two ways. 

1) You follow the manual way by pulling data from Openstreetmap using Overpass Turbo as an Interface. The data queried needs to be translated in a second step in the target format.

2) Use my little program create_poi. On a first glance the usage seems to be a littly tricky, nevertheless , as long as you have knowledge about tagging in OpenStreetmap, you may get confident soon. Pulled data is converted to Points of Interest (POI) or Waypoints

  • in a KML format for Oruxmaps (Standard KML)
  • in a KML format for OrganicMaps (Special Icon treatment)
  • GPX for Garmin including Symbol
  • GPI for Garmin Points of Interest (POI)


  1. Das Programm ist auf Github veröffentlicht. 
  2. Search for Releases at the right side
  3. Select “latest”
  4. Download create_poi.exe
  5. Download source.zip
  6. Entladen Sie die ZIP-Datei in ein Arbeitsverzeichnis.
  7. Store create_poi.exe in the same working directory. 
  8. Lesen Sie die separate Dokumentation: readme-licence.pdf. 


Using Overpass-Turbo

Gehe zu  https://overpass-turbo.eu/s/1UGc
Die Abfrage sollte automatisch starten. Werde nicht ungeduldig, die Abfrage dauert ein Weilchen.

Wenn es nicht klappt, dann nutze die folgende Abfrage:

Gehe zu https://overpass-turbo.eu/
Gebe im linken Bereich ein:

[out:json][timeout:400];

// gather results

(

nwr[“shop”=”motorcycle”] [“brand”~”.*KTM.*”,i] ({{bbox}});

nwr[“shop”=”motorcycle”] [“name”~”.*KTM.*”,i] ({{bbox}});

nwr[“shop”=”motorcycle”] [“brand”~”.*HUSQVA.*”,i] ({{bbox}});

nwr[“shop”=”motorcycle”] [“name”~”.*HUSQVA.*”,i] ({{bbox}});

);

out center;

When the query finishes, click Export, next GPX and save.
A file export.gpx should be in your download folder. 

Now you may use tools like  GPX Babel to translate the GPX Data into the data format you want.

Garmin POI Loader is the most simple way to create Garmoin Points of Interest from the data queried in the steps before.

de_DEDeutsch