How to plot wind vectors with quivers on a latitude/logitude plot
17 次查看(过去 30 天)
显示 更早的评论
Hi,
I am plotting some wind data and I would like to have the that shows the direction and speed of the wind at the location were they were taken (given by latitude and longitude).
Minimal working example:
lat=[10,11,13];
lon=[-59,-58,-55];
h1=[100,100,100];
h2=[200,200,200];
u_h1=[-2,-3,-5];
u_h2=[-3,-5,-7];
v_h1=[2,1,-1];
v_h2=[2,3,-2];
w_h1=[0,0,0];
w_h2=[0,0,0];
figure
quiver3(lon,lat,h1,u_h1,v_h1,w_h1)
hold on
quiver3(lon,lat,h2,u_h1,v_h1,w_h2)
Does quiver already produce reliable length and arrow direction even if the underling grid in lat and lon. It seems so from the example but i am perplexed how does it work.
If it does not work with lat and lon as x and y how can I substitute them ratining the information about the location?
Thanks in advance
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Vector Fields 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!