This file is indexed.

/usr/share/ncarg/nclex/xyplot/xy14n.ncl 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
;
;      $Id: xy14n.ncl,v 1.11 2010-03-15 22:49:25 haley Exp $
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;                                                                      ;
;                Copyright (C)  1995                                   ;
;        University Corporation for Atmospheric Research               ;
;                All Rights Reserved                                   ;
;                                                                      ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
;;  File:       xy14n.ncl
;;
;;  Author:     Fred Clare
;;              National Center for Atmospheric Research
;;              PO 3000, Boulder, Colorado
;;
;;  Date:       Thu May 11 15:19:44 MDT 1995
;;
;; Description:  This example demonstrates the data manipulation
;;               capabilities of NCL in conjunction with XyPlot.
;;

;
; Begin NCL script.
;
begin

; 
; Define temperature/rainfall data for a 25-hour period in
; an NCL variable.  In a real-world NCL script these values
; would probably be read in, either directly or as part of
; a data file like a netCDF or HDF file.
;
; The temperature data is hourly data in degrees Celsius and
; the rainfall data is hourly data in millimeters.
;

tr_data = (/                                                     \
            (/                                                   \
               9.0,  8.3,  7.4,  6.2,  5.6,  3.4,  2.7,  1.2,    \
               3.7,  5.8,  5.9,  4.5,  7.4, 11.6, 10.4,  9.2,    \
               7.8, 10.2, 12.1, 11.4,  9.0,  8.9,  8.5,  7.4,    \
               6.6                                               \
            /),                                                  \
                                                                 \
            (/   0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, \ 
                 0.00, 0.00, 0.25, 0.63, 0.10, 0.00, 0.53, 3.75, \
                 3.10, 0.52, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, \
                 0.00                                            \
            /)                                                   \
          /)
     

;
; Default is to display output to an X workstation
;
wks_type = "x11"

if (str_lower(wks_type).eq."ncgm") then
;
; Create an ncgmWorkstation object.
;
  xworkid = create "simple" ncgmWorkstationClass defaultapp
      "wkMetaName" : "xy14n.ncgm"
  end create
end if
if (str_lower(wks_type).eq."x11") then
;
; Set up an X11 output workstation.
;
  xworkid = create "simple" windowWorkstationClass defaultapp
    "wkPause" : True
  end create
end if
if (str_lower(wks_type).eq."oldps") then
;
; Create an older-style PostScript workstation.
;
  xworkid = create "simple" psWorkstationClass defaultapp
    "wkPSFileName" : "xy14n.ps"
  end create
end if
if (str_lower(wks_type).eq."oldpdf") then
;
; Create an older-style PDF workstation.
;
  xworkid = create "simple" pdfWorkstationClass defaultapp
    "wkPDFFileName" : "xy14n.pdf"
  end create
end if
if (str_lower(wks_type).eq."pdf".or.str_lower(wks_type).eq."ps") then
;
; Create a cairo PS/PDF Workstation object.
;
  xworkid = create "simple" documentWorkstationClass defaultapp
    "wkFileName" : "xy14n"
    "wkFormat" : wks_type
  end create
end if
if (str_lower(wks_type).eq."png") then
;
; Create a cairo PNG Workstation object.
;
  xworkid = create "simple" imageWorkstationClass defaultapp
    "wkFileName" : "xy14n"
    "wkFormat" : wks_type
  end create
end if

;
; Create X-axis values using the NCL "fspan" statement.
;

nhours = 25
x_array = ispan(0,nhours-1,1)

;
; Picture 1:
;
; Convert the temperatures to degrees Fahrenheit and plot as an XyPlot
; object in the X11 window.  Note the usage of NCL algebraic operators
; and array selection capabilities.
;

tr_data(0,:) = 9./5.*tr_data(0,:)+32.
dataid = create "xyData" coordArraysClass defaultapp
    "caYArray": tr_data(0,:)
    "caXArray": x_array
end create

plotid = create "xyPlot" xyPlotClass xworkid
    "xyCoordData": dataid

; X-axis resources
    "tmXBMode": "MANUAL"
    "tmXBTickStartF": 0.
    "tmXBTickEndF": 24.
    "tmXBTickSpacingF": 4.
    "tmXBLabelFont": 22
    "tmXBLabelFontHeightF": 0.024

; Y-axis resources.  The title precision is changed to "2" so that integer
; values will be used (the temperatures are in a range requiring only
; two digits).
    "tmYLMode": "MANUAL"
    "tmYLTickStartF": 30.
    "tmYLTickEndF": 60.
    "tmYLTickSpacingF": 5.
    "tmYLAutoPrecision": False
    "tmYLPrecision": 2
    "tmYLLabelFont": 22
    "tmYLLabelFontHeightF": 0.024
    "tmYLMinorPerMajor": 4

;
; Specify the Y-axis range precisely.
    "trYMinF": 30.
    "trYMaxF": 60.

; Supply titles
    "tiMainFont": 26
    "tiMainFontHeightF": .03
    "tiMainString": "Hourly Temperatures"
    "tiXAxisFont": 22
    "tiXAxisString": "Hours Since Midnight"
    "tiYAxisFont": 22
    "tiYAxisString": "Temperature (degrees F)"
end create

draw(plotid)
frame(xworkid)

;
; Picture 2:
;
; Convert the rainfall data to inches and plot in the X11 window. 
; Note how easy it is to select the rainfall data from the original
; two-dimensional data array.
;

