All Questions
10 questions
0
votes
0
answers
63
views
Matplotlib Basemap animation taking longer to process with more frames
So I've attached some code that demonstrates what I'm doing. I'm trying to animate this variable in time over a latitude/longitude grid. If I set the number of frames to 5 or 6, it takes less than one ...
2
votes
1
answer
3k
views
Matplotlib basemap multiple shapes animation exception: 'list' object has no attribute 'set_animated'
I'm using basemap to plot some polygons on a map and make an animation. When I animate one polygon and change its shape it works.
If I add second one I got exception:
Traceback (most recent call last)...
0
votes
1
answer
287
views
How to make an animation subplot with Matplotlib on Basemap?
I'm trying to make a two-panel animation with time. I've found a similar example that I want to do, but I cannot go through with. Here's my code.
import numpy as np
import matplotlib.pyplot as plt
...
7
votes
1
answer
780
views
How to animate matplotlib's drawgreatcircle function?
I have created a small program which takes an NHL city and then draws the path the team travels throughout their season.
The resulting graphic is messy:
So I got the idea that it would be ...
7
votes
0
answers
1k
views
How to speed up a Python Basemap choropleth animation
Taking ideas from various sources, and combining with my own, I sought to create an animated maps showing the shading of countries based on some value in my data.
The basic process is this:
Run DB ...
4
votes
2
answers
3k
views
Animation Using Cartopy
I'm trying to write a python program that displays an animation of a map of the world where countries change color based on how much renewable energy use they have. I'm trying to have it display the ...
0
votes
1
answer
431
views
Removing points stored in a dictionary in a matplotlib basemap animation
I am trying to do the following: Plot points and store a reference in a dictionary. While animating remove points. A minimal example looks as follows:
%matplotlib qt
import matplotlib.pyplot as plt
...
5
votes
1
answer
1k
views
Matplotlib Subplot Animation with Basemap
I am trying to generate a four-panel animation of temperature change with time. Each of the four panels in the subplot should be an animated map; the difference between each panel being the data used. ...
0
votes
1
answer
385
views
Animating Text in Matplotlib Basemap
I plotting a 2D array over matplotlib's basemap and animating it through time. I am having trouble however adding in a time counter. The animation starts at 0 UT and progresses through 23 UT before ...
0
votes
1
answer
444
views
Python matplotlib animation of a constantly updated data feed
I'm trying to make a satellite visualization tool using an animation in matplotlib. I want to plot a 5-image animation and then constantly update this animation every time a new image appears.
I ...