Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用APLpy将 FITS 图像的缩放部分嵌入到同一个图中。
但是当使用 APLpy 加载 FITS 文件时,只返回一个“FITSFigure”对象。
fig = aplpy.FITSFigure('tmp.fits', slices=[0,0])
是否可以像这里一样使用 zoomed_inset_axes ,或者还有其他解决方案?
您可以使用 aplpy 指定要绘制的图形。然后,您可以获取图中的轴。
fig = plt.figure() aplpyfig = aplpy.FITSFigure('tmp.fits', figure=fig) axes = fig.get_axes()
从那时起,您可以使用它axes并使用 matplotlib 提供的任何方法来获取插图。
axes
另请参阅此问题:Aplpy multiplot dynamic axis sharing