本文整理汇总了Python中aplpy.FITSFigure.add_beam方法的典型用法代码示例。如果您正苦于以下问题:Python FITSFigure.add_beam方法的具体用法?Python FITSFigure.add_beam怎么用?Python FITSFigure.add_beam使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aplpy.FITSFigure
的用法示例。
在下文中一共展示了FITSFigure.add_beam方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_beam_pad
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_pad():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.beam.set_pad(0.1)
f.beam.set_pad(0.3)
f.close()
示例2: test_beam_frame
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_frame():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.beam.set_frame(True)
f.beam.set_frame(False)
f.close()
示例3: test_beam_hatch
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_hatch():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
for hatch in ['/', '\\', '|', '-', '+', 'x', 'o', 'O', '.', '*']:
f.beam.set_hatch(hatch)
f.close()
示例4: test_beam_corner
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_corner():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
for corner in ['top', 'bottom', 'left', 'right', 'top left', 'top right',
'bottom left', 'bottom right']:
f.beam.set_corner(corner)
f.close()
示例5: test_beam_angle
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_angle():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.show_grayscale()
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.beam.set_angle(0.)
f.beam.set_angle(55.)
f.close()
示例6: test_beam_linewidth
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_linewidth():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.beam.set_linewidth(0)
f.beam.set_linewidth(1)
f.beam.set_linewidth(5)
f.close()
示例7: test_beam_linestyle
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_linestyle():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.beam.set_linestyle('solid')
f.beam.set_linestyle('dotted')
f.beam.set_linestyle('dashed')
f.close()
示例8: test_beam_edgecolor
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_edgecolor():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.beam.set_edgecolor('black')
f.beam.set_edgecolor('#003344')
f.beam.set_edgecolor((1.0, 0.4, 0.3))
f.close()
示例9: test_beam_addremove
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_beam_addremove():
data = np.zeros((16, 16))
f = FITSFigure(data)
f.show_grayscale()
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.remove_beam()
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.remove_beam()
f.close()
示例10: test_numpy_beam
# 需要导入模块: from aplpy import FITSFigure [as 别名]
# 或者: from aplpy.FITSFigure import add_beam [as 别名]
def test_numpy_beam():
data = np.arange(256).reshape((16, 16))
f = FITSFigure(data)
f.show_grayscale()
f.add_beam(major=0.1, minor=0.04, angle=10.)
f.close()