Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python library for animated map visualization [closed]

I want to visualize track on geographic map. I don't need thousands of layers, 3d and other GIS functionality. I just want to visualize my (latitude, longitude, altitude, time) tuples on map background as simple as possible. Animation should also be supported.

Could anyone recommend good Python library?

like image 676
cval Avatar asked Jan 26 '12 13:01

cval


2 Answers

There's something called basemap which is an addon for matplotlib to do maps.

See the gallery or cookbook example.

Matplotlib has it's own animation support and I don't know any reason it shouldn't work with basemap (although as that page notes, it's not the fastest thing around).

like image 99
timday Avatar answered Nov 11 '22 12:11

timday


There is a YouTube video series which covers basemap and matplotlib called 'Geographical Plotting with Python' posted by Sentdex.

Part 1 - http://www.youtube.com/watch?v=E6gvtfQHJUs

Incidentally he has a number of other interesting Python projects on his channel: http://www.youtube.com/user/sentdex

like image 38
Inyoka Avatar answered Nov 11 '22 12:11

Inyoka