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-2009
54 University Corporation for Atmospheric Research
55 The use of this Software is governed by a License Agreement.
56
57
58
59UNIX March 1993 GFLAS1(3NCARG)