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-2007
57 University Corporation for Atmospheric Research
58
59 This documentation is free software; you can redistribute it and/or
60 modify it under the terms of the GNU General Public License as pub‐
61 lished by the Free Software Foundation; either version 2 of the
62 License, or (at your option) any later version.
63
64 This software is distributed in the hope that it will be useful, but
65 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
66 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
67 Public License for more details.
68
69 You should have received a copy of the GNU General Public License along
70 with this software; if not, write to the Free Software Foundation,
71 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
72
73
74
75UNIX March 1993 MAPFST(3NCARG)