<div dir="ltr">NCL-Talk,<br><br>I'm running some code that works with version 6.3.0 of NCL but not with the 6.4.0 version. The issue happens in one or two functions: tofloat (or stringtofloat) and decimalPlaces. I looked online and there is no mention of these functions being removed or changed for the newer version of NCL. I'm wondering if there is a bug in the 6.4.0 version of NCL. Any assistance would be appreciated.<br><br>Below is some text showing what happens and a snippet of the code. If needed I'll send more information but I'm hoping that this will be enough.<br><br>The 'cost,grad,step ...' line is obtained from a file that is generated by a model.<br>Here is the code that gets that line and then tries to get information from the 5th and 6th column of that line.<br><br>filename2 =<br>/scratch4/BMC/qosap/ptmp/Andrew.Kren/par/prCTL_2_noAMV/gsistat.gdas.2016082200<br><br>error occurs at first 'if statement'<br><br><b><u>*CODE*:</u></b><br>; Default background color of Main Table (not Header) is white.<br>; If num assimilated (ratio) doesn't increase (decrease) then the color is changed so<br>; that the user can quickly see the issue.<br>default_table_fillcolor = "white"<br>flag_table_fillcolor = "palegreen"<br>delim1 = " "<br>delim2 = "_"<br><br>; system calls to linux to get necessary data<br>cost_grad = systemfunc("grep cost, " + filename2)<br>print(cost_grad)<br>print("Reading Cost and Gradient...")<br><br>cost_value_1 =<br>tostring(decimalPlaces(tofloat(str_get_field(cost_grad(0),5,delim1)),4,True))<br>cost_value_2 =<br>tostring(decimalPlaces(tofloat(str_get_field(cost_grad(201),5,delim1)),4,True))<br><br>grad_value_1 =<br>tostring(decimalPlaces(tofloat(str_get_field(cost_grad(0),6,delim1)),4,True))<br>grad_value_2 =<br>tostring(decimalPlaces(tofloat(str_get_field(cost_grad(201),6,delim1)),4,True))<br><br>print(str_get_field(cost_grad(0),5,delim1))<br>print(str_get_field(cost_grad(201),5,delim1))<br>print(stringtofloat(str_get_field(cost_grad(0),5,delim1)))<br>print(stringtofloat(str_get_field(cost_grad(201),5,delim1)))<br>print(decimalPlaces(tofloat(str_get_field(cost_grad(0),5,delim1)),4,True))<br>print(decimalPlaces(tofloat(str_get_field(cost_grad(201),5,delim1)),4,True))<br>print(cost_value_1)<br>print(cost_value_2)<br><br>dayfile_name = str_get_field(inFile1,7,"/")<br>if (tofloat(cost_value_1) .lt. tofloat(cost_value_2)) then<br>  cost_value_flag = flag_table_fillcolor<br><br>  write_table(textfile,"a",[/"X","  ","  ","  ","  ","  ","  ","  "/], \<br>             "%12s%10s%12s%10s%10s%10s%10s%10s")<br>end if<br>if (tofloat(grad_value_1) .lt. tofloat(grad_value_2)) then<br>  grad_value_flag = flag_table_fillcolor<br>end if<br><br><u><b>*OUTPUT with 6.4.0*:</b></u><div><p class="gmail-p1" style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;line-height:normal">(0) cost,grad,step,b,step? =   1   0  1.498929611143528717E+06  2.048988964546030616E+02  1.211877385244983785E+00  0.000000000000000000E+00  good<br>......<br>(201) cost,grad,step,b,step? =   2 150  1.131911262744225329E+06<br>5.6766037650629<b><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:normal;background-color:rgb(255,255,255)">47227E-02  1.791057212970216916E+00  9.879673418565034781E-01</span><br></b></p>good<br>(0) Reading Cost and Gradient...<br>warning:toint: there are 1 float(s) larger than INT_MAX, which have been flagged missing.<br>warning:toint: there are 1 float(s) larger than INT_MAX, which have been flagged missing.<br>(0) 1.498929611143528717E+06<br>(0) 1.131911262744225329E+06<br>(0) 1498930<br>(0) 1131911<br>warning:toint: there are 1 float(s) larger than INT_MAX, which have been flagged missing.<br><br>Variable: unnamed (return)<br>Type: float<br>Total Size: 4 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>Number Of Attributes: 1<br>  _FillValue : -2.147484e+09<br>(0) -2.147484e+09<br><br>warning:toint: there are 1 float(s) larger than INT_MAX, which have been flagged missing.<br><br>Variable: unnamed (return)<br>Type: float<br>Total Size: 4 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>Number Of Attributes: 1<br>  _FillValue : -2.147484e+09<br>(0) -2.147484e+09<br><br>Variable: cost_value_1<br>Type: string<br>Total Size: 8 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>Number Of Attributes: 1<br>  _FillValue : -2147483648.000000<br>(0) -2147483648.000000<br><br>Variable: cost_value_2<br>Type: string<br>Total Size: 8 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>Number Of Attributes: 1<br>  _FillValue : -2147483648.000000<br>(0) -2147483648.000000<br><br>fatal:The result of the conditional expression yields a missing value. NCL can not determine branch, see ismissing function<br><br>fatal:["Execute.c":8640]:Execute: Error occurred at or near line 92 in file<br>/scratch4/BMC/qosap/noscrub/VERIF_PKG/anl_monitor/gsi_stats/scripts/create_minimization_data.ncl<br><br><u><b>*OUTPUT with 6.3.0*:</b></u><br><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">(0) cost,grad,step,b,step? =   1   0  1.498929611143528717E+06  2.048988964546030616E+02  1.211877385244983785E+00  0.000000000000000000E+00  good</span><br style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial"><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:initial;float:none;display:inline">......</span><br></div><div>(201) cost,grad,step,b,step? =   2 150  1.131911262744225329E+06<br>5.676603765062947227E-02  1.791057212970216916E+00  9.879673418565034781E-01<br>  good<br>(0) Reading Cost and Gradient...<br>(0) 1.498929611143528717E+06<br>(0) 1.131911262744225329E+06<br>(0) 1498930<br>(0) 1131911<br><br>Variable: unnamed (return)<br>Type: float<br>Total Size: 4 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>(0) 1498930<br><br>Variable: unnamed (return)<br>Type: float<br>Total Size: 4 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>(0) 1131911<br><br>Variable: cost_value_1<br>Type: string<br>Total Size: 8 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>(0) 1498929.625000<br><br>Variable: cost_value_2<br>Type: string<br>Total Size: 8 bytes<br>            1 values<br>Number of Dimensions: 1<br>Dimensions and sizes: [1]<br>Coordinates:<br>(0) 1131911.250000<br><br><br>Thank you,<br>Tanya<br><br><br>--<br>Tanya R. Peevey, PhD<br>Research Scientist I, Global Observing Systems Analysis (GOSA) Group<br>NOAA ESRL Global Systems Division<br>325 Broadway, Boulder, CO 80305<br>(303) 497-5847<br><div>
</div></div></div>