This file is indexed.

/usr/share/ncarg/tests/c_tgrida.c is in libncarg-data 6.3.0-6build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
 *	$Id: c_tgrida.c,v 1.5 1995-06-14 13:59:34 haley Exp $
 */
#include <stdio.h>
#include <math.h>
#include <ncarg/ncargC.h>
#include <ncarg/gks.h>

#define IWTYPE 1
#define WKID   1

main()
{
    int idum,ierr;
/*
 * OPEN GKS, OPEN WORKSTATION OF TYPE 1, ACTIVATE WORKSTATION
 */
    gopen_gks ("stdout",0);
    gopen_ws (WKID, NULL, IWTYPE);
    gactivate_ws (WKID);
/*
 * INVOKE DEMO DRIVER
 */    
    tgrida(&ierr);
/*
 *     DEACTIVATE AND CLOSE WORKSTATION, CLOSE GKS.
 */
    gdeactivate_ws(WKID);
    gclose_ws(WKID);
    gclose_gks();
}

int tgrida(ier)
int *ier;
{
/*
 *
 * PURPOSE                To provide a simple demonstration of
 *                        all of the entry points of the GRIDAL
 *                        package.  Eight plots are produced.
 *
 * USAGE                  CALL TGRIDA (IERROR)
 *
 * ARGUMENTS
 *
 * ON OUTPUT              IERROR
 *                          An integer variable
 *                          = 0, if the test was successful,
 *                          = 1, otherwise
 *
 * I/O                    If the test is successful, the message
 *
 *              GRIDAL TEST EXECUTED--SEE PLOTS TO CERTIFY
 *
 *                        is printed on unit 6.  In addition, 8
 *                        c_frames are produced on the machine graphics
 *                        device.  In order to determine if the test
 *                        was successful, it is necessary to examine
 *                        these plots.
 *
 * PRECISION              Single
 *
 * LANGUAGE               FORTRAN 77
 *
 * ALGORITHM              All of the entries of the GRIDAL package
 *                        are invoked (GRID, GRIDL, PERIM, PERIML,
 *                        HALFAX, TICK4, LABMOD, and GRIDAL) to
 *                        produce plots.  The GRIDAL entry is called
 *                        ten times.  The first call is to demonstate
 *                        a full c_frame grid.  The next nine calls
 *                        create a single c_frame that contains the
 *                        nine legal IGPH grid options to show how
 *                        up to nine plots can be placed on a single
 *                        c_frame.
 */
    int igph,i;
    int knt;
    float x1,x2,y1,y2;
    float h1,h2,v1,v2;
    float xg, yg;
    char buff[3];
    Glimit win, vp;
/*
 * Define normalization transformation 1.
 */
    win.x_min = 0.;
    win.x_max = 1.;
    win.y_min = 0.;
    win.y_max = 1.;
    gset_win(1,&win);
    vp.x_min = .2;
    vp.x_max = .8;
    vp.y_min = .2;
    vp.y_max = .8;
    gset_vp(1,&vp);
/*    
 * GRID 
 */
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR GRID",16.,0.,0.);
    gsel_norm_tran(1);
    c_grid(5,2,6,3);
    c_frame();
    
/* GRIDL */
    
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR GRIDL",16.,0.,0.);
    gsel_norm_tran(1);
    c_gridl(5,2,6,3);
    c_frame();
    
/* PERIM */
    
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR PERIM",16.,0.,0.);
    gsel_norm_tran(1);
    c_perim(5,2,6,3);
    c_frame();
    
/* PERIML */
    
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR PERIML",16.,0.,0.);
    gsel_norm_tran(1);
    c_periml(5,2,6,3);
    c_frame();
    
/* HALFAX */ 
    
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR HALFAX",16.,0.,0.);
    gsel_norm_tran(1);
    c_halfax(5,2,6,3,.3,.5,0,0);
    c_frame();
    
/* TICK4 and TICKS */
    
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR TICK4",16.,0.,0.);
    gsel_norm_tran(1);
    c_ticks(150,150);
    c_perim(5,2,6,3);
    c_frame();
    c_tick4(12,8,12,8);

/* LABMOD */
    
    gsel_norm_tran(0);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR LABMOD",16.,0.,0.);
    gsel_norm_tran(1);
    c_labmod("(E10.2)","(F4.2)",10,4,15,15,0,0,0);
    c_halfax(2,1,10,1,0.,0.,1,1);
    c_frame();
    
/* Use LABMOD to reduce the number of digits in the grid scales */
    
    c_labmod("(F4.2)","(F4.2)",4,4,0,0,0,0,0);
    
/* GRIDAL  -  A single grid on a c_frame.*/
    
    igph = 0;
    sprintf(buff,"%d",igph);
    gsel_norm_tran(0);
    c_plchlq(.5,.85,"IGPH = ",16.,0.,1.);
    c_plchlq(.5,.85,buff,16.,0.,-1.);
    c_plchlq(.5,.9,"DEMONSTRATION PLOT FOR GRIDAL",16.,0.,0.);
    gsel_norm_tran(1);
    c_gridal(5,2,6,3,1,1,igph,.3,.13);
    c_frame();
    
/* c_gridal  -  All 9 legal grids on a single c_frame. */
    
    gsel_norm_tran(0);
    c_plchlq(.5,.98,"TEST IGPH OPTIONS OF GRIDAL",16.,0.,0.);
    knt= 0;
    for(i=0;i<=10;i++){
        if( (i==3)||(i==7)) goto finis;
        igph = i;
        sprintf(buff,"%d",igph);
        knt +=1;
        
    /* Compute the X and Y grid boundaries for the 9 plots.*/
        
        y1 = .42;
        if(knt<4) y1 = .74;
        if(knt>6) y1 = .10;
        x1 = .10;
        if((knt==2)||(knt==5)||(knt==8)) x1 = .42;
        if((knt==3)||(knt==6)||(knt==9)) x1 = .74;
        x2 = x1 + .18;
        y2 = y1 + .18;
        
    /* Specify some user coordinates.*/
        
        h1 = x1*10.;
        h2 = x2*10.;
        v1 = y1*10.;
        v2 = y2*10.;
        
    /* Locate the IGPH legend above the grid.*/
        
        xg = x1 + .13;
        yg = y2 + .03;
        gsel_norm_tran(0);
        c_plchlq(xg,yg,"IGPH = ",16.,0.,1.);
        c_plchlq(xg,yg,buff,16.,0.,-1.);
        gsel_norm_tran(1);
        c_set(x1,x2,y1,y2,h1,h2,v1,v2,1);
        c_gridal(3,3,4,2,1,1,igph,h1,v1);
      finis:  printf(" ");
    }
    
/* 
 *  Advance the frame.
 */
    c_frame();
    printf(" GRIDAL TEST EXECUTED--SEE PLOTS TO CERTIFY \n ");
    *ier = 1;
    return(1);
}