1ARINAM(3NCARG) NCAR GRAPHICS ARINAM(3NCARG)
2
3
4
6 ARINAM - Initializes an area map.
7
9 CALL ARINAM (MAP,LMAP)
10
12 #include <ncarg/ncargC.h>
13
14 void c_arinam (int *map, int lmap)
15
17 MAP (output array, of type INTEGER, dimensioned at least LMAP)
18 - An integer array in which an area map is to be
19 constructed. Each vertex for an edge segment in your area
20 map requires ten words in the array MAP. Remember that the
21 total number of vertices includes those added at each
22 intersection of edges, and those added when long edge
23 segments are broken into shorter edge segments.
24
25 LMAP (an input expression of type INTEGER) - Length of the MAP
26 array. As part of the initialization process, the value of
27 LMAP is stored in MAP(1); that way, it need not be given as
28 an argument in calls to other routines that use the area
29 map.
30
32 The C-binding argument descriptions are the same as the FORTRAN
33 argument descriptions.
34
36 Use the ncargex command to see the following relevant examples: cardb1,
37 cardb2, carfill, carline, carmap, ccpcldm, ccpfil, ccplbam, ccpllb,
38 ccpllc, ccplll, ccpllo, ccpllp, ccpllt, ccpllw, ccppc, ccppc1, ccppc2,
39 ccppc3, ccppc4, ccprc, ccpscam, ccpvs, colcon, cmpfil, cmpgrp, cmpita,
40 cmpitm, cmplab, cmpmsk, cmptit, cpex01, cpex02, cpex03, cpex04, cpex05,
41 cpex06, cpex07, cpex08, eezmpa, arex01, cbex01, vvex01, tareas, tconpa,
42 tezmpa, fcover, ffex00, ffex03, ffex05, fcirc, fsfsgfa, fsppoint.
43
45 To use ARINAM or c_arinam, load the NCAR Graphics libraries ncarg,
46 ncarg_gks, and ncarg_c, preferably in that order.
47
49 Online: areas, areas_params, ardbpa, ardrln, aredam, argeti, argetr,
50 argtai, armvam, arpram, arscam, arseti, arsetr, ncarg_cbind
51
52 Hardcopy: NCAR Graphics Contouring and Mapping Tutorial
53
55 Copyright (C) 1987-2007
56 University Corporation for Atmospheric Research
57
58 This documentation is free software; you can redistribute it and/or
59 modify it under the terms of the GNU General Public License as
60 published by the Free Software Foundation; either version 2 of the
61 License, or (at your option) any later version.
62
63 This software is distributed in the hope that it will be useful, but
64 WITHOUT ANY WARRANTY; without even the implied warranty of
65 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
66 General Public License for more details.
67
68 You should have received a copy of the GNU General Public License along
69 with this software; if not, write to the Free Software Foundation,
70 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
71
72
73
74UNIX March 1993 ARINAM(3NCARG)