1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
"""
===============================
Plotting a Map without any Axes
===============================
This examples shows you how to plot a Map without any annotations at all, i.e.
to save as an image.
"""
import matplotlib.pyplot as plt
import numpy as np
import sunpy.map
from sunpy.data.sample import AIA_171_IMAGE
##############################################################################
# Create a sunpy map from the sample data.
smap = sunpy.map.Map(AIA_171_IMAGE)
##############################################################################
# Plot the Map without a frame.
# We can setup a frameless figure and an axes which spans the whole canvas.
figure = plt.figure(frameon=False)
ax = plt.axes([0, 0, 1, 1])
# Disable the axis
ax.set_axis_off()
# Plot the map. Since are not interested in the exact map coordinates, we can
# simply use :meth:`~matplotlib.Axes.imshow`.
norm = smap.plot_settings['norm']
norm.vmin, norm.vmax = np.percentile(smap.data, [1, 99.9])
ax.imshow(smap.data,
norm=norm,
cmap=smap.plot_settings['cmap'],
origin="lower")
# sphinx_gallery_defer_figures
##############################################################################
# At this point you could save the figure with ``plt.savefig()`` or show it:
plt.show()
|