<div dir="ltr"><div class="gmail_default" style="font-size:small">Muhammad,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Sorry for the slow response. I&#39;m currently at a conference.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you want to change WRFUserARW.ncl to look for &quot;TH&quot; instead of &quot;T&quot;, then I suggest the following steps. WRFUserARW.ncl is an NCL script that you can edit to make whatever changes you want, but you should always do this from your own directory, and not from where WRFUserARW.ncl resides in  $NCARG_ROOT/lib/ncarg/nclscripts/wrf/.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Here are the steps I recommend:</div><div class="gmail_default" style="font-size:small"><br></div>[1] Copy $NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl to your own <div class="gmail_default" style="font-size:small;display:inline">​directory</div>, and call it (for example), &quot;wrf_user_getvar_mod.ncl&quot;<div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">[2] Edit wrf_user_getvar_mod.ncl and remove all functions and procedures except for the &quot;wrf_user_getvar&quot; function. You can find the beginning of this function by searching for this line:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">undef(&quot;wrf_user_getvar&quot;)</font></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Remove everything before the undef line (and leave the undef line there).  Remove everything after this line:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">end</font></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">The &quot;end&quot; statement will be on a line by itself, and likely with NO spaces before it.  You can also find the &quot;end&quot; statement by looking for the next &quot;undef&quot; statement. The &quot;end&quot; statement will be shortly before the &quot;undef&quot; statement.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">[3] I highly recommend renaming the &quot;wrf_user_getvar&quot; function to something slightly different, like &quot;wrf_user_getvar_mod&quot;. You should change all references to &quot;wrf_user_getvar&quot; to &quot;wrf_user_getvar_mod&quot; just to be consistent. </div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Step #3 is optional, but highly recommended, so that you can keep the original &quot;wrf_user_getvar&quot; intact.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">[4] Search for &quot;tc&quot; in the &quot;wrf_user_getvar_mod&quot; function. You should see an &quot;if&quot; statement that looks like this:</div><div class="gmail_default" style="font-size:small">







<p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1">  </span><span class="gmail-s2">if</span><span class="gmail-s1">( </span><span class="gmail-s3">any</span><span class="gmail-s1">( variable </span><span class="gmail-s2">.eq.</span><span class="gmail-s1"> </span><span class="gmail-s2">(/</span><span class="gmail-s4">&quot;tk&quot;</span><span class="gmail-s1">,</span><span class="gmail-s4">&quot;tc&quot;</span><span class="gmail-s2">/)</span><span class="gmail-s1"> ) ) </span><span class="gmail-s2">then</span></font></p><p class="gmail-p1"><span class="gmail-s2">Shortly after this &quot;if&quot; statement, you should see the reference to &quot;T&quot;. It will look like this:</span></p><p class="gmail-p1"><span class="gmail-s2">







</span></p><p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1"><span class="gmail-Apple-converted-space">         </span>T<span class="gmail-Apple-converted-space">  </span>= _get_wrf_var(file_handle,</span><span class="gmail-s2">&quot;T&quot;</span><span class="gmail-s1">,time)</span></font></p><p class="gmail-p1"><span class="gmail-s2">or four statements like this:</span></p><p class="gmail-p1"><span class="gmail-s2">







</span></p><p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= nc_file</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">T</span></font></p></div><div class="gmail_default" style="font-size:small">







<p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= file_handle[:]</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">T</span></font></p><p class="gmail-p1"><span class="gmail-s1"><font face="monospace, monospace">







</font></span></p><p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= nc_file</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">T(time_in,:,:,:)</span></font></p><p class="gmail-p1"><span class="gmail-s1"><font face="monospace, monospace">







