【发布时间】:2018-05-31 05:03:07
【问题描述】:
我正在绘制英国特定位置的风速和风向。我想知道的是,有没有办法给三角形的尖端着色以使风向更明显?
我的绘制代码是:
payload_user={'maddison.newman@example.com': {'lat': '51.45', 'lon': '-2.59'},'mandy.larson@example.com': {'lat': '52.06', 'lon': '-2.82'}}
m.plot(y=float(payload_user[email_user]['lat']),x=float(payload_user[email_user]['lon']),marker=(3,0,wind_direction_deg),color = col, markersize=7 )
plt.title("Wind speed and Direction in the UK for specific users")
plt.xlabel('Longitude')
plt.ylabel("Latitude")
英国的风速和风向地图:
【问题讨论】:
标签: python matplotlib plot colors symbols