本文整理匯總了Python中sunpy.map.Map.set_colors方法的典型用法代碼示例。如果您正苦於以下問題:Python Map.set_colors方法的具體用法?Python Map.set_colors怎麽用?Python Map.set_colors使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sunpy.map.Map
的用法示例。
在下文中一共展示了Map.set_colors方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: ImageNormalize
# 需要導入模塊: from sunpy.map import Map [as 別名]
# 或者: from sunpy.map.Map import set_colors [as 別名]
wp_map.plot_settings['norm'] = ImageNormalize(vmin=1, vmax=len(timestamps), stretch=LinearStretch())
wp_map.plot_settings['cmap'] = c_map_cm
wp_map.plot_settings['norm'].vmin = 1
# Create a composite map with a colorbar that shows timestamps corresponding to
# the progress of the wave.
# TODO: make the zero value pixels completely transparent
# Observation date
observation_date = mc[0].date.strftime("%Y-%m-%d")
# Create the composite map
c_map = Map(mc[0], wp_map, composite=True)
# Observational data map
c_map.set_colors(0, cm.gray_r)
# Wave progress map
c_map_cm.set_under('k', alpha=0.001)
c_map.set_colors(1, c_map_cm)
c_map.set_alpha(1, 0.8)
# Create the figure
plt.close('all')
figure = plt.figure()
axes = figure.add_subplot(111)
if for_paper:
observation = r"AIA {:s}".format(mc[0].measurement._repr_latex_())
title = "wave progress map\n{:s}".format(observation)
image_file_type = 'eps'
else: