I'm asking my question here because I haven't find any information that could solve my problem. With FuncAnimation
, I'm plotting the coordinates of a moving point on a world map. Every coordinates that I take from a CSV file come from a function where I implement myself the time spending. The data are then send to a csv file that I call in my FuncAnimation
function.
This is how my CSV file look like:
enter image description here
All the plotting is working but I want to improve it. This is how my plot looks like at a period t:
I would like to know if someone knows a command that would permit me to plot my coordinates and the time (on the bottom left for example) like the time spending at the bottom left of the window on my computer, something like plt.time(position= 'bottom left', time_list)
.
The time value would be taken from my CSV, and open as a list (time_list
) at the beginning of the code.
I tried to find the function on internet but didn't find anything except how to put the time as an axe which is not what I want.