<div dir="ltr"><div>Barry, in NCL, 1-D coordinate variables are attached to the data variable, not the plot resource.  Also, the coordinate variable name must be an exact match with the associated dimension name.</div><div><br></div><div>    <a href="https://www.ncl.ucar.edu/Document/Language/cv.shtml">https://www.ncl.ucar.edu/Document/Language/cv.shtml</a><br></div><div><br></div><div>There is more than one way to do this.  I prefer to fix up the coordinate variables independently, before attaching them to the data variable.  I also suggest attaching early, before subsetting, in case you want to extract other subsets later.  You could just as easily attach directly to "radar".  Try this, untested:</div><div><br></div><div>    lats@units = "degrees_north"</div><div>    lons@units = "degrees_east"</div><div>    lats!0 = "Lat"          ; assign dim names to avoid warning</div><div>    lons!0 = "Lon"</div><div>    xf&Lat = lats          ; attach to data var<br>    xf&Lon = lons<br>    radar = xf(5,:,:)      ; attached coords will be copied</div><div><br></div><div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Sep 23, 2022 at 8:17 AM Barry Lynn <<a href="mailto:barry.h.lynn@gmail.com">barry.h.lynn@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div dir="ltr">Hi:<div><br></div><div>That was very helpful, thank you.  I can now read the data and create lat/lon coordinates.</div><div><br></div><div>I am still left with one error, though, which is quite vexing.<i>  I need to give the radar variable coordinate </i>information so I can map it.  The typical warning is shown in the last set of yellowed  lines,</div><div><br></div><div>The code reads as immediately below, and the error when I try to run it by adding coordinate variable information is specified in the last of the second set of yellowed lines, bolded).</div><div><br></div><div>CODE!</div><div>





<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>filename_b="20120415-080000.netcdf"</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>b = addfile(filename_b,"r")</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(224,228,9)"><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(254,244,139)"><span>   </span></span><span style="font-variant-ligatures:no-common-ligatures">print(b</span><span style="font-variant-ligatures:no-common-ligatures;background-color:rgb(254,244,139)">)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>xs = b->mrefl_mosaic</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>xs@_FillValue = toshort(b@MissingData)<span>    </span>; MissingData is not standard</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>xf = short2flt( xs )</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>delete(xs)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>printVarSummary(xf)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>printMinMax(xf,False)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>radar = xf(5,:,:)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>printVarSummary(radar)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>lat_center = 40</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>lon_center = -110</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>lats = lat_center + todouble(ispan(-1000, 1000, 1)/100)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>lons = lon_center + todouble(ispan(-1000, 1000, 1)/100)</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span> <b> </b></span><b>res<span>              </span>= True</b></span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><b><span>  </span>res&lats@units = "degrees_north"   ;  GIVES "compilation" ERROR (Specified BELOW)</b></span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><b><span>  </span>res&lons@units = "degrees_east"</b></span></p></div><div><br></div><div><font size="4">Here's the compilation error (bolded below).</font></div><div><br></div><div>





<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Variable: radar</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Type: float</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Total Size: 16016004 bytes</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>            </span>4004001 values</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Number of Dimensions: 2</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Dimensions and sizes:<span style="white-space:pre-wrap">    </span>[Lat | 2001] x [Lon | 2001]</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Coordinates:<span> </span></span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Number Of Attributes: 3</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>  </span>_FillValue :<span style="white-space:pre-wrap"> </span>-999</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>  </span>_FillValue_original :<span style="white-space:pre-wrap">        </span>-999</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>  </span>Units :<span style="white-space:pre-wrap">      </span>dBZ</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><b>fatal:(lats) is not a named dimension in variable (res).</b></span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><b>fatal:["Execute.c":8575]:Execute: Error occurred at or near line 44 in file ./obs_radar.ncl</b></span></p></div><div><br></div><div><font size="4">Without this coordinate information, I get:</font></div><div><br></div><div>





<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><br></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><b>fatal:(lats) is not a named dimension in variable (res).</b></span></p></div></div><div>





