<div dir="ltr"><div dir="ltr">thanks Jonathan<div><br></div><div>uv should  have 4 dimensions according to the explanation on  <a href="https://www.ncl.ucar.edu/Document/Functions/Contributed/wind_component.shtml">https://www.ncl.ucar.edu/Document/Functions/Contributed/wind_component.shtml</a>.</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 9, 2022 at 4:52 PM Buzan, Jonathan <<a href="mailto:jbuzan@purdue.edu">jbuzan@purdue.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">



<div style="overflow-wrap: break-word;">
Hi Ali Mughal,
<div><br>
</div>
<div>Try </div>
<div>> printVarSummary(uv)</div>
<div>The warning is saying that your subscripts do not match your variable.</div>
<div><br>
</div>
<div>Cheers,</div>
<div>-Jonathan</div>
<div><br>
</div>
<div><br>
<div><br>
<blockquote type="cite">
<div>On Feb 9, 2022, at 09:23, ali mughal via ncl-talk <<a href="mailto:ncl-talk@mailman.ucar.edu" target="_blank">ncl-talk@mailman.ucar.edu</a>> wrote:</div>
<br>
<div>
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">
<div dir="ltr">Dear NCL Team
<div><br>
</div>
<div>In the NCL example script,  <span style="white-space:pre-wrap">skewt_10.ncl. The following loop is not working. I am also copying the error below.</span></div>
<div><span style="white-space:pre-wrap"><br>
</span></div>
<div><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap">;---Calculate coordinates of hodograph grid circles</span></div>
<pre style="white-space:pre-wrap"> circle_rad   = ispan(20,240,20)                     ; hodograph grid circle radii
 n_circle_rad = dimsizes(circle_rad)
 circle_deg   = ispan(0,360,2)                       ; points 360 deg around hodograph circle
 n_deg        = dimsizes(circle_deg)
 cir_x_pts    = new((/n_circle_rad,n_deg/),"float")  ; x coordinates for hodograph circles
 cir_y_pts    = new((/n_circle_rad,n_deg/),"float")  ; y coordinates for hodograph circles

 do cc=0,n_deg-1                                         ; loop through all degrees in circle
  do dd=0,n_circle_rad-1                                 ; loop through all radii
   uv = wind_component(circle_rad(dd),circle_deg(cc),0)  ; calculate x,y coordinates using wind_component fx
   cir_x_pts(dd,cc) = uv(0,0)                            ; x coordinates are in index 0
   cir_y_pts(dd,cc) = uv(1,0)                            ; y coordinates are in index 1
  end do
 end do</pre>
<pre style="white-space:pre-wrap"><br></pre>
<pre><font><span style="white-space:pre-wrap">warning:New: Could not coerce missing value parameter into appropriate type, using default
fatal:Number of subscripts (1) and number of dimensions (2) do not match for variable (uv)
fatal:["Execute.c":8578]:Execute: Error occurred at or near line 1279 in file /opt/ncl/lib/ncarg/nclscripts/csm/contributed.ncl<br></span></font></pre>
<pre><font><span style="white-space:pre-wrap"><br></span></font></pre>
<pre>I would be grateful if I can get a reply to this question.</pre>
</div>
</div>
</div>
</div>
_______________________________________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@mailman.ucar.edu" target="_blank">ncl-talk@mailman.ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="https://mailman.ucar.edu/mailman/listinfo/ncl-talk" target="_blank">https://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></div>
</blockquote>
</div>
<br>
</div>
</div>

</blockquote></div>