/usr/share/ncarg/nclex/ngmath/nm09n.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 | ;
; $Id: nm09n.ncl,v 1.7 2010-03-15 22:49:24 haley Exp $
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ;
; Copyright (C) 1998 ;
; University Corporation for Atmospheric Research ;
; All Rights Reserved ;
; ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; File: nm09n.ncl
;
; Author: Fred Clare
; National Center for Atmospheric Research
; PO 3000, Boulder, Colorado
;
; Date: Wed Jan 7 10:52:47 MST 1998
;
; Description: This program illustrates the use of ftcurvs and ftcurvps.
;
;
; Main program
;
begin
;
; Specify the input data.
;
xi = (/ 0.000, 0.210, 0.360, 0.540, 1.000, \
1.500, 1.970, 2.300, 2.500, 2.700 /)
yi = (/ 0.000, 2.600, 3.000, 2.500, 0.000, \
-1.000, 0.000, 0.800, 0.920, 0.700 /)
;
; Create the output X coordinate array.
;
npts = 201
xr = 5.
xl = -1.
period = 3.
xo = fspan(xl,xr,npts)
;
; Interpolate
;
d = 0.3
yos = ftcurvs(xi, yi, d, xo)
;
; Same as above, except for a periodic function.
;
yosp = ftcurvps(xi, yi, period, d, xo)
;
; Create a color map.
;
cmap = (/ (/1.0,1.0,1.0/), \
(/0.0,0.0,0.0/), \
(/1.0,0.0,0.0/), \
(/0.0,1.0,0.0/), \
(/0.0,0.0,1.0/), \
(/1.0,1.0,0.0/) /)
;
; Default is to display output to an X workstation
;
wks_type = "ncgm"
if (str_lower(wks_type).eq."ncgm") then
;
; Create an ncgmWorkstation object.
;
xworkid = create "nm09Work" ncgmWorkstationClass defaultapp
"wkMetaName" : "nm09n.ncgm"
"wkColorMap" : cmap
end create
end if
if (str_lower(wks_type).eq."x11") then
;
; Create an X11 workstation.
;
xworkid = create "nm09Work" windowWorkstationClass defaultapp
"wkPause" : "True"
"wkColorMap" : cmap
end create
end if
if (str_lower(wks_type).eq."oldps") then
;
; Create an older-style PostScript workstation.
;
xworkid = create "nm09Work" psWorkstationClass defaultapp
"wkPSFileName" : "nm09n.ps"
"wkColorMap" : cmap
end create
end if
if (str_lower(wks_type).eq."oldpdf") then
;
; Create an older-style PDF workstation.
;
xworkid = create "nm09Work" pdfWorkstationClass defaultapp
"wkPDFFileName" : "nm09n.pdf"
"wkColorMap" : cmap
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 "nm09Work" documentWorkstationClass defaultapp
"wkFileName" : "nm09n"
"wkFormat" : wks_type
"wkColorMap" : cmap
end create
end if
if (str_lower(wks_type).eq."png") then
;
; Create a cairo PNG Workstation object.
;
xworkid = create "nm09Work" imageWorkstationClass defaultapp
"wkFileName" : "nm09n"
"wkFormat" : wks_type
"wkColorMap" : cmap
end create
end if
;
;
; Draw two graphs:
; 1.) The function values for the non-periodic curve.
; 2.) The function values for the periodic curve.
;
;
; Define a data object with the original points. The id for this
; object will later be used as the value for an XYPlot data resource,
; 'xyCoordData'.
;
dataid_original_points = create "xyData" coordArraysClass defaultapp
"caXArray": xi
"caYArray": yi
end create
;
; Define a data object with the interpolated points.
;
dataid_interpolated_points = create "xyData" coordArraysClass defaultapp
"caXArray": xo
"caYArray": yos
end create
;
; Define a data object with the functional values for the periodic function.
;
dataid_periodic = create "xyDatai" coordArraysClass defaultapp
"caXArray": xo
"caYArray": yosp
end create
;
; Specify a point of origin for the graphs.
;
ypos_top = 0.95
;
; Create an immediate mode polyline for marking the Y = 0. line
; in each graph.
;
zero_line_id = create "ZeroLine" graphicStyleClass xworkid
"gsLineColor": 2
end create
xx = (/xl,xr/)
yy = (/0.0,0.0/)
;
; Create a label for the graph of function values of the non-periodic
; function.
;
label1 = create "FunctionLabel" textItemClass xworkid
"txPosXF": 0.42
"txPosYF": ypos_top - 0.05
"txFont": 21
"txJust" : "centerleft"
"txString": "ftcurvs"
"txFontHeightF": 0.035
end create
;
; Create an XyPlot object for drawing a curve with the interpolated
; points for the non-periodic function.
;
plotid_interpolated_points = create "xyPlot" xyPlotClass xworkid
"vpXF": .13
"vpYF": ypos_top
"vpWidthF" : .8
"vpHeightF" : .35
"trYMaxF" : 4.
"trYMinF" : -2.
"trXMaxF" : xr
"trXMinF" : xl
"xyCoordData": dataid_interpolated_points
"tmXTBorderOn": "False"
"tmYRBorderOn": "False"
"tmXBMinorPerMajor": 4
"tmYLMinorPerMajor": 0
"tmBorderThicknessF": 1.
"tmXMajorGridThicknessF": 1.
"tmXBMajorLengthF": 0.015
"tmYLMajorLengthF": 0.015
"tmXBMinorLengthF": 0.0075
"tmXBMajorThicknessF": 1.0
"tmYLMajorThicknessF": 1.0
"tmXTOn": "False"
"tmYROn": "False"
"tmXBLabelFont": 21
"tmXBLabelFontHeightF": 0.025
"tmYLLabelFont": 21
"tmYLLabelFontHeightF": 0.025
"tmYLMode": "Manual"
"tmYLTickStartF": -2.
"tmYLTickSpacingF": 2.0
"tmYLTickEndF": 4.
"tmXBMode": "Manual"
"tmXBTickStartF": -1.
"tmXBTickSpacingF": 1.0
"tmXBTickEndF": 5.
end create
;
; Add original points.
;
orig_points = NhlAddData(plotid_interpolated_points,"xyCoordData", \
dataid_original_points)
getvalues plotid_interpolated_points
"xyCoordDataSpec": dataspec
end getvalues
setvalues dataspec(1)
"xyMarkLineMode": "markers"
"xyMarkerColor": 4
"xyMarkerSizeF": 0.025
end setvalues
;
; Create a label for the graph of the periodic function.
;
label3 = create "IntegralLabel" textItemClass xworkid
"txPosXF": 0.42
"txPosYF": ypos_top - 0.55
"txFont": 21
"txJust" : "centerleft"
"txString": "ftcurvps"
"txFontHeightF": 0.035
end create
;
; Draw the curve for the non-periodic function and mark the original points.
;
draw(plotid_interpolated_points)
draw(label1)
NhlDataPolyline(plotid_interpolated_points, zero_line_id, xx, yy)
;
; Create an XyPlot object for drawing a curve with the interpolated
; values of the periodic function.
;
setvalues plotid_interpolated_points
"vpYF": ypos_top - 0.5
"trYMaxF" : 4.0
"trYMinF" : -2.0
"xyCoordData": dataid_periodic
"tmYLTickStartF": -2.
"tmYLTickSpacingF": 2.0
"tmYLTickEndF": 4.
end setvalues
;
; Draw a graph of the periodic function, label the graph,
; and draw a line indicating Y=0.
;
draw(plotid_interpolated_points)
draw(label3)
NhlDataPolyline(plotid_interpolated_points, zero_line_id, xx, yy)
frame(xworkid)
;
; End NCL script.
;
end
|