<div dir="ltr"><div>Perhaps, you could copy and modify:<br></div><div><br></div><div><b>%> cp</b> $NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl   <b>Lara.WRFUserARW.ncl <br></b></div><div><b></b><br></div><div>Then:</div><div> load "./<b><a href="http://Lara.WRFUserARW.nc">Lara.WRFUserARW.nc</a>" </b></div><div><div><b>++++++++++++++++++++++++++++++++++++++++<br></b></div><div><b><br></b></div><div>Some other information.</div><div><br></div><div><div>I think WRF people wrote many of the functions contained within <b>WRFUserARW.ncl</b>. I think they are more knowledgeable than ncl-talk. A link to the WRF user forum is appended.</div><div><br></div>=========================================================<br><div><div>%> less $NCARG_ROOT/lib/ncarg/nclscripts/wrf/<b>WRFUserARW.ncl</b></div><div><br></div><div>I think the 'mini' titles you want are 'Valid' and then two variable names.</div><div>Search for:  Valid</div><div><br></div><div>=================================================</div><div>undef("set_title_resources")<br>function set_title_resources (data[*][*]:numeric, res:logical)</div><div>[SNIP]<br></div><div>=================================================<br></div><div>undef("_SetMainTitle")<br>procedure _SetMainTitle(nc_file:file,wks[1]:graphic,cn[1]:graphic,opts)<br> <br>; This procedure checks the input data for certain attributes, and<br>; based on those, sets MainTitle, InitTime and ValidTime<br>;<br>;  Attributes recognized by this procedure:<br>;     MainTitle                 (main title - top left)<br>;                               (with Init time top right)<br>;     TimeLabel                 (valid time  - right  under init time)<br>;     NoHeaderFooter            (switch all headers and footers off - mainly for panels)<br>;<br>; If the "NoHeaderFooter" attribute exists and is set True, then<br>; don't create any titles.</div><div>[SNIP]</div><div>   <b>txt2</b> = <a href="https://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclStatements.shtml#Create" target="_blank"><b>create</b></a> "ValidTime" textItemClass wks<br>      "txString"      : ValidTime<br>      "txFontHeightF" : font_height                      ; <=========<br>    end create<br>    anno = NhlAddAnnotation(cn,<b>txt2</b>)<br>    setvalues anno<br>      "amZone"           : 3<br>      "amSide"           : "Top"<br>      "amJust"           : opts@TimePos<br>      "amParallelPosF"   : opts@TimePosF        <br>      "amOrthogonalPosF" : MTOPosF           <br>      "amResizeNotify"   : False<br>    end setvalues<br>  end if<br></div><div><div>----</div><div><b>set_title_resources</b></div><div>----</div><div>WRF questions: <br></div><div><br></div><div>Please submit all questions to the WRF online user support forum:<br><a href="http://forum.mmm.ucar.edu" target="_blank">http://forum.mmm.ucar.edu</a><br><br>You will need to create a user ID and password to post, but this<br>should only take a minute.<br></div></div></div></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 11, 2019 at 11:48 AM Adam Phillips via ncl-talk <<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi Lara,<div>I found this NCL website page that discusses WRF plotting function titles:</div><div><a href="http://www.ncl.ucar.edu/Applications/wrftitles.shtml" target="_blank">http://www.ncl.ucar.edu/Applications/wrftitles.shtml</a><br></div><div><br></div><div>Unfortunately it states that all font sizes are set via the FontHeightF resource. Testing things here I see the same problem you are seeing, in that the descriptive / units title (FIeldTitle) font size does not change when FontHeightF is changed. However, I was able to get the font size changed by (strangely) setting the tiMainFontHeightF resource. Give that a try and let ncl-talk know if that does not work for you.</div><div>Adam</div><div>res@tiMainFontHeightF = 0.005<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Sep 10, 2019 at 2:38 AM Lara Quitián Hernández <<a href="mailto:laraquitianhernandez@gmail.com" target="_blank">laraquitianhernandez@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Good morning, <div><br></div><div>Firstly, thank you very much for your quick response. I have tried setting the FontHeightF resource in the opts and it effectively changes the font size of the title and InitTime values, but the variables (upper left area) do not change and unfortunately, I'm more interested in increasing that font size. If you find a way to do it, please, share it with me. </div><div><br></div><div>Thanks in advance.</div><div><br></div><div>Kind regards, </div><div>Lara</div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">El lun., 9 sept. 2019 a las 18:56, Adam Phillips (<<a href="mailto:asphilli@ucar.edu" target="_blank">asphilli@ucar.edu</a>>) escribió:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi Lara,<div>Looking at the wrf_contour code located here:</div><div>$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl<br></div><div><br></div><div>and attempting to trace where the font heights for the subtitles get set, it looks like there is an undocumented resource that wrf_contour accepts:</div><div>FontHeightF     </div><div>(See line 3908 in the above file for NCL v6.6.2)</div><div><br></div><div>Try setting that in your opts resource list and see if that changes the font size for the two subtitles. (I verified it changes it for the upper right subtitle.)</div><div>Adam</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Sep 9, 2019 at 7:04 AM Lara Quitián Hernández via ncl-talk <<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Good afternoon, <div><br></div><div>I would like to increase the font size of the variables and the InitTime label. </div><div>I enclose a figure indicating both things and the script. </div><div><br></div><div>Thanks in advance. </div><div><br></div><div><div>Kind regards, </div><div>Lara<br clear="all"><div></div></div></div><div><div><img src="cid:ii_k0cf1kur0" alt="850hPa_ETH19_contourverde_616_2014-10-19_12:00:00.png" width="542" height="542"><br></div></div><div><div><br></div>-- <br><div dir="ltr" class="gmail-m_3711748222054773850gmail-m_-1030599663444968543gmail-m_-5395323077809816731gmail-m_-8944196811018074109gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><b><font color="#000000"><span style="font-size:12.8px"><img src="https://docs.google.com/uc?export=download&id=1Be9ubClb-zBZJf-p7rPZWNbOYAHkQHA9&revid=0B5glieJcogGoMktpOGV4YVV2OHFKRHBOUUhtcmFWUk41V2s4PQ" width="84" height="96"><br></span></font></b></div><div><b><font color="#000000"><span style="font-size:12.8px">Lara Quitián Hernández, </span></font><span style="color:rgb(0,0,0);font-size:12.8px">PhD Student</span></b><br></div><div><div><font color="#000000"><div><span style="font-size:12.8px">Department of Earth Physics and Astrophysics</span></div><div><span style="font-size:12.8px">Faculty of Physical Sciences</span></div><span style="font-size:13px">Ciudad Universitaria, Plaza Ciencias, 1</span></font></div><div><font color="#000000"><span style="font-size:12.8px">28040 Madrid. Spain</span><br style="font-size:12.8px"><span style="font-size:12.8px">Email: </span><a href="mailto:mlunar@aemet.es" style="font-size:12.8px" target="_blank">lquitian@ucm.es</a></font></div></div><div><br></div></div></div></div></div></div></div></div></div></div></div>
_______________________________________________<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/mailman/listinfo/ncl-talk</a></blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail-m_3711748222054773850gmail-m_-1030599663444968543gmail-m_-5395323077809816731gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>   </font></span><span><font color="#888888">303-497-1726 </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail-m_3711748222054773850gmail-m_-1030599663444968543gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><b><font color="#000000"><span style="font-size:12.8px"><img src="https://docs.google.com/uc?export=download&id=1Be9ubClb-zBZJf-p7rPZWNbOYAHkQHA9&revid=0B5glieJcogGoMktpOGV4YVV2OHFKRHBOUUhtcmFWUk41V2s4PQ" width="84" height="96"><br></span></font></b></div><div><b><font color="#000000"><span style="font-size:12.8px">Lara Quitián Hernández, </span></font><span style="color:rgb(0,0,0);font-size:12.8px">PhD Student</span></b><br></div><div><div><font color="#000000"><div><span style="font-size:12.8px">Department of Earth Physics and Astrophysics</span></div><div><span style="font-size:12.8px">Faculty of Physical Sciences</span></div><span style="font-size:13px">Ciudad Universitaria, Plaza Ciencias, 1</span></font></div><div><font color="#000000"><span style="font-size:12.8px">28040 Madrid. Spain</span><br style="font-size:12.8px"><span style="font-size:12.8px">Email: </span><a href="mailto:mlunar@aemet.es" style="font-size:12.8px" target="_blank">lquitian@ucm.es</a></font></div></div><div><br></div></div></div></div></div></div></div></div></div>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail-m_3711748222054773850gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div><div><span><font color="#888888">Adam Phillips <br></font></span></div><span><font color="#888888">Associate Scientist,  </font></span><span><font color="#888888">Climate and Global Dynamics Laboratory, NCAR<br></font></span></div></div><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli/" target="_blank">www.cgd.ucar.edu/staff/asphilli/</a>   </font></span><span><font color="#888888">303-497-1726 </font></span></div><span><font color="#888888"></font></span><div><div><span><font color="#888888"><br></font></span><div><span><font color="#888888"><a href="http://www.cgd.ucar.edu/staff/asphilli" target="_blank"></a></font></span></div></div></div></div></div></div></div></div></div></div></div>
_______________________________________________<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/mailman/listinfo/ncl-talk</a></blockquote></div>