1MPGLTY(3NCARG) NCAR GRAPHICS MPGLTY(3NCARG)
2
3
4
6 MPGLTY - Retrieves the type of the line currently being drawn by
7 MPLNDM.
8
10 CALL MPGLTY (ILTY)
11
13 #include <ncarg/ncargC.h>
14
15 void c_mpglty (int *ilty)
16
18 ILTY (an output variable of type INTEGER) is the type of the
19 line: 1 => a line separating land from water, 2 => a line
20 separating one "continent" from another (as, for example,
21 Africa from Eurasia, North America from Central America, or
22 Central America from South America), 3 => a line separating
23 one country from another, 4 => a line separating one state
24 from another, and 5 => a line separating one county from
25 another. If the current line is used on more than one
26 level (as, for example, a portion of the California
27 coastline, which is used on all five levels), then the
28 value of ILTY will be the smallest of the numerical values
29 that apply.
30
32 The C-binding argument description is the same as the FORTRAN argument
33 description.
34
36 MPGLTY may be called from within a line-processing routine whose name
37 is used in a call to MPLNDM to retrieve, in ILTY, the type of the line
38 being processed. This information may be used to determine how the
39 line is to be drawn.
40
42 Use the ncargex command to see the following relevant example: mpex11.
43
45 To use MPGLTY or c_mpglty, load the NCAR Graphics libraries ncarg,
46 ncarg_gks, and ncarg_c, preferably in that order.
47
49 Online: ezmap, ezmap_params, mapaci, mapbla, mapblm, mapdrw, mapeod,
50 mapfst, mapgci, mapgrd, mapgrm, mapgtc, mapgti, mapgtl, mapgtr, mapint,
51 mapiq, mapiqa, mapiqd, mapiqm, mapit, mapita, mapitd, mapitm, maplbl,
52 maplmb, maplot, mappos, maproj, maprs, maprst, mapsav, mapset, mapstc,
53 mapsti, mapstl, mapstr, maptra, maptri, maptrn, mapusr, mapvec, mpchln,
54 mpfnme, mpgetc, mpgeti, mpgetl, mpgetr, mpiaty, mpifnb, mpilnb, mpiola,
55 mpiosa, mpipai, mpipan, mpipar, mpisci, mplnam, mplndm, mplndr, mplnri,
56 mpname, mprset, mpsetc, mpseti, mpsetl, mpsetr, supmap, supcon,
57 ncarg_cbind
58
60 Copyright (C) 1987-2007
61 University Corporation for Atmospheric Research
62
63 This documentation is free software; you can redistribute it and/or
64 modify it under the terms of the GNU General Public License as
65 published by the Free Software Foundation; either version 2 of the
66 License, or (at your option) any later version.
67
68 This software is distributed in the hope that it will be useful, but
69 WITHOUT ANY WARRANTY; without even the implied warranty of
70 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
71 General Public License for more details.
72
73 You should have received a copy of the GNU General Public License along
74 with this software; if not, write to the Free Software Foundation,
75 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
76
77
78
79UNIX April 1998 MPGLTY(3NCARG)