</font></span></p><p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= file_handle[:]</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">T(time_in,:,:,:)</span></font></p></div><div class="gmail_default" style="font-size:small">You need to change the &quot;T&quot; on the *right* side of the &quot;=&quot; to &quot;TH&quot;. For example:</div><div class="gmail_default" style="font-size:small"><p class="gmail-p1"><font face="monospace, monospace"><span class="gmail-s1"><span class="gmail-Apple-converted-space">         </span>T<span class="gmail-Apple-converted-space">  </span>= _get_wrf_var(file_handle,</span><span class="gmail-s2">&quot;TH&quot;</span><span class="gmail-s1">,time)</span></font></p><div><span class="gmail-s1">or:</span></div><div><span class="gmail-s1"><font face="monospace, monospace"><div class="gmail_default"><p class="gmail-p1"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= nc_file</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">TH</span></p></div><div class="gmail_default"><p class="gmail-p1"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= file_handle[:]</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">TH</span></p><p class="gmail-p1"><span class="gmail-s1"></span></p><p class="gmail-p1"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= nc_file</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">TH(time_in,:,:,:)</span></p><p class="gmail-p1"><span class="gmail-s1"></span></p><p class="gmail-p1"><span class="gmail-s1"><span class="gmail-Apple-converted-space">             </span>T<span class="gmail-Apple-converted-space">  </span>= file_handle[:]</span><span class="gmail-s2">-&gt;</span><span class="gmail-s1">TH(time_in,:,:,:)</span></p></div></font></span></div></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">[5] Save this file, and then open up your own script in an editor. Load this new script right *after* you load WRFUserARW.ncl:</div><div class="gmail_default" style="font-size:small">







<p class="gmail-p1"><span class="gmail-s1"><font face="monospace, monospace">load &quot;$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl&quot;<br>load &quot;./wrf_user_getvar_mod.ncl&quot;</font></span></p></div><div class="gmail_default" style="font-size:small">[6] If you renamed this modified function, then you will need to edit your &quot;wrf_user_getvar&quot; call to use whatever new name you chose.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">[7] Run your script to see if it now works.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">By the way I&#39;ve updated &quot;wrf_user_getvar&quot; for the next release of NCL to print out a more meaningful error message if you don&#39;t have the required variables on the file.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 10, 2017 at 11:56 AM, Dennis Shea <span dir="ltr">&lt;<a href="mailto:shea@ucar.edu" target="_blank">shea@ucar.edu</a>&gt;</span> wrote:<br><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"><div><div><div><div><div>If the variable is on the file(s) and it is named &#39;TH&#39; , there is no need to use &#39;wrf_user_getvar&#39;<br><br></div>  dirw = &quot;./&quot;<br></div>  filw  = system(&quot;cd &quot;+dirw+&quot; ; ls wrfout_d0*&quot;)<br></div>  pthw = dirw*filw<br></div><div>  print(pthw)<br><br></div>  fwrf   = addfiles(pthw, &quot;r&quot;)<br></div>  t        = fwrf[:]-&gt;TH<br><div><div><div>  printVarSummary(t)<br></div></div></div></div><div class="gmail-m_1696848990132039012HOEnZb"><div class="gmail-m_1696848990132039012h5"><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Jul 9, 2017 at 8:10 PM, Muhammad Omer Mughal <span dir="ltr">&lt;<a href="mailto:m.mughal1@postgrad.curtin.edu.au" target="_blank">m.mughal1@postgrad.curtin.edu<wbr>.au</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">



<div>

