quiverm
Project 2-D quiver plot on map axes
Syntax
h = quiverm(lat,lon,deltalat,deltalon)
h = quiverm(lat,lon,deltalat,deltalon,LineSpec)
h = quiverm(lat,lon,deltalat,deltalon,LineSpec,'filled')
h = quiverm(lat,lon,deltalat,deltalon,scale)
h
= quiverm(lat,lon,deltalat,deltalon,LineSpec,scale,'filled')
Description
h = quiverm(lat,lon,deltalat,deltalon)
displays velocity vectors
with components (deltalat,deltalon)
at the geographic
points (lat,lon)
on displayed map axes. All four
inputs should be in the AngleUnits
of the map axes.
The inputs deltalat
and deltalon
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,deltalat,deltalon,LineSpec)
specifies the line style,
marker, and color. If you use markers, they are plotted at the start points
of the vectors, i.e., the input points
(lat
,lon
).
h = quiverm(lat,lon,deltalat,deltalon,LineSpec,'filled')
results in the filling in of any symbols specified by
LineSpec
.
h = quiverm(lat,lon,deltalat,deltalon,scale)
and
h
= quiverm(lat,lon,deltalat,deltalon,LineSpec,scale,'filled')
alter 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+deltalat
,lon+deltalon
).