1MAPFST(3NCARG) NCAR GRAPHICS MAPFST(3NCARG)
2
3
4
6 MAPFST - Draws lines on a map - used in conjunction with MAPVEC.
7
9 CALL MAPFST (RLAT,RLON)
10
12 #include <ncarg/ncargC.h>
13
14 void c_mapfst (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 argu‐
26 ment descriptions.
27
29 The statement:
30
31 CALL MAPFST (RLAT, RLON)
32
33 is equivalent to
34
35 CALL MAPIT (RLAT, RLON, 0)
36
37 It moves the "pen" (in the "up" position) to the first point in a
38 series of points. See the man page for MAPIT.
39
41 To use MAPFST or c_mapfst, 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 mapgci, mapgrd, mapgrm, mapgtc, mapgti, mapgtl, mapgtr, mapint, mapiq,
47 mapiqa, mapiqd, mapiqm, mapit, mapita, mapitd, mapitm, maplbl, maplmb,
48 maplot, mappos, maproj, maprs, maprst, mapsav, mapset, mapstc, mapsti,
49 mapstl, mapstr, maptra, maptri, maptrn, mapusr, mapvec, 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 MAPFST(3NCARG)