<div dir="ltr">I did not see the following post which, I believe was via the digest ncl-talk<br><br><h3 class="gmail-iw"><span name="Peter Nunekpeku via ncl-talk" class="gmail-gD">Peter Nunekpeku via ncl-talk</span> </h3><div class="gmail-gK"><span></span><span id="gmail-:34v" class="gmail-g3" title="Thu, Jan 18, 2018 at 10:28 AM" alt="Thu, Jan 18, 2018 at 10:28 AM">Jan 18 (3 days ago)</span></div><table class="gmail-cf gmail-adz" cellpadding="0"><tbody><tr><td class="gmail-ady"><div class="gmail-iw gmail-ajw"><span class="gmail-hb">to <span dir="ltr" name="ncl-talk" class="gmail-g2">ncl-talk</span> </span></div><div class="gmail-ajy" tabindex="0"><img class="gmail-ajz" id="gmail-:34l" src="https://mail.google.com/mail/u/1/images/cleardot.gif" alt=""></div></td></tr></tbody></table>Dear Michael,<div dir="auto"><br></div><div dir="auto">Kindly check the chapter on postprocessing tools in the UserGuide of RegCM.</div><div dir="auto"><br></div><div dir="auto">Sample code from manual is below:</div><div dir="auto"><br></div><div dir="auto">nccopy -k 4 -d 9 -s <a href="http://test_001_SRF.1990060100.nc" target="_blank">test_001_SRF.1990060100.nc</a>  <span style="font-family:sans-serif"><a href="http://test_001_SRF.1990060100_compressed.nc" target="_blank">te<wbr>st_001_SRF.1990060100_<wbr>compressed.nc</a></span></div><div dir="auto"><span style="font-family:sans-serif"><br></span></div><div dir="auto"><span style="font-family:sans-serif"><br></span></div><div dir="auto"><span style="font-family:sans-serif">Hope this is helpful.</span></div><div dir="auto"><span style="font-family:sans-serif"><br></span></div><div dir="auto"><span style="font-family:sans-serif">Regards,</span></div><div dir="auto"><span style="font-family:sans-serif"><br></span></div><span style="font-family:sans-serif">Peter</span></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jan 21, 2018 at 3:49 PM, Dennis Shea <span dir="ltr"><<a href="mailto:shea@ucar.edu" target="_blank">shea@ucar.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>NCL does have:<br>  <a href="http://www.ncl.ucar.edu/Document/Functions/Contributed/pack_values.shtml" target="_blank">http://www.ncl.ucar.edu/<wbr>Document/Functions/<wbr>Contributed/pack_values.shtml</a><br><br>===<br>However, I believe the netCDF Operator (ncpdq) would be the appropriate tool choice.<br><br>  <a href="http://nco.sourceforge.net/nco.html#xmp_ncpdq" target="_blank">http://nco.sourceforge.net/<wbr>nco.html#xmp_ncpdq</a><br><br> ---- <br>I have not tried this but something like:<br></div><div><pre>   dirs = "???/"       ; source directory<br>   diro = "???/"       ; separate output directory<br>                       ; destination for packed files<br></pre><pre>   fils = <a href="http://www.ncl.ucar.edu/Document/Functions/Built-in/systemfunc.shtml" target="_blank"><strong>systemfunc</strong></a> ("cd "+dirs+"; ls *.nc")<br>   nfils= dimsizes(fils)<br>   do nf=0,nfils-1<br>      pths  = dirs+fils(nf)<br>      ptho  = diro+fils(nf)          ; same file name<br>     ;ptho  = diro+"new."+fils(nf)   ; different file name<br><br>      NCPDQ = "ncpdq -P all_new -M flt_sht "+pths+" "+pth<br>     ;print(""+NCPDQ)<br>      system(NCPDQ)<br><br>    ;;system("/bin/rm "+pths)        ; dangerous  :-)<br>   end do                            ; nf loop<br></pre></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 18, 2018 at 8:09 AM, Guido Cioni via ncl-talk <span dir="ltr"><<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Michael,<div>first of all I would strongly suggest you to do that outside of NCL.</div><div>If you try to read a 10 TB inside NCL and define some variables you will likely end up with a segmentation fault or extremely slow execution.</div><div>You likely want to use fast-processing techniques that make use of C++/Fortran architectures, like CDO or NCO. </div><div><br></div><div>Regarding your task, however, it is hard to give you a suggestion. If the original file was created like that it means that all variables have the correct type/units/attributes (I guess). Thus, I don't know what you can achieve by changing type, if not a strong headache in trying to read and write again the file :) </div><div><br></div><div>Any chance you have the original GRIB file? You can try to convert it to GRIB, which will save you at most 50% of the space, but it is tricky....</div><div><br></div><div>Anyway it would be nice to know what you want to achieve in the end. Do you need to process the data? Do a plot? You can still extract a single level, variable or even time step beforehand (CDO or NCO), and that will surely reduce the size and the time that you need to read it inside NCL. </div><div><br></div><div>Cheers </div><div><br><div><blockquote type="cite"><div>On 18. Jan 2018, at 16:02, Michael Notaro via ncl-talk <<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a>> wrote:</div><br class="m_2068185612711773774m_274866659639640773Apple-interchange-newline"><div><div id="m_2068185612711773774m_274866659639640773divtagdefaultwrapper" dir="ltr" style="font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;font-size:12pt;font-family:Calibri,Helvetica,sans-serif"><div style="margin-top:0px;margin-bottom:0px">I have about 10 TB of regional climate model output SRF files</div><div style="margin-top:0px;margin-bottom:0px">that I need to reduce in size probably to 1 TB.  For example,</div><div style="margin-top:0px;margin-bottom:0px">one monthly file, as dumped below, <span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures"><a href="http://IPSL_SRF.1998010100.nc" target="_blank">IPSL_SRF.1998010100.nc</a>,<wbr> </span></div><div style="margin-top:0px;margin-bottom:0px"><span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures">is 2.3 GB.  Any recommendations in NCL on how</span></div><div style="margin-top:0px;margin-bottom:0px"><span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures">to effectively accomplish this task? (e.g. command</span></div><div style="margin-top:0px;margin-bottom:0px"><span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures">to convert the contents to short, or way to </span></div><div style="margin-top:0px;margin-bottom:0px"><span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures">compress the content, etc) </span></div><div style="margin-top:0px;margin-bottom:0px"><span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures">Thanks, Michael</span></div><div style="margin-top:0px;margin-bottom:0px"><span style="font-family:Menlo;font-size:16px;font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin-top:0px;margin-bottom:0px"><br></div><p style="margin-top:0px;margin-bottom:0px"></p><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">[notaro@petenwell ~/processing]# ls -l -h *nc</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">-rw-r--r-- 1 notaro notaro 2.3G Jan 18 08:35 <a href="http://IPSL_SRF.1998010100.nc" target="_blank">IPSL_SRF.1998010100.nc</a></span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">[notaro@petenwell ~/processing]# ncdump -h <a href="http://IPSL_SRF.1998010100.nc" target="_blank">IPSL_SRF.1998010100.nc</a></span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">netcdf IPSL_SRF.1998010100 {</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">dimensions:</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>jx = 217 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>iy = 141 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>kz = 28 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>time = UNLIMITED ; // (744 currently)</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>m10 = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>m2 = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>soil_layer = 2 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>time_bounds = 2 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">variables:</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float jx(jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>jx:long_name = "x-coordinate in Cartesian system" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>jx:standard_name = "projection_x_coordinate" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>jx:units = "m" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>jx:axis = "X" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>jx:_CoordinateAxisType = "GeoX" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float iy(iy) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>iy:long_name = "y-coordinate in Cartesian system" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>iy:standard_name = "projection_y_coordinate" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>iy:units = "m" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>iy:axis = "Y" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>iy:_CoordinateAxisType = "GeoY" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float sigma(kz) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:long_name = "Sigma at half model layers" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:standard_name = "atmosphere_sigma_coordinate" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:units = "1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:axis = "Z" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:positive = "down" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:formula_terms = "sigma: sigma ps: ps ptop: ptop" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sigma:_CoordinateAxisType = "GeoZ" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float ptop ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ptop:long_name = "Pressure at model top" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ptop:standard_name = "air_pressure" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ptop:units = "hPa" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float xlon(iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlon:long_name = "Longitude on Cross Points" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlon:standard_name = "longitude" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlon:units = "degrees_east" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlon:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float xlat(iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlat:long_name = "Latitude on Cross Points" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlat:standard_name = "latitude" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlat:units = "degrees_north" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>xlat:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float mask(iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mask:long_name = "Land Mask" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mask:standard_name = "land_binary_mask" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mask:units = "1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mask:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mask:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float topo(iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>topo:long_name = "Surface Model Elevation" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>topo:standard_name = "surface_altitude" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>topo:units = "m" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>topo:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>topo:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float ps(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ps:long_name = "Surface Pressure" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ps:standard_name = "surface_air_pressure" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ps:units = "hPa" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ps:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ps:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ps:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float drag(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>drag:long_name = "Surface drag stress coefficient in air" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>drag:standard_name = "surface_drag_coefficient_in_a<wbr>ir" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>drag:units = "1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>drag:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>drag:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>drag:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float ts(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ts:long_name = "Ground surface temperature" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ts:standard_name = "surface_temperature" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ts:units = "K" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ts:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ts:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>ts:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float tf(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:long_name = "Foliage canopy temperature" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:standard_name = "canopy_temperature" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:units = "K" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tf:_FillValue = 1.e+20f ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float pr(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>pr:long_name = "Total precipitation flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>pr:standard_name = "precipitation_flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>pr:units = "kg m-2 s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>pr:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>pr:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>pr:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float evspsbl(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>evspsbl:long_name = "Total evapotranspiration flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>evspsbl:standard_name = "water_evaporation_flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>evspsbl:units = "kg m-2 s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>evspsbl:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>evspsbl:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>evspsbl:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float snv(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:long_name = "Liquid water equivalent of snow thickness" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:standard_name = "lwe_thickness_of_surface_snow<wbr>_amount" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:units = "kg m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snv:_FillValue = 1.e+20f ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float hfss(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>hfss:long_name = "Sensible heat flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>hfss:standard_name = "surface_upward_sensible_heat_<wbr>flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>hfss:units = "W m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>hfss:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>hfss:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>hfss:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float rsnl(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsnl:long_name = "Net upward longwave energy flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsnl:standard_name = "net_upward_longwave_flux_in_a<wbr>ir" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsnl:units = "W m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsnl:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsnl:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsnl:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float rsns(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsns:long_name = "Net downward shortwave energy flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsns:standard_name = "net_downward_shortwave_flux_i<wbr>n_air" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsns:units = "W m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsns:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsns:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsns:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float rsdl(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsdl:long_name = "Surface downward longwave flux in air" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsdl:standard_name = "surface_downwelling_longwave_<wbr>flux_in_air" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsdl:units = "W m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsdl:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsdl:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsdl:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float rsds(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsds:long_name = "Surface downward shortwave flux in air" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsds:standard_name = "surface_downwelling_shortwave<wbr>_flux_in_air" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsds:units = "W m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsds:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsds:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rsds:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float prc(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>prc:long_name = "Convective precipitation flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>prc:standard_name = "convective_rainfall_flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>prc:units = "kg m-2 s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>prc:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>prc:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>prc:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float zmla(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>zmla:long_name = "Atmospheric Boundary Layer thickness" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>zmla:standard_name = "atmosphere_boundary_layer_thi<wbr>ckness" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>zmla:units = "m" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>zmla:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>zmla:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>zmla:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float aldirs(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldirs:long_name = "Surface albedo to direct shortwave radiation" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldirs:standard_name = "surface_albedo_short_wave_dir<wbr>ect" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldirs:units = "1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldirs:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldirs:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldirs:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float aldifs(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldifs:long_name = "Surface albedo to diffuse shortwave radiation" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldifs:standard_name = "surface_albedo_short_wave_dif<wbr>fuse" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldifs:units = "1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldifs:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldifs:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>aldifs:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float sund(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sund:long_name = "Duration of sunshine" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sund:standard_name = "duration_of_sunshine" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sund:units = "s" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sund:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sund:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sund:cell_methods = "time: sum" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float sndp(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:long_name = "Actual snow depth" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:standard_name = "snow_depth" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:units = "mm" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>sndp:_FillValue = 1.e+20f ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float snfl(time, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snfl:long_name = "Snowfall" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snfl:standard_name = "snow_fall" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snfl:units = "kg m-2 s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snfl:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snfl:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>snfl:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float uas(time, m10, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>uas:long_name = "Anemometric zonal (westerly) wind component" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>uas:standard_name = "eastward_wind" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>uas:units = "m s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>uas:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>uas:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>uas:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float vas(time, m10, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>vas:long_name = "Anenometric meridional (southerly) wind component" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>vas:standard_name = "northward_wind" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>vas:units = "m s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>vas:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>vas:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>vas:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float tas(time, m2, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tas:long_name = "Near surface air temperature" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tas:standard_name = "air_temperature" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tas:units = "K" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tas:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tas:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>tas:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float qas(time, m2, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>qas:long_name = "Near surface air specific humidity" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>qas:standard_name = "specific_humidity" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>qas:units = "1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>qas:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>qas:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>qas:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float mrso(time, soil_layer, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:long_name = "Moisture content of the soil layers" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:standard_name = "soil_moisture_content_in_laye<wbr>rs" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:units = "kg m-2" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:cell_methods = "time: point" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrso:_FillValue = 1.e+20f ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float mrro(time, soil_layer, iy, jx) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:long_name = "Runoff flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:standard_name = "runoff_flux" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:units = "kg m-2 s-1" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:coordinates = "xlat xlon" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:grid_mapping = "rcm_map" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:cell_methods = "time: mean" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>mrro:_FillValue = 1.e+20f ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float time(time) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time:long_name = "time" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time:standard_name = "time" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time:units = "hours since 1949-12-01 00:00:00 UTC" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time:calendar = "noleap" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time:bounds = "time_bnds" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>float time_bnds(time, time_bounds) ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time_bnds:units = "hours since 1949-12-01 00:00:00 UTC" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>time_bnds:calendar = "noleap" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span>char rcm_map ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rcm_map:grid_mapping_name = "lambert_conformal_conic" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rcm_map:standard_parallel = 36., 52. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rcm_map:longitude_of_central_m<wbr>eridian = -97. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rcm_map:latitude_of_projection<wbr>_origin = 45. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rcm_map:_CoordinateTransformTy<wbr>pe = "Projection" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>rcm_map:_CoordinateAxisTypes = "GeoX GeoY" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255);min-height:19px"><span style="font-variant-ligatures:no-common-ligatures"></span><br></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">// global attributes:</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:title = "ICTP Regional Climatic model V4" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:institution = "ICTP" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:source = "RegCM Model output file" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:Conventions = "CF-1.4" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:references = "<a href="http://gforge.ictp.it/gf/project/regcm" target="_blank">http://gforge.ictp.it/gf/proj<wbr>ect/regcm</a>" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:model_revision = "tag 4.3.5.6" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:history = "2015-01-25 04:40:03 : Created by RegCM RegCM Model program" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:experiment = "IPSL" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:projection = "LAMCON" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grid_size_in_meters = 25000. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:latitude_of_projection_origin = 45. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:longitude_of_projection_origi<wbr>n = -97. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:standard_parallel = 36., 52. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grid_factor = 0.696943758331507 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:boundary_nspgx = 15 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:boundary_nspgd = 15 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:boundary_high_nudge = 3. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:boundary_medium_nudge = 2. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:boundary_low_nudge = 1. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:model_is_restarted = "Yes" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:model_simulation_initial_star<wbr>t = "1977-06-01 00:00:00 UTC" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:model_simulation_start = "1998-01-01 00:00:00 UTC" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:model_simulation_end = "1999-01-01 00:00:00 UTC" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:atmosphere_time_step_in_secon<wbr>ds = 120. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:surface_interaction_time_step<wbr>_in_seconds = 120. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:radiation_scheme_time_step_in<wbr>_minuts = 30. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:absorption_emission_time_step<wbr>_in_hours = 18. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:lateral_boundary_condition_sc<wbr>heme = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:boundary_layer_scheme = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:cumulus_convection_scheme = 2 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_scheme_closure = 2 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:moisture_scheme = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:ocean_flux_scheme = 2 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:zeng_ocean_roughness_formula = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:pressure_gradient_scheme = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:surface_emissivity_factor_com<wbr>puted = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:lake_model_activated = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:chemical_aerosol_scheme_activ<wbr>ated = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:ipcc_scenario_code = "RF" ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:diurnal_cycle_sst_scheme = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:simple_sea_ice_scheme = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:seasonal_desert_albedo = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:convective_lwp_as_large_scale = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:rrtm_radiation_scheme_activat<wbr>ed = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:climatic_ozone_input_dataset = 0 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:static_solar_constant_used = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_bottom_level_with_no_cl<wbr>ouds = 1 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_maximum_cloud_fraction_<wbr>cover = 0.8 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_auto_conversion_rate_fo<wbr>r_land = 0.00025 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_auto_conversion_rate_fo<wbr>r_ocean = 0.00025 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_gultepe_factor_when_rai<wbr>n_for_land = 0.4 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_gultepe_factor_when_rai<wbr>n_for_ocean = 0.4 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_rh_with_fcc_one = 1.01 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_rh_threshold_for_land = 0.8 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_rh_threshold_for_ocean = 0.9 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_limit_temperature = 238. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_raindrop_evaporation_ra<wbr>te = 0.0008 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_raindrop_accretion_rate = 3. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_cloud_fraction_maximum = 0.75 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_cloud_fraction_max_for_<wbr>convection = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:subex_cloud_liqwat_max_for_co<wbr>nvection = 5.e-05 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_shear_on_precip = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_shear_on_precip = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_precip_efficiency = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_precip_efficiency = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_precip_efficiency_o = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_precip_efficiency_o = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_precip_efficiency_x = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_precip_efficiency_x = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_shear_on_precip_on_<wbr>ocean = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_shear_on_precip_on_<wbr>ocean = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_precip_efficiency_o<wbr>n_ocean = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_precip_efficiency_o<wbr>n_ocean = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_precip_efficiency_o<wbr>_on_ocean = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_precip_efficiency_o<wbr>_on_ocean = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_precip_efficiency_x<wbr>_on_ocean = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_precip_efficiency_x<wbr>_on_ocean = 0.5 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_depth_of_stable_lay<wbr>er = 150. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_depth_of_cloud = 150. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_min_convective_heating = -250. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_convective_heating = 500. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_max_cloud_base_height = 0.4 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:grell_FC_ABE_removal_timescal<wbr>e = 30. ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:holtslag_critical_ocean_richa<wbr>rdson = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures"><span style="white-space:pre-wrap"></span><span style="white-space:pre-wrap"></span>:holtslag_critical_land_richar<wbr>dson = 0.25 ;</span></div><div style="margin:0px;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:normal;font-family:Menlo;background-color:rgb(255,255,255)"><span style="font-variant-ligatures:no-common-ligatures">}</span></div><br><p style="margin-top:0px;margin-bottom:0px"></p><div style="margin-top:0px;margin-bottom:0px"><br></div><div id="m_2068185612711773774m_274866659639640773Signature"><div id="m_2068185612711773774m_274866659639640773divtagdefaultwrapper" style="font-size:12pt;background-color:rgb(255,255,255);font-family:Calibri,Arial,Helvetica,sans-serif,Helvetica,EmojiFont,'Apple Color Emoji','Segoe UI Emoji',NotoColorEmoji,'Segoe UI Symbol','Android Emoji',EmojiSymbols">Michael Notaro<br><div>Associate Director<br></div><div>Nelson Institute Center for Climatic Research<br></div><div>University of Wisconsin-Madison<br></div><div>Phone: <a href="tel:(608)%20261-1503" value="+16082611503" target="_blank">(608) 261-1503</a><br></div><div>Email:<span class="m_2068185612711773774m_274866659639640773Apple-converted-space"> </span><a href="mailto:mnotaro@wisc.edu" target="_blank">mnotaro@wisc.edu</a><br></div></div></div></div><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">______________________________<wbr>_________________</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">ncl-talk mailing list</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="mailto:ncl-talk@ucar.edu" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">ncl-talk@ucar.edu</a><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;float:none;display:inline!important">List instructions, subscriber options, unsubscribe:</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a></div></blockquote></div><br><div>
<div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><br class="m_2068185612711773774m_274866659639640773Apple-interchange-newline">Guido Cioni</div><div style="color:rgb(0,0,0);font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><a href="http://guidocioni.altervista" target="_blank">http://guidocioni.altervista</a>.o<wbr>rg</div>

</div>
<br></div></div><br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/mailma<wbr>n/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>
</blockquote></div><br></div>