<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325divtagdefaultwrapper" style="font-size:12pt;color:rgb(0,0,0);font-family:Calibri,Helvetica,sans-serif" dir="ltr">
<p>Hi Mary </p>
<p><br>
</p>
<p>Thanks for the reply and comments.</p>
<p><br>
</p>
<p>I found out that the WRF variable T has been renamed to TH in my WRF configuration and the wrfout_d0* now contain TH instead of T.  Is there a way to change T to TH in</p>
<p><span style="font-family:Calibri,Helvetica,sans-serif,serif,EmojiFont;font-size:16px">$NCARG_ROOT/lib/ncarg/nclscrip<wbr>ts/wrf/WRFUserARW.ncl</span><br>
</p>
<p><span style="font-family:Calibri,Helvetica,sans-serif,serif,EmojiFont;font-size:16px"><br>
</span></p>
<p><span style="font-family:Calibri,Helvetica,sans-serif,serif,EmojiFont;font-size:16px">or do I have to recompile and rerun WRF ?</span></p><span>
<p><br>
</p>
<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325Signature">
<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325divtagdefaultwrapper" style="font-size:12pt;color:rgb(0,0,0);background-color:rgb(255,255,255);font-family:Calibri,Arial,Helvetica,sans-serif,EmojiFont,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;,NotoColorEmoji,&quot;Segoe UI Symbol&quot;,&quot;Android Emoji&quot;,EmojiSymbols">
<div style="font-family:Tahoma;font-size:13px">
<div style="font-family:Tahoma;font-size:13px"><b><br>
</b></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:11pt">Muhammad Omer Mughal</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:11pt">MSc BSc Mechanical Engineering</span></font><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:8pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">PhD  Research Scholar</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Remote Sensing and Satellite Research Group</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Department of Imaging and Applied Physics</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt"><br>
Curtin University</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:11pt"><br>
</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt">Curtin University</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Tel |</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt">+61
 8 9266 7962</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="1" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:7pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Fax |</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt">+61
 8 9266 2377</span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Mobile |</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt">0470 237 525</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt">  </span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Email |</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><a href="mailto:m.lynch@curtin.edu.au" id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325LPNoLP" target="_blank"><font size="2" face="Arial,sans-serif"><span style="font-size:9pt">m.mughal1@postgrad.curtin.ed<wbr>u.au</span></font></a><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Web |</span></font><font size="2" face="Calibri,sans-serif" color="#AB8303"><span style="font-size:9pt"> </span></font><a href="http://curtin.edu.au/" id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325LPNoLP" target="_blank"><font size="2" face="Calibri,sans-serif"><span style="font-size:11pt"><font size="2" face="Arial,sans-serif"><span style="font-size:9pt">http://curtin.edu.au</span></font></span></font></a><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="1" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:7pt"><br>
</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="1" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:6pt"></span></font><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt">Curtin University is a trademark of Curtin University of Technology. </span></font><br>
</div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt">CRICOS Provider Code 00301J (WA), 02637B (NSW)</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt"><br>
</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt"><br>
</span></font></span></font></div>
</div>
</div>
</div>
</span></div><span>
<hr style="display:inline-block;width:98%">
<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325divRplyFwdMsg" dir="ltr"><font style="font-size:11pt" face="Calibri, sans-serif" color="#000000"><b>From:</b> Mary Haley &lt;<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>&gt;<br>
<b>Sent:</b> Friday, 7 July 2017 12:03:59 AM<br>
<b>To:</b> Muhammad Omer Mughal<br>
<b>Cc:</b> <a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a><br>
<b>Subject:</b> Re: [ncl-talk] tc not getting recognized in version 6.3.0</font>
<div> </div>
</div>
</span><div><div class="gmail-m_1696848990132039012m_-6152751661515601673h5"><div>
<div dir="ltr">Hi Muhammad,<br>
<br>
Important things to note about wrf_user_getvar:<br>
<br>
 - You can only use this function on WRF-ARW data.<br>
<br>
 - You must call this function with the file pointer from opening the WRF output file:<br>
<font face="monospace, monospace"><br>
  f =
<div class="gmail_default" style="font-size:small;display:inline">​​</div>
addfile(&quot;wrfout_d01_2008-09-29<wbr>_20:30:<a href="http://00.nc" target="_blank">00.nc</a>&quot;,&quot;r&quot;)<br>
 
