I'm generating orbit plots and I would like to know if Matplotlib has any function that can generate figures. The idea would be to represent on the graph the point where the orbit is being captured. So, it would be nice to be able to plot a telescope or an eye at a specific point on the graph, something like that. Can Matplotlib do that? Below I provide an example of what I want more or less. In the image, I generated the graph, but I drew the eye by hand in Word. Is it possible to generate it with Python?
Asked
Active
Viewed 29 times
0
-
Never done it before, but I am pretty sure you can do with adding new axes to your figures (give them the location of your image icon) and then call imshow on these new axes. – user2586955 Jul 10 '23 at 13:56
-
1Does this answer your question? [How to insert a small image on the corner of a plot with matplotlib?](https://stackoverflow.com/questions/3609585/how-to-insert-a-small-image-on-the-corner-of-a-plot-with-matplotlib) – jared Jul 10 '23 at 14:36
-
1Or this: https://stackoverflow.com/q/65387500/12131013 – jared Jul 10 '23 at 14:37
-
I'll take a look. Thanks, Jared! – Projetos Programação Jul 10 '23 at 21:53