1WMGETI(3NCARG) NCAR GRAPHICS WMGETI(3NCARG)
2
3
4
6 WMGETI - Retrieves the integral value of an internal parameter of type
7 INTEGER.
8
10 CALL WMGETI (PNAM,IVAL)
11
13 #include <ncarg/ncargC.h>
14
15 void c_wmgeti (char *pnam, int *ival)
16
18 PNAM (an input constant or variable of type CHARACTER) specifies
19 the name of the parameter to get. The name must appear as
20 the first three characters of the string.
21
22 IVAL (an output variable of type INTEGER) is the name of the
23 variable into which the value of the internal parameter
24 specified by PNAM is to be retrieved.
25
27 The C-binding argument descriptions are the same as the FORTRAN
28 argument descriptions.
29
31 This routine allows you to retrieve the current value of Wmap
32 parameters. For a complete list of parameters available in this
33 utility, see the wmap_params man page.
34
36 To use WMGETI or c_wmgeti, load the NCAR Graphics libraries ncarg,
37 ncarg_gks, and ncarg_c, preferably in that order.
38
40 Online: wmap, wmdflt, wmgetc, wmgetr, wmlabs, wmsetc, wmseti, wmsetr,
41 wmap_params
42
43 Hardcopy: WMAP - A Package for Producing Daily Weather Maps and
44 Plotting Station Model Data
45
47 Copyright (C) 1987-2007
48 University Corporation for Atmospheric Research
49
50 This documentation is free software; you can redistribute it and/or
51 modify it under the terms of the GNU General Public License as
52 published by the Free Software Foundation; either version 2 of the
53 License, or (at your option) any later version.
54
55 This software is distributed in the hope that it will be useful, but
56 WITHOUT ANY WARRANTY; without even the implied warranty of
57 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
58 General Public License for more details.
59
60 You should have received a copy of the GNU General Public License along
61 with this software; if not, write to the Free Software Foundation,
62 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
63
64
65
66UNIX January 1995 WMGETI(3NCARG)