<div class="gmail_default" style="font-size:small;display:inline">​ ​</div>
tc = wrf_user_getvar(f,&quot;tc&quot;,-1)</font><br>
<br>
If you continue to have problems, please provide the relevant code where you call wrf_user_getvar
<div class="gmail_default" style="font-size:small;display:inline">​ along with ​</div>
the exact error message, so we can debug this.
<div class="gmail_default" style="font-size:small;display:inline">​​</div>
<div><br>
</div>
<div>
<div class="gmail_default" style="font-size:small">​Thanks,</div>
<div class="gmail_default" style="font-size:small"><br>
</div>
<div class="gmail_default" style="font-size:small">--Mary</div>
<div class="gmail_default" style="font-size:small">​</div>
<br>
</div>
</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">On Wed, Jul 5, 2017 at 8:02 PM, Muhammad Omer Mughal <span dir="ltr">
&lt;<a href="mailto:m.mughal1@postgrad.curtin.edu.au" target="_blank">m.mughal1@postgrad.curtin.edu<wbr>.au</a>&gt;</span> wrote:<br>
<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">
<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325m_6831019647689068276divtagdefaultwrapper" style="font-size:12pt;color:rgb(0,0,0);font-family:Calibri,Helvetica,sans-serif" dir="ltr">
<p>Hi all</p>
<p><br>
</p>
<p>I am using wrf_user_getvar  function I am using temperature variable tc but its not getting recognized for some reason. Can any one suggest a solution</p>
<p><br>
</p>
<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325m_6831019647689068276Signature">
<div id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325m_6831019647689068276divtagdefaultwrapper" style="font-size:12pt;color:rgb(0,0,0);background-color:rgb(255,255,255);font-family:Calibri,Arial,Helvetica,sans-serif,EmojiFont,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;,NotoColorEmoji,&quot;Segoe UI Symbol&quot;,&quot;Android Emoji&quot;,EmojiSymbols">
<div style="font-family:Tahoma;font-size:13px">
<div style="font-family:Tahoma;font-size:13px"><b><br>
</b></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:11pt">Muhammad Omer Mughal</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:11pt">MSc BSc Mechanical Engineering</span></font><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:8pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">PhD  Research Scholar</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Remote Sensing and Satellite Research Group</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Department of Imaging and Applied Physics</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt"><br>
Curtin University</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:11pt"><br>
</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt">Curtin University</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Tel |</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt">+61
 8 9266 7962</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="1" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:7pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Fax |</span></font><font size="2" face="Arial Bold" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt">+61
 8 9266 2377</span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Mobile |</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt">0470 237 525</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt">  </span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Email |</span></font><font size="2" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><a href="mailto:m.lynch@curtin.edu.au" id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325m_6831019647689068276LPNoLP" target="_blank"><font size="2" face="Arial,sans-serif"><span style="font-size:9pt">m.mughal1@postgrad.curtin.ed<wbr>u.au</span></font></a><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"> </span></font><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="2" face="Arial Bold" color="#AB8303"><span style="font-size:9pt">Web |</span></font><font size="2" face="Calibri,sans-serif" color="#AB8303"><span style="font-size:9pt"> </span></font><a href="http://curtin.edu.au/" id="gmail-m_1696848990132039012m_-6152751661515601673m_6033087083476110325m_6831019647689068276LPNoLP" target="_blank"><font size="2" face="Calibri,sans-serif"><span style="font-size:11pt"><font size="2" face="Arial,sans-serif"><span style="font-size:9pt">http://curtin.edu.au</span></font></span></font></a><font size="2" face="Arial,sans-serif" color="#1F497D"><span style="font-size:9pt"><br>
</span></font><font size="1" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:7pt"><br>
</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="1" face="Calibri,sans-serif" color="#1F497D"><span style="font-size:6pt"></span></font><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt">Curtin University is a trademark of Curtin University of Technology. </span></font><br>
</div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt">CRICOS Provider Code 00301J (WA), 02637B (NSW)</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt"><br>
</span></font></span></font></div>
<div style="color:rgb(33,33,33);font-family:wf_segoe-ui_normal,&quot;Segoe UI&quot;,&quot;Segoe WP&quot;,Tahoma,Arial,sans-serif;font-size:15.4545px;margin:0px;background-color:rgb(255,255,255)">
<font size="3" face="Times New Roman,serif"><span style="font-size:12pt"><font size="1" face="Arial,sans-serif" color="#1F497D"><span style="font-size:6pt"><br>
</span></font></span></font></div>
</div>
</div>
</div>
</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>
</div>
</div></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>
</div></div></blockquote></div><br></div></div>