本文整理汇总了Python中aplpy.FITSFigure.show_colorbar方法的典型用法代码示例。如果您正苦于以下问题:Python FITSFigure.show_colorbar方法的具体用法?Python FITSFigure.show_colorbar怎么用?Python FITSFigure.show_colorbar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aplpy.FITSFigure
的用法示例。
在下文中一共展示了FITSFigure.show_colorbar方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: dict
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import show_colorbar [as 别名]
tsimage = dict(label='TSMap', filename=tsfile)
# Determine image center and width / height
dpi = 2000
header = fits.getheader(tsimage['filename'])
wcs = WCS(header)
header['NAXIS1'] / dpi
header['NAXIS2'] / dpi
lon, lat = header['NAXIS1'] / 2., header['NAXIS2'] / 2.
x_center, y_center = wcs.wcs_pix2world(lon, lat, 0)
radius = header['CDELT2'] * header['NAXIS2'] / 2.
# Computing the sub-figure sizes is surprisingly hard
figsize=(5, 5)
figure = mpl.figure(figsize=figsize)
f = FITSFigure(tsimage['filename'], figure=figure)
f.recenter(x_center, y_center, 0.95 * radius)
set_hgps_style(f)
f.show_colorscale(vmin=1e-5, vmax=vmax, stretch=st[0], exponent=1, cmap='jet') #vmid=-3, stretch='log', )
f.show_colorbar()
filename = config["out"]+'/TSMaps.eps'
print('Writing {}'.format(filename))
figure.savefig(filename)
filename = config["out"]+'/TSMaps.png'
print('Writing {}'.format(filename))
figure.savefig(filename)