res@cnFillPalette = "MPL_BrBG" ; 颜色表(color tables) res@pmLabelBarOrthogonalPosF = 0.1 ; 向下移动colorbar res@pmLabelBarWidthF = 0.6 ; colorbar宽度 res@pmLabelBarHeightF = 0.08 ; colorbar高度 res@lbLabelFontHeightF = 0.015 ; colorbar字体大小 res@lbBoxLinesOn = False ; colorbar间...
res@lbLabelFontHeightF=0.02;标签字体大小res@lbLabelFontColor= “black” ;标签字体颜色res@lbLabelBarOrthogonalposF=0.15;垂直移动色标res@lbLabelBarWidthF=0.5;增加色标宽度res@lbLabelBarHeightF=0.06减小色标高度res@lbBoxLinesOn = True ;绘制色标方框的边线res@lbBoxLineThicknessF=0.02;色标方框边线的粗细...
fig.colorbar(contour, ax=ax, label='Water Vapor Flux Divergence (g/cm²/s)') # 使用quiver函数需要确保数据的间隔,这里我们每隔5个点取样 Q = ax.quiver(longitude[::5], latitude[::5], u[::5, ::5], v[::5, ::5], scale=300,color="red") # 绘制shapefile gdf.plot(ax=ax, colo...