本文整理汇总了Python中matplotlib.collections.PolyCollection.set_antialiased方法的典型用法代码示例。如果您正苦于以下问题:Python PolyCollection.set_antialiased方法的具体用法?Python PolyCollection.set_antialiased怎么用?Python PolyCollection.set_antialiased使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.collections.PolyCollection
的用法示例。
在下文中一共展示了PolyCollection.set_antialiased方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: PolyCollection
# 需要导入模块: from matplotlib.collections import PolyCollection [as 别名]
# 或者: from matplotlib.collections.PolyCollection import set_antialiased [as 别名]
[target_dist,target_dist],linewidth=4,linestyle="--",color="k",alpha=0.5)
else:
if lat_distance:
if geomag_distance:
target_mag=aacgm.Convert(target_lat,target_lon,0,year=2010,flag=0)
p1color_ax.plot([p.date2num(startday),p.date2num(endday)],
[target_mag[0],target_mag[0]],linewidth=4,linestyle="--",color="k",alpha=0.5)
else:
p1color_ax.plot([p.date2num(startday),p.date2num(endday)],
[target_lat,target_lat],linewidth=4,linestyle="--",color="k",alpha=0.5)
p.axes(p2color_ax)
pixs=N.array(p2pixels)
colors=p2values
coll = PolyCollection(pixs,edgecolors='none',linewidths=0.0,zorder=10)
coll.set_antialiased(False)
coll.set_facecolor(colors)
coll.set_alpha(1)
p2color_ax.add_collection(coll)
p2color_ax.autoscale_view()
p2color_ax.xaxis.set_major_formatter(dateFmt)
p2color_ax.set_xlim(p.date2num(startday), p.date2num(endday))
p2color_ax.set_ylim(plotdict["min_rang"],plotdict["max_rang"])
p2color_ax.xaxis.set_major_locator(tick2_minute_interval)
p2color_locator=MaxNLocator(nbins=6,prune='both',integer=True)
p2color_ax.yaxis.set_major_locator(p2color_locator)
p2color_ax.set_xticklabels([])
# p2color_ax.set_xticks([])
p2color_ax.yaxis.grid(True, linestyle='-', which='major', color='lightgrey',alpha=0.5)
p2color_ax.xaxis.grid(True, linestyle='-', which='major', color='lightgrey',alpha=0.5)
print "pcolor done"