1
私は、特定の場所で英国の風速と風向をプロットしています。私が疑問に思っているのは、風の方向をより明瞭にするために、三角形の先端の色を塗りつぶす方法はありますか?私のプロットで三角形の先頭の色を塗ることができますか?
これをプロットするための私のコードは次のとおりです。風速と方向を持つ英国の
payload_user={'[email protected]': {'lat': '51.45', 'lon': '-2.59'},'[email protected]': {'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")
地図: