Draws a two-dimensional velocity field plot on a map, with each directed arrow indicating the magnitude and direction of the field.
v The Y component of the two-dimensional field. Must be a two-dimensional array of the same size as u.
x (optional) The abscissa values. Must be a vector of longitude coordinates. The size of x must equal the first dimension of u and v.
y (optional) The ordinate values. Must be a vector of latitude coordinates. The size of y must equal the second dimension of u and v.
Dots If present and nonzero, places a dot at the position of the missing data. Otherwise, nothing is drawn for missing points. Dots is only valid if the Missing keyword is also specified.
Length A length factor. The default value is 1.0, which makes the longest (u, v) vector have a length equal to the length of a single cell.
Missing A 2D array with the same size as the u and v arrays. It is used to specify that specific points have missing data.
If the magnitude of the vector at (i, j) is less than the corresponding value in Missing, then the data is considered to be valid. Otherwise, the data is considered to be missing.
Thus, one way to set up a Missing array is to initialize all elements to some large value:
missing_array = FLTARR(n, m) + 1.0E30
missing_array(i, j) = -missing_array(i, j)
If missing values are present, you can use the Missing keyword to specify that they be ignored during the plotting, or the Dots keyword to specify that they be marked with a dot.
$VNI_DIR/mapping-1_1/demo/map_test6.pro
VNI_DIR:[MAPPING-1_1.DEMO]map_test6.pro
%VNI_DIR%\mapping-1_1\demo\map_test6.pro