1WMBARB(3NCARG) NCAR GRAPHICS WMBARB(3NCARG)
2
3
4
6 WMBARB - plots wind barbs.
7
9 CALL WMBARB (X,Y,U,V)
10
12 #include <ncarg/gks.h>
13
14 void c_wmbarb(float x, float y, float u, float v)
15
17 X (Real, Input) - An X coordinate (specified in world coordi‐
18 nates) of a point that specifies the position of the base
19 of a wind barb.
20
21 Y (Real, Input) - A Y coordinate (specified in world coordi‐
22 nates) of a point that specifies the position of the base
23 of a wind barb.
24
25 U (Real, Input) - The X component of a wind vector.
26
27 V (Real, Input) - The Y component of a wind vector.
28
30 The angle at which the wind barb is drawn is determined by the vector
31 (U,V) and the magnitude of that vector denotes the wind speed in knots.
32 Set the values for the appropriate internal parameters before calling
33 WMBARB to produce the wind barb. The internal parameters that control
34 the appearance of wind barbs are: COL, WBA, WBD, WBF, WBS, WBT.
35
37 To use WMBARB or c_wmbarb, load the NCAR Graphics libraries ncarg,
38 ncarg_gks, and ncarg_c, preferably in that order.
39
41 Online: wmap, wmdflt, wmgetc, wmgeti, wmgetr, wmlabs, wmsetc, wmseti,
42 wmsetr, wmstnm, wmap_params
43
44 Hardcopy: WMAP - A Package for Producing Daily Weather Maps and Plot‐
45 ting Station Model Data
46
48 Copyright (C) 1987-2007
49 University Corporation for Atmospheric Research
50
51 This documentation is free software; you can redistribute it and/or
52 modify it under the terms of the GNU General Public License as pub‐
53 lished by the Free Software Foundation; either version 2 of the
54 License, or (at your option) any later version.
55
56 This software is distributed in the hope that it will be useful, but
57 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
58 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
59 Public License for more details.
60
61 You should have received a copy of the GNU General Public License along
62 with this software; if not, write to the Free Software Foundation,
63 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
64
65
66
67UNIX January 1995 WMBARB(3NCARG)