当前位置: 首页>>代码示例>>Python>>正文


Python FITSFigure.set_title方法代码示例

本文整理汇总了Python中aplpy.FITSFigure.set_title方法的典型用法代码示例。如果您正苦于以下问题:Python FITSFigure.set_title方法的具体用法?Python FITSFigure.set_title怎么用?Python FITSFigure.set_title使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在aplpy.FITSFigure的用法示例。


在下文中一共展示了FITSFigure.set_title方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: FITSFigure

# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import set_title [as 别名]
halp_long = halp_proj.longitude_extrema
halp_lat = halp_proj.latitude_extrema

hi_proj = hi_proj.subprojection(xlo=halp_long[1], xhi=halp_long[0], ylo=halp_lat[0], yhi=halp_lat[1])

co21_proj = co21_proj.subprojection(xlo=halp_long[1], xhi=halp_long[0], ylo=halp_lat[0], yhi=halp_lat[1])

fig = p.figure()

# Halpha
halp_fig = FITSFigure(halp_proj.hdu, subplot=(2, 3, 1), figure=fig)
halp_fig.show_grayscale(stretch="log", vmin=0.01)
halp_fig.hide_xaxis_label()
halp_fig.hide_yaxis_label()
halp_fig.hide_tick_labels()
halp_fig.set_title(r"H$\alpha$")

hi_fig = FITSFigure(hi_proj.hdu, subplot=(2, 3, 2), figure=fig)
hi_fig.show_grayscale()
hi_fig.hide_xaxis_label()
hi_fig.hide_yaxis_label()
hi_fig.hide_tick_labels()
hi_fig.set_title(r"HI")
hi_fig.set_nan_color("k")
hi_fig.show_regions("pvslices_finalfig.reg")

co21_fig = FITSFigure(co21_proj.hdu, subplot=(2, 3, 3), figure=fig)
co21_fig.show_grayscale()
co21_fig.hide_xaxis_label()
co21_fig.hide_yaxis_label()
co21_fig.hide_tick_labels()
开发者ID:e-koch,项目名称:VLA_Lband,代码行数:33,代码来源:ngc604_pvslices.py


注:本文中的aplpy.FITSFigure.set_title方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。