mm2inch = 1./25.4
dataid = create "xyData" coordArraysClass defaultapp
    "caYArray": mm2inch*tr_data(1,:)
    "caXArray": x_array
end create

plotid = create "xyPlot" xyPlotClass xworkid
    "xyCoordData": dataid

; X-axis resources
    "tmXBMode": "MANUAL"
    "tmXBTickStartF": 0.
    "tmXBTickEndF": 24.
    "tmXBTickSpacingF": 4.
    "tmXBLabelFont": 22
    "tmXBLabelFontHeightF": 0.024

; Y-axis resources.
    "tmYLMode": "MANUAL"
    "tmYLTickStartF": 0.
    "tmYLTickEndF": 0.15
    "tmYLTickSpacingF": 0.03
    "tmYLAutoPrecision": False
    "tmYLPrecision": 2
    "tmYLLabelFont": 22
    "tmYLLabelFontHeightF": 0.024
    "tmYLMinorPerMajor": 4

; Specify the Y-axis range precisely.
    "trYMinF": 0.
    "trYMaxF": 0.15

; Supply titles
    "tiMainFont": 26
    "tiMainFontHeightF": .03
    "tiMainString": "Hourly Rainfall"
    "tiXAxisFont": 22
    "tiXAxisString": "Hours Since Midnight"
    "tiYAxisFont": 22
    "tiYAxisString": "Rainfall in Inches"
end create

draw(plotid)
frame(xworkid)

;
; Picture 3:
;
; For each hourly temperature reading, plot the number of standard
; deviations from the mean the reading represents.  Note the use of the
; NCL exponentiation operator (^) and the sqrt function.
;

t_mean = avg(tr_data(0,:))
std_dev = sqrt(sum((tr_data(0,:) - t_mean)^2)/(nhours-1))

dataid = create "xyData" coordArraysClass defaultapp
    "caYArray": (tr_data(0,:) - t_mean)/std_dev
    "caXArray": x_array
end create

plotid = create "xyPlot" xyPlotClass xworkid

; X-axis resources
    "tmXBMode": "MANUAL"
    "tmXBTickStartF": 0.
    "tmXBTickEndF": 24.
    "tmXBTickSpacingF": 4.
    "tmXBLabelFont": 22
    "tmXBLabelFontHeightF": 0.024

; Y-axis resources.  
    "tmYLMode": "EXPLICIT"
    "tmYLValues": (/2.,1.,0.,-1.,-2./)
    "tmYLLabels": (/"2~F33~s","~F33~s","~F22~MEAN","-~F33~s","-2~F33~s"/)
    "tmYLTickSpacingF": 1.
    "tmYLLabelFont": 22
    "tmYLLabelFontHeightF": 0.024
    "tmYMajorGrid": True
    "tmYLMinorOn": False
    "tmYRMinorOn": False

;
; Specify the Y-axis range precisely.
    "trYMinF": -2.5
    "trYMaxF": 2.5

; Supply titles
    "tiMainFont": 26
    "tiMainFontHeightF": .03
    "tiMainString": "Temperature Deviations From Mean"
    "tiXAxisFont": 22
    "tiXAxisString": "Hours Since Midnight"
    "tiYAxisString": "Deviations"
    "tiYAxisFont": 22
end create

;
; Specify the use of filled circle markers.
;

dataspec = NhlAddData(plotid,"xyCoordData",dataid)
setvalues dataspec
      "xyMarkLineMode": "MARKERS"
      "xyMonoMarkLineMode": True
      "xyMarker": 16
      "xyMonoMarkerSize": True
      "xyMarkerSizeF": .02
end setvalues
 
draw(plotid)
frame(xworkid)

;
; Picture 4:
;
; Illustrate the use of being able to easily pick out subsections
; of data arrays.
;

dataid = create "xyData" coordArraysClass defaultapp
    "caYArray": tr_data(0,2:24:6)
    "caXArray": x_array(2:24:6)
end create

plotid = create "xyPlot" xyPlotClass xworkid
    "xyCoordData": dataid

; X-axis resources
    "tmXBMode": "MANUAL"
    "tmXBTickStartF": 2.
    "tmXBTickEndF": 22.
    "tmXBTickSpacingF": 6.
    "tmXBLabelFont": 22
    "tmXBLabelFontHeightF": 0.024
    "tmXBMinorPerMajor": 0

; Y-axis resources.
    "tmYLMode": "MANUAL"
    "tmYLTickStartF": 30.
    "tmYLTickEndF": 60.
    "tmYLTickSpacingF": 5.
    "tmYLAutoPrecision": "False"
    "tmYLPrecision": 2
    "tmYLLabelFont": 22
    "tmYLLabelFontHeightF": 0.024
    "tmYLMinorPerMajor": 4
;
; Specify the Y-axis range precisely.
    "trYMinF": 30.
    "trYMaxF": 60.

; Supply titles
    "tiMainFont": 26
    "tiMainString": "Temperatures at Six Hour Intervals"
    "tiMainFontHeightF": .03
    "tiXAxisFont": 22
    "tiXAxisString": "Hours Since Midnight"
    "tiYAxisFont": 22
    "tiYAxisString": "Temperature (degrees F)"
end create

draw(plotid)
frame(xworkid)

;
; End NCL script.
;
end