moooeeeep
moooeeeep

Reputation: 32522

Draw a map with gps markers and save this image to file

I have some GPS position recordings, which I want to draw into a map (e.g. OpenStreetMap) and save this as an image file.

I'm using python. I've found osm-gps-map as a candidate library to do the visualization, but apparantly the API lacks some functionality to satisfy all of my needs. What I need is a library that does:

I seriously want to avoid being forced to manually make a screenshot from a widget or a browser window. And if possible I also want to avoid to implement the necessary projection functionality by myself (as in here). Does anyone know a library/toolchain that provides the desired functionality (if possible for use by Python)?

Upvotes: 4

Views: 14615

Answers (1)

ChrisP
ChrisP

Reputation: 5942

You may want to consider using Basemap for matplotlib. Here is a blog post describing how to use this package with OSM.

Upvotes: 10

Related Questions