1MAPVEC(3NCARG) NCAR GRAPHICS MAPVEC(3NCARG)
2
3
4
6 MAPVEC - Draws lines on a map - used in conjunction with MAPFST.
7
9 CALL MAPVEC (RLAT,RLON)
10
12 #include <ncarg/ncargC.h>
13
14 void c_mapvec (float rlat, float rlon)
15
17 RLAT and RLON
18 (input expressions, of type REAL) specify the latitude and
19 longitude of a point to which the "pen" is to be moved.
20 Both are given in degrees. RLAT must be between -90. and
21 +90., inclusive; RLON must be between -540. and +540.,
22 inclusive.
23
25 The C-binding argument descriptions are the same as the FORTRAN
26 argument descriptions.
27
29 The statement:
30
31 CALL MAPVEC (RLAT, RLON)
32
33 is equivalent to
34
35 CALL MAPIT (RLAT, RLON, 1)
36
37 It moves the "pen" (in the "down" position) to the next point in a
38 series of points. See the man page for MAPIT.
39
41 To use MAPVEC or c_mapvec, load the NCAR Graphics libraries ncarg,
42 ncarg_gks, and ncarg_c, preferably in that order.
43
45 Online: ezmap, ezmap_params, mapaci, mapbla, mapblm, mapdrw, mapeod,
46 mapfst, mapgci, mapgrd, mapgrm, mapgtc, mapgti, mapgtl, mapgtr, mapint,
47 mapiq, mapiqa, mapiqd, mapiqm, mapit, mapita, mapitd, mapitm, maplbl,
48 maplmb, maplot, mappos, maproj, maprs, maprst, mapsav, mapset, mapstc,
49 mapsti, mapstl, mapstr, maptra, maptri, maptrn, mapusr, mpchln, mpfnme,
50 mpgetc, mpgeti, mpgetl, mpgetr, mpglty, mpiaty, mpifnb, mpilnb, mpiola,
51 mpiosa, mpipai, mpipan, mpipar, mpisci, mplnam, mplndm, mplndr, mplnri,
52 mpname, mprset, mpsetc, mpseti, mpsetl, mpsetr, supmap, supcon,
53 ncarg_cbind
54
56 Copyright (C) 1987-2009
57 University Corporation for Atmospheric Research
58 The use of this Software is governed by a License Agreement.
59
60
61
62UNIX March 1993 MAPVEC(3NCARG)