Mapping Toolbox | ![]() ![]() |
Project two-dimensional quiver plot on map axes
Syntax
h = quiverm(lat,lon,u,v) h = quiverm(lat,lon,u,v,linespec
) h = quiverm(lat,lon,u,v,scale) h = quiverm(lat,lon,u,v,linespec
,'filled') h = quiverm(lat,lon,u,v,linespec
,scale) h = quiverm(lat,lon,u,v,linespec
,scale,'filled')
Description
h = quiverm(lat,lon,u,v)
displays velocity vectors with components (u,v)
at the geographic points (lat,lon)
on displayed map axes. All four inputs should be in the AngleUnits
of the map axes. The inputs u
and v
determine the direction of the vectors in latitude and longitude, respectively. The function automatically determines the length of these vectors to make them as long as possible without overlap. The object handles of the displayed vectors can be returned in h
.
h = quiverm(lat,lon,u,v,linespec
) allows the control of the line specification of the displayed vectors with a linespec
string recognized by the MATLAB line
command. If symbols are indicated in linespec
, they are plotted at the start points of the vectors, i.e., the input points (lat
,lon
).
h = quiverm(lat,lon,u,v,linespec
,'filled') results in any symbols specified by linespec
being filled in.
h = quiverm(lat,lon,u,v,scale) alters the automatically calculated vector lengths by multiplying them by the scalar value scale
. For example, if scale
is 2, the displayed vectors are twice as long as they would be if scale
were 1 (the default). When scale is set to 0, the automatic scaling is suppressed, and the length of the vectors is determined by the inputs. In this case, the vectors are plotted from (lat
,lon
) to (lat+u
,lon+v
).
Examples
Plot quiver vectors from Land's End (50°N,5.4°W) and Majorca (39.7°N,2.9°E) in a direction corresponding to +5° latitude and +3° longitude. Use automatic scaling.
load coast axesm('eqacon','MapLatLimit',[30 60],'MapLonLimit',[-10 10]) framem; plotm(lat,long) lat0 = [50 39.7]; lon0 = [-5.4 2.9]; u = [5 5]; v = [3 3]; quiverm(lat0,lon0,u,v,'r')
See Also
quiver3m |
Three-dimensional quiver plot projected on map axes |
quiver |
Quiver or velocity plot (see online MATLAB Function Reference) |
![]() | quiver3m | rad2deg | ![]() |