<div dir="ltr"><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Hello Mary, thanks for the script it helped a lot. it works now.<br><br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Regards,<br></div><div class="gmail_default" style="font-family:verdana,sans-serif;font-size:small">Kwesi <br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 4, 2017 at 5:46 PM, Mary Haley <span dir="ltr">&lt;<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>&gt;</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 class="gmail_default" style="font-size:small">Kwesi,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">In your code you have these lines:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><span class=""><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">  ;i = -1                                        ; Climatologies</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">  ;do nmo=0,180                                 ; loop over the months</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">     ;i = i+1</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">     ;res@gsnCenterString   = months(nmo)+&quot;:&quot;+time(0)/100 +&quot;-&quot;+ time(ntim-1)/100</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">     ;plot(i) = gsn_csm_contour_map_ce(wks,<wbr>prClm(nmo,:,:), res)  ; create plot</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">  ;end do</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">plot = gsn_csm_contour_map_ce(wks,<wbr>prClm(0,:,:), res)  ; create plot</font></div><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">  gsn_panel(wks,plot,(/3,1/),<wbr>resP)</font></div><div class="gmail_default" style="font-size:small"><br></div></span><div class="gmail_default" style="font-size:small">It looks like you attempted to make multiple plots with your &quot;do nmo=0,180&quot; do loop, but then commented this code out and only created one plot with:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><span class=""><div class="gmail_default" style="font-size:small"><font face="monospace, monospace">plot = gsn_csm_contour_map_ce(wks,<wbr>prClm(0,:,:), res)  ; create plot</font></div><div style="font-size:small"><font face="arial, helvetica, sans-serif"><br></font></div></span><div style="font-size:small"><font face="arial, helvetica, sans-serif">You then tried to panel this one plot using gsn_panel, but told it that you had three plots. So, NCL drew the one plot on the left, and left the other two slots blank because there are no plots to draw.</font></div><div style="font-size:small"><font face="arial, helvetica, sans-serif"><br></font></div><div style="font-size:small"><font face="arial, helvetica, sans-serif">You need to create three plots, using a unique name for each one, and plot the three different &quot;prClm&quot; arrays you created.</font></div><div style="font-size:small"><font face="arial, helvetica, sans-serif"><br></font></div><div style="font-size:small"><font face="arial, helvetica, sans-serif">I&#39;ve attached a modified version of your script, that renames your prClm variables to unique names, so then you can plot with something like this:</font></div><div style="font-size:small"><font face="arial, helvetica, sans-serif"><br></font></div><div><div><font face="monospace, monospace">;---Create three plots with three different titles</font></div><div><font face="monospace, monospace">  plot    = new(3,graphic)</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">  res@tiMainString = </font><span style="font-family:monospace,monospace">&quot;CCCma&quot;</span></div><div><font face="monospace, monospace">  plot(0) = gsn_csm_contour_map_ce(wks,<wbr>prClm_CCCma(0,:,:), res)</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">  res@tiMainString = &quot;Cnrm&quot;</font></div><div><font face="monospace, monospace">  plot(1) = gsn_csm_contour_map_ce(wks,<wbr>prClm_Cnrm(0,:,:), res)</font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">  res@tiMainString = &quot;Ichec&quot;</font></div><div><font face="monospace, monospace">  plot(2) = gsn_csm_contour_map_ce(wks,<wbr>prClm_Ichec(0,:,:), res)</font></div><span class=""><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">  resP                     = True               ; panel options</font></div></span><span class=""><div><font face="monospace, monospace">  resP@gsnMaximize         = True               ; maximize image</font></div><div><font face="monospace, monospace">  resP@gsnPanelLabelBar    = True               ; Add common label bar</font></div></span><div><font face="monospace, monospace">  resP@txString            = &quot;Precipitation: Climatology&quot;<br></font></div><div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">  gsn_panel(wks,plot,(/3,1/),<wbr>resP)</font></div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div style="font-family:arial,helvetica,sans-serif;font-size:small">Note that I changed the titles such that each individual plot has its own title, and then I added a main title to the paneled plots using txString. You will likely want to change this to match whatever titles you want.</div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div style="font-family:arial,helvetica,sans-serif;font-size:small">Instead of using gsn_define_colormap to set the colors, I recommend using the cnFillPalette resource. This allows you to associate the colors directly with the levels. For example:</div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div style="font-size:small"><span class=""><div><font face="monospace, monospace">  res@cnLevelSelectionMode = &quot;ExplicitLevels&quot;   ; set explicit contour levels</font></div></span><div><font face="monospace, monospace">  res@cnLevels             = (/ 2.5, 3.0, 3.5, 4.5, 5.5, 6.5, 7.5, 10.0 /)</font></div><div><font face="monospace, monospace">  res@cnFillPalette        = (/&quot;azure1&quot;,&quot;beige&quot;,&quot;lavender&quot;,<wbr>&quot;PaleGreen&quot;,\</font></div><span class=""><div><font face="monospace, monospace">                              &quot;SeaGreen3&quot;,&quot;LightYellow&quot;,&quot;<wbr>Yellow&quot;,&quot;HotPink&quot;,&quot;Red&quot;/)   </font></div><div style="font-family:arial,helvetica,sans-serif"><br></div></span></div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div style="font-family:arial,helvetica,sans-serif;font-size:small"> However, there&#39;s an error you need to correct.  You specified 13 contour levels with:</div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div><span class=""><div style="font-family:arial,helvetica,sans-serif;font-size:small">  res@cnLevels             = (/ 2.0, 2.5 \ ; set unequal contour levels                                                                                   </div><div style="font-family:arial,helvetica,sans-serif;font-size:small">                              , 3.0, 3.5, 4.0, 4.5, 5.0 \</div><div style="font-family:arial,helvetica,sans-serif;font-size:small">                              ,5.5, 6.0, 6.5, 7.0, 7.5,10.0 /)</div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div></span><div style="font-family:arial,helvetica,sans-serif;font-size:small">but only 9 colors (I&#39;m not counting white and black)</div><span class=""><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div><div><font face="arial, helvetica, sans-serif">  colors = (/&quot;white&quot;,&quot;black&quot;             \      ; back/fore ground                                                                                        </font></div><div><font face="arial, helvetica, sans-serif">            ,&quot;azure1&quot;,&quot;beige&quot;,&quot;lavender&quot; \</font></div><div><font face="arial, helvetica, sans-serif">            ,&quot;PaleGreen&quot;,&quot;SeaGreen3&quot;,&quot;<wbr>LightYellow&quot; \</font></div><div><font face="arial, helvetica, sans-serif">            ,&quot;Yellow&quot;,&quot;HotPink&quot;,&quot;Red&quot;/) </font></div></div></span></div><div><font face="arial, helvetica, sans-serif"><br></font></div><div><span style="font-family:arial,helvetica,sans-serif">You need to specify one more color than you have levels, because the level values will represent the values *between* colors. </span><span style="font-family:arial,helvetica,sans-serif">I fixed this by reducing the levels to just 8 levels.  You will likely need to change this as desired.</span></div><div><br></div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div style="font-family:arial,helvetica,sans-serif;font-size:small">This script is UNTESTED of course, because I can&#39;t run it without the data.  You may need to fix any typos I introduced. <span class="HOEnZb"><font color="#888888"><br></font></span></div><span class="HOEnZb"><font color="#888888"><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div style="font-family:arial,helvetica,sans-serif;font-size:small">--Mary</div><div style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div></font></span></div></div><div class="gmail_default" style="font-size:small"><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote"><span class="">On Tue, Jan 3, 2017 at 9:11 AM, Kwesi Quagraine <span dir="ltr">&lt;<a href="mailto:starskykwesi@gmail.com" target="_blank">starskykwesi@gmail.com</a>&gt;</span> wrote:<br></span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div class="gmail_default" style="font-family:trebuchet ms,sans-serif;font-size:large">Hello NCl Users, I am new to ncl and I have a problem. I am trying to make a  plot similar to the one attached with a common color bar and the file contains precipitation data from 1991-2005. Here&#39;s what I have done so far. <br><br>load &quot;$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/gsn_code.ncl&quot;  <br>load &quot;$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/gsn_csm.ncl&quot;  <br>load &quot;$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/contributed.ncl&quot; <br>load &quot;$NCARG_ROOT/lib/ncarg/nclscri<wbr>pts/csm/shea_util.ncl&quot; <br><br>wksType = &quot;pdf&quot;<br>   wksName = &quot;climo123&quot;                    <wbr>      ; &quot;: &quot;+yrStrt+&quot;_&quot;+yrLast<br>  <br>   diri    = &quot;/media/kwesi/Maxtor/paper/&quot;  <wbr>       ; input directory   <br><br><br>;*****************************<wbr>******************************<br>; Read first file; Create climatology for desired period<br>;*****************************<wbr>******************************<br><br>   fili    = &quot;CCCma91-05.nc3&quot;<br>   f       = addfile (diri+fili , &quot;r&quot;)                          <br><br>   pr     = f-&gt;pr*86400     ; (time,lat,lon)<br>   time    = f-&gt;time<br>   lat     = f-&gt;lat<br>   lon     = f-&gt;lon <br><br>   ntim = dimsizes(time)<br>   pr!0 = &quot;time&quot;<br>   pr!1 = &quot;lat&quot;<br>   pr!2 = &quot;lon&quot;<br>   pr&amp;time = time<br>   pr&amp;lat = lat<br>   pr&amp;lon = lon<br>              <br>   months = (/&quot;January&quot;, &quot;February&quot;, &quot;March&quot;, &quot;April&quot; \<br>            ,&quot;May&quot;, &quot;June&quot;, &quot;July&quot;, &quot;Auguat&quot;         \<br>            ,&quot;September&quot;, &quot;October&quot;, &quot;November&quot;      \<br>            ,&quot;December&quot; /)                       <br>   prClm  = clmMonTLL( pr)                  ; Climatology<br>                              <wbr>                <br>   delete(time)<br>   delete(pr)<br><br>   printVarSummary( prClm )<br>   printMinMax( prClm, True )<br><br>;*****************************<wbr>******************************<br>; Read second file ; Create climatology for desired period<br>; <br>;*****************************<wbr>******************************<br><br>   fili    = &quot;Cnrm91-05.nc3&quot;<br>   f       = addfile (diri+fili , &quot;r&quot;)                          <br>   pr      = f-&gt;pr*86400     ; (time,lat,lon)<br>   time    = f-&gt;time<br>   lat     = f-&gt;lat<br>   lon     = f-&gt;lon <br><br>   ntim = dimsizes(time)<br>   pr!0 = &quot;time&quot;<br>   pr!1 = &quot;lat&quot;<br>   pr!2 = &quot;lon&quot;<br>   pr&amp;time = time<br>   pr&amp;lat = lat<br>   pr&amp;lon = lon <br>   months = (/&quot;January&quot;, &quot;February&quot;, &quot;March&quot;, &quot;April&quot; \<br>            ,&quot;May&quot;, &quot;June&quot;, &quot;July&quot;, &quot;Auguat&quot;         \<br>            ,&quot;September&quot;, &quot;October&quot;, &quot;November&quot;      \<br>            ,&quot;December&quot; /)                         <br><br>   prClm  = clmMonTLL( pr)                  ; Climatology<br>                              <wbr>                <br>   delete(time)<br>   delete(pr)<br><br>   printVarSummary( prClm )<br>   printMinMax( prClm, True )<br><br>;*****************************<wbr>******************************<br>; Read third file; Create climatology for desired period<br>;*****************************<wbr>******************************<br><br>   fili    = &quot;Ichec91-05.nc3&quot;<br>   f       = addfile (diri+fili , &quot;r&quot;)                          <br><br>   pr      = f-&gt;pr*86400     ; (time,lat,lon)<br>   time    = f-&gt;time<br>   lat     = f-&gt;lat<br>   lon     = f-&gt;lon <br><br>   ntim = dimsizes(time)<br>   pr!0 = &quot;time&quot;<br>   pr!1 = &quot;lat&quot;<br>   pr!2 = &quot;lon&quot;<br>   pr&amp;time = time<br>   pr&amp;lat = lat<br>   pr&amp;lon = lon                        <br><br>   months = (/&quot;January&quot;, &quot;February&quot;, &quot;March&quot;, &quot;April&quot; \<br>            ,&quot;May&quot;, &quot;June&quot;, &quot;July&quot;, &quot;Auguat&quot;         \<br>            ,&quot;September&quot;, &quot;October&quot;, &quot;November&quot;      \<br>            ,&quot;December&quot; /)<br>   prClm  = clmMonTLL( pr)                  ; Climatology<br>                              <wbr>                <br>   ;delete(time)<br>   delete(pr)<br><br>   printVarSummary( prClm )<br>   printMinMax( prClm, True )<br><br>;*****************************<wbr>********************<br>; create colors<br>;*****************************<wbr>********************<br> <br><br>  colors = (/&quot;white&quot;,&quot;black&quot;             \      ; back/fore ground<br>            ,&quot;azure1&quot;,&quot;beige&quot;,&quot;lavender&quot; \<br>            ,&quot;PaleGreen&quot;,&quot;SeaGreen3&quot;,&quot;Ligh<wbr>tYellow&quot; \<br>            ,&quot;Yellow&quot;,&quot;HotPink&quot;,&quot;Red&quot;/)   <wbr>      ; choose colors for color map<br>            wks = gsn_open_wks(wksType, wksName)<br>  gsn_define_colormap(wks, colors)              ; generate new color map<br><br>;*****************************<wbr>*******************<br>; create panel plots<br>;*****************************<wbr>********************<br>  plot   = new (3 , graphic)                    ; create graphical array<br><br>  res                      = True               ; plot options desired<br><br>  res@cnFillOn             = True               ; turn on color fill<br>  res@cnInfoLabelOn        = False              ; turn off contour info label<br>  res@cnLinesOn            = False              ; turn off contour lines<br>  res@cnLineLabelsOn       = False              ; turn off line labels<br>  res@cnLevelSelectionMode = &quot;ExplicitLevels&quot;   ; set explicit contour levels<br>  res@cnLevels             = (/ 2.0, 2.5 \ ; set unequal contour levels<br>                              , 3.0, 3.5, 4.0, 4.5, 5.0 \<br>                              ,5.5, 6.0, 6.5, 7.0, 7.5,10.0 /)<br><br>                             <br><br>  res@mpFillOn             = False              ; turn off gray continents<br>  ;res@mpCenterLonF         = 180                ; Centers the plot at 180 <br> <br>  res@lbLabelBarOn         = False              ; No single label bar<br><br>  res@gsnDraw              = False<br>  res@gsnFrame             = False<br><br>  resP                     = True               ; panel options<br>  resP@txString            = &quot;GPCC Precipitation: Climatology&quot;   ; common title<br>  resP@gsnMaximize         = True               ; maximize image<br>  resP@gsnPanelLabelBar    = True               ; Add common label bar <br><br>;---Set to False if plotting regional data or setting sfXArray/sfYArray<br>  res@gsnAddCyclic      =False<br><br>  res@sfXArray          = lon   ; Only necessary if x doesn&#39;t <br>  res@sfYArray          = lat   ; contain 1D coordinate arrays<br>;<br>; Zoom in on map if desired. There are other ways to zoom in on<br>; map if you have a different projection, like lambert conformal.<br>;<br>  res@mpMinLatF         = -60<br>  res@mpMaxLatF         = 0<br>  res@mpMinLonF         = -20<br>  res@mpMaxLonF         = 60<br>  ;res@mpCenterLonF      = (res@mpMinLonF + res@mpMaxLonF) / 2.<br><br>  ;i = -1                            <wbr>            ; Climatologies<br>  ;do nmo=0,180                     <wbr>            ; loop over the months<br>     ;i = i+1<br>     ;res@gsnCenterString   = months(nmo)+&quot;:&quot;+time(0)/100 +&quot;-&quot;+ time(ntim-1)/100<br>     ;plot(i) = gsn_csm_contour_map_ce(wks,prC<wbr>lm(nmo,:,:), res)  ; create plot<br>  ;end do<br>plot = gsn_csm_contour_map_ce(wks,prC<wbr>lm(0,:,:), res)  ; create plot<br>  gsn_panel(wks,plot,(/3,1/),res<wbr>P)<br><br></div><div class="gmail_default" style="font-family:trebuchet ms,sans-serif;font-size:large">-------After running the script I get<br clear="all"></div>Variable: prClm<br>Type: float<br>Total Size: 1486416 bytes<br>            371604 values<br>Number of Dimensions: 3<br>Dimensions and sizes:    [month | 12] x [lat | 179] x [lon | 173]<br>Coordinates: <br>            month: [0..11]<br>            lat: [-46.25..42.75]<br>            lon: [-25.25..60.75]<br>Number Of Attributes: 3<br>  _FillValue :    1e+20<br>  time_op_ncl :    Climatology: 15 years<br>  info :    function clmMonLLT: contributed.ncl<br>(0)     <br>(0)    min=0   max=63.1759<br><br>Variable: prClm<br>Type: float<br>Total Size: 1486416 bytes<br>            371604 values<br>Number of Dimensions: 3<br>Dimensions and sizes:    [month | 12] x [lat | 179] x [lon | 173]<br>Coordinates: <br>            month: [0..11]<br>            lat: [-46.25..42.75]<br>            lon: [-25.25..60.75]<br>Number Of Attributes: 3<br>  info :    function clmMonLLT: contributed.ncl<br>  time_op_ncl :    Climatology: 15 years<br>  _FillValue :    1e+20<br>(0)     <br>(0)    min=0   max=69.7658<br><br>Variable: prClm<br>Type: float<br>Total Size: 1486416 bytes<br>            371604 values<br>Number of Dimensions: 3<br>Dimensions and sizes:    [month | 12] x [lat | 179] x [lon | 173]<br>Coordinates: <br>            month: [0..11]<br>            lat: [-46.25..42.75]<br>            lon: [-25.25..60.75]<br>Number Of Attributes: 3<br>  info :    function clmMonLLT: contributed.ncl<br>  time_op_ncl :    Climatology: 15 years<br>  _FillValue :    1e+20<br>(0)     <br>(0)    min=0   max=53.8587<br><div style="font-family:trebuchet ms,sans-serif;font-size:large" class="gmail_default">​ and the file named climo123 as attached.​ Any help will be much appreciated.</div><span class="m_-3048209479144365740HOEnZb"><font color="#888888"><br>-- <br><div class="m_-3048209479144365740m_6728385490197500600gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div><div><font color="#0000ff" face="trebuchet ms, sans-serif">Try not to become a man of success but rather a man of value-Albert Einstein</font></div><div><font color="#0000ff" face="trebuchet ms, sans-serif"><br></font></div><div><font color="#0000ff"><font face="trebuchet ms, sans-serif">University of Cape Coast|</font><span style="font-family:&quot;trebuchet ms&quot;,sans-serif;font-size:12.8px">College of Agriculture and Natural Sciences|</span><span style="font-family:&quot;trebuchet ms&quot;,sans-serif;font-size:12.8px">Department of Physics|</span></font></div><div><font color="#0000ff" face="trebuchet ms, sans-serif">Team Leader|Recycle Up! Ghana|Technology Without Borders|</font></div><div><font color="#0000ff"><font face="trebuchet ms, sans-serif">Other emails: </font><span style="font-family:&quot;trebuchet ms&quot;,sans-serif;font-size:12.8px"><a href="mailto:kwesi.quagraine@ucc.edu.gh" target="_blank">kwesi.quagraine@ucc.ed<wbr>u.gh</a>|</span><span style="font-family:&quot;trebuchet ms&quot;,sans-serif;font-size:12.8px"><a href="mailto:kwesi.quagraine@teog.de" target="_blank">kwesi.quagraine@teog.de</a>|</span></font></div><div><span style="font-family:&quot;trebuchet ms&quot;,sans-serif;font-size:12.8px"><font color="#0000ff">Mobile: <a href="tel:+233%2026%20617%203582" value="+233266173582" target="_blank">+233266173582</a></font></span></div></div><div><font color="#0000ff" face="trebuchet ms, sans-serif">Skype: quagraine_cwasi</font></div><div><font color="#0000ff" face="trebuchet ms, sans-serif">Twitter: @Pkdilly</font></div><div><br><img src="cid:ii_1596513231e8f873" alt="Inline image 1" width="387" height="334"></div></div></div></div></div></div></div></div>
</font></span></div>
<br></div></div><span class="">______________________________<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></span></blockquote></div><br></div>
</blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div><div><font face="trebuchet ms, sans-serif" color="#0000ff">Try not to become a man of success but rather a man of value-Albert Einstein</font></div><div><font face="trebuchet ms, sans-serif" color="#0000ff"><br></font></div><div><font color="#0000ff"><font face="trebuchet ms, sans-serif">University of Cape Coast|</font><span style="font-family:&#39;trebuchet ms&#39;,sans-serif;font-size:12.8000001907349px">College of Agriculture and Natural Sciences|</span><span style="font-family:&#39;trebuchet ms&#39;,sans-serif;font-size:12.8000001907349px">Department of Physics|</span></font></div><div><font face="trebuchet ms, sans-serif" color="#0000ff">Team Leader|Recycle Up! Ghana|Technology Without Borders|</font></div><div><font color="#0000ff"><font face="trebuchet ms, sans-serif">Other emails: </font><span style="font-family:&#39;trebuchet ms&#39;,sans-serif;font-size:12.8px"><a href="mailto:kwesi.quagraine@ucc.edu.gh" target="_blank">kwesi.quagraine@ucc.edu.gh</a>|</span><span style="font-family:&#39;trebuchet ms&#39;,sans-serif;font-size:12.8px"><a href="mailto:kwesi.quagraine@teog.de" target="_blank">kwesi.quagraine@teog.de</a>|</span></font></div><div><span style="font-family:&#39;trebuchet ms&#39;,sans-serif;font-size:12.8px"><font color="#0000ff">Mobile: +233266173582</font></span></div></div><div><font face="trebuchet ms, sans-serif" color="#0000ff">Skype: quagraine_cwasi</font></div><div><font face="trebuchet ms, sans-serif" color="#0000ff">Twitter: @Pkdilly</font></div><div><br></div></div></div></div></div></div></div></div>
</div>