<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">(0)<span style="white-space:pre-wrap">      </span>check_for_y_lat_coord: Warning: Data either does not contain a valid latitude coordinate array or doesn't contain one at all.</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">(0)<span style="white-space:pre-wrap">      </span>A valid latitude coordinate array should have a 'units' attribute equal to one of the following values:<span> </span></span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">(0)<span style="white-space:pre-wrap">      </span><span>    </span>'degrees_north' 'degrees-north' 'degree_north' 'degrees north' 'degrees_N' 'Degrees_north' 'degree_N' 'degreeN' 'degreesN' 'deg north'</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">(0)<span style="white-space:pre-wrap">      </span>check_for_lon_coord: Warning: Data either does not contain a valid longitude coordinate array or doesn't contain one at all.</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">(0)<span style="white-space:pre-wrap">      </span>A valid longitude coordinate array should have a 'units' attribute equal to one of the following values:<span> </span></span></p></div><div><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Sep 23, 2022 at 12:01 AM Dave Allured - NOAA Affiliate <<a href="mailto:dave.allured@noaa.gov" target="_blank">dave.allured@noaa.gov</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Oops.  The center grid point is at (1001, 1001), not (1000, 1000).  But those offset formulas are correct as shown.</div><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Sep 22, 2022 at 1:53 PM Dave Allured - NOAA Affiliate <<a href="mailto:dave.allured@noaa.gov" target="_blank">dave.allured@noaa.gov</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Barry, this file lacks the coordinate variables that are normally provided in most published Netcdf data sets.  However, there appears to be almost enough information in the global attributes to construct grid coordinates.  There are reference latitude and longitude, and the X and Y grid spacing.</div><div><br></div><div>The reference coordinates are ambiguous.  My guess is they are probably grid center coordinates, but not sure.  With odd numbers for both X and Y dimensions, that suggests that the center grid point (1000, 1000) is right at (40N, 110W).</div><div><br></div><div>So just calculate X and Y coordinate vectors centered on the reference coordinates, attach them to the data variable, then plot normally.  To minimize precision loss, use <b>ispan</b> and divide by 100 as the final step, because 0.01 step size is not exactly representable in floating point.  (Not very important.)  E.g.:</div><div><br></div><div><div>      lats  = lat_center  + (double (ispan (-1000, 1000, 1)) / 100)</div><div>      lons = lon_center + (double (ispan (-1000, 1000, 1)) / 100)</div></div><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Sep 22, 2022 at 11:28 AM Barry Lynn via ncl-talk <<a href="mailto:ncl-talk@mailman.ucar.edu" target="_blank">ncl-talk@mailman.ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hello:<div><br></div><div>I am wondering if there is a simple way to plot this radar data correctly on a grid.</div><div><br></div><div>I can extract the radar data, no problem, but am wondering how to specify the lat/lon of the data.  Can it be obtained from the radar data itself?</div><div><br></div><div>Thank you.</div><div><br></div><div>





<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Variable: b</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">Type: file</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">filename:<span style="white-space:pre-wrap">        </span>20120415-080000</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures">path:<span style="white-space:pre-wrap">    </span>20120415-080000.netcdf</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>file global attributes:</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>TypeName : mrefl_mosaic</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>DataType : LatLonHeightGrid</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Time : 1334476800</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>FractionalTime :<span>  </span>0</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>MissingData : -999</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>RangeFolded : -1000</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Latitude : 40</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Longitude : -110</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Height : 500</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>LatGridSpacing : 0.01</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>LonGridSpacing : 0.01</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>attributes :<span> </span></span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>dimensions:</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Ht = 31</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Lat = 2001</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>Lon = 2001</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>   </span>variables:</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>short mrefl_mosaic ( Ht, Lat, Lon )</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>         </span>Units :<span style="white-space:pre-wrap">   </span>dBZ</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>         </span>Scale :<span style="white-space:pre-wrap">   </span>10</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139);min-height:22px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>      </span>float Height ( Ht )</span></p>
<p style="margin:0px;font-variant-numeric:normal;font-variant-east-asian:normal;font-stretch:normal;font-size:19px;line-height:normal;font-family:Menlo;background-color:rgb(254,244,139)"><span style="font-variant-ligatures:no-common-ligatures"><span>         </span>Units :<span style="white-space:pre-wrap">   </span>Meters</span></p>-- <div dir="ltr"><div dir="ltr"><div><div dir="ltr">Barry H. Lynn, Ph.D<div><div>Senior <font color="#000000">Scientist, Lecturer,</font></div><div><div><font color="#000000">The Institute of Earth Sciences, <br>The Hebrew University of Jerusalem, <br>Givat Ram, Jerusalem 91904, Israel <br></font></div><font color="#000000">Tel: 972 547 231 170<br>Fax: (972)-25662581</font></div></div><div><span style="color:rgb(136,136,136)"><br></span></div><div>Weather It Is, LTD<br>Weather and Climate Focus<br><a href="http://weather-it-is.com" target="_blank">https://weather-it-is.com</a><br>Jerusalem, Israel<br>Local: 02 930 9525<br>Cell: 054 7 231 170<br>Int-IS: x972 2 930 9525</div></div></div></div></div></div></div></blockquote></div></div></blockquote></div></div></blockquote></div></div>
</blockquote></div></div></div>