1GFLAS1(3NCARG) NCAR GRAPHICS GFLAS1(3NCARG)
2
3
4
6 GFLAS1 - Initiates storage of plotting instructions into a disk file.
7 Instructions subsequent to GFLAS1, but prior to a GFLAS2 call, will be
8 stored on disk rather than inserted into the output metafile.
9
11 CALL GFLAS1 (IB)
12
13
15 #include <ncarg/ncargC.h>
16
17 void c_gflas1 (int ib)
18
20 IB (INTEGER, input) Can be any integer between 0 and 99
21 inclusive, thus making it possible to define 100 different
22 storage buffers in a single job step.
23
25 The C-binding argument description is the same as the FORTRAN argument
26 description.
27
29 GFLAS1 automatically assigns the name GNFBxx (GKS New Flash Buffer) to
30 the file that will receive subsequent plotting instructions, where xx
31 is the integer value of IB. For example, if GFLAS1 is called with an
32 argument of 9, then subsequent plotting instructions will be stored in
33 file GNFB09. You may need to know the name of the disk file where the
34 plotting instructions are stored if and when you use GFLAS4. The GNFBxx
35 files are all created using FORTRAN logical unit IC as specified in the
36 GOPWK call for WISS.
37
39 Use the ncargex command to see the following relevant examples:
40 ccpmovi, tgflas, fgke02.
41
43 To use GFLAS1 or c_gflas1, load the NCAR Graphics libraries ncarg,
44 ncarg_gks, and ncarg_c, preferably in that order.
45
47 Online: gflash, gflas2, gflas3, gflas4, ncarg_cbind.
48
49 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial; NCAR Graphics
50 Fundamentals, UNIX Version
51
53 Copyright (C) 1987-2007
54 University Corporation for Atmospheric Research
55
56 This documentation is free software; you can redistribute it and/or
57 modify it under the terms of the GNU General Public License as
58 published by the Free Software Foundation; either version 2 of the
59 License, or (at your option) any later version.
60
61 This software is distributed in the hope that it will be useful, but
62 WITHOUT ANY WARRANTY; without even the implied warranty of
63 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
64 General Public License for more details.
65
66 You should have received a copy of the GNU General Public License along
67 with this software; if not, write to the Free Software Foundation,
68 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
69
70
71
72UNIX March 1993 GFLAS1(3NCARG)