<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div></div><div><br class=""></div><div><br class=""></div><div><blockquote type="cite" class=""><div class="">On 12 Nov 2015, at 07:39, Amadou Coulibaly <<a href="mailto:mpapin24@gmail.com" class="">mpapin24@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;">Hi Mary,<br class=""><br class=""></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;">After persing into my time array, I got year, month, day, hour, minute. But what about<span class="Apple-converted-space"> </span><span style="color: rgb(0, 0, 255);" class="">second</span><span class="Apple-converted-space"> </span>since it is not appearing in my timestamp, which is in format<span class="Apple-converted-space"> </span><span style="color: rgb(0, 0, 255);" class="">mm/dd/yyyy hh:MM</span>? And how to write<span class="Apple-converted-space"> </span><span style="color: rgb(0, 0, 255);" class="">time@units</span><span class="Apple-converted-space"> </span>since my timestamp starts on<span class="Apple-converted-space"> </span><span style="color: rgb(0, 0, 255);" class="">10/05/2014 06:00:00<span style="" class="">? And after persing my time I converted year, day, month, hour, minute into interger as:<br class=""><br class=""> month = str_get_field(time,1,"/")<br class=""> day = str_get_field(time,2,"/")<br class=""> year = str_get_field(time,3,"/ ") <span class="Apple-converted-space"> </span><br class=""> hour = str_get_field(time,2," :")<br class=""> minute = str_get_field(time,3," :")<br class=""> <span class="Apple-converted-space"> </span><span style="color: rgb(255, 0, 0);" class="">second = str_get_field(time,3," :") ????????<br class=""></span><br class=""> yyyy = stringtointeger(year)<br class=""> mm = stringtointeger(month)<br class=""> dd = stringtointeger(day)<br class=""> hh = stringtointeger(hour)<br class=""> MM = stringtointeger(minute)<br class=""> <span class="Apple-converted-space"> </span><span style="color: rgb(255, 0, 0);" class="">ss = stringtointeger(second)???????</span><br class=""><br class=""> <span class="Apple-converted-space"> </span><span style="color: rgb(255, 0, 0);" class="">time@units = "hour since 2014-10-05 06:00:00" ????????</span><br class=""><br class=""> date = cd_inv_calendar(yyyy, mm, dd, hh, MM, ss, time@units, 0)<br class=""><br class=""></span></span></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;"><span style="color: rgb(0, 0, 255);" class=""><span style="" class="">After this, my variable "date" is just printing out missing values. What's wrong with that?<br class=""><br class=""></span></span></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;"><span style="color: rgb(0, 0, 255);" class=""><span style="" class="">Best regards<br class=""></span></span></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;"><span style="color: rgb(0, 0, 255);" class=""><span style="" class=""><br class=""></span></span></div></div><div class="gmail_extra" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;"><br class=""><div class="gmail_quote">On 11 November 2015 at 17:01, Mary Haley<span class="Apple-converted-space"> </span><span dir="ltr" class=""><<a href="mailto:haley@ucar.edu" target="_blank" class="">haley@ucar.edu</a>></span><span class="Apple-converted-space"> </span>wrote:<br class=""><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div dir="ltr" class=""><div class="gmail_default" style="font-size: small;">You need to use cd_inv_calendar:</div><div class="gmail_default" style="font-size: small;"><br class=""></div><div class="gmail_default" style="font-size: small;"><a href="http://www.ncl.ucar.edu/Document/Functions/Built-in/cd_inv_calendar.shtml" target="_blank" class="">http://www.ncl.ucar.edu/Document/Functions/Built-in/cd_inv_calendar.shtml</a></div><div class="gmail_default" style="font-size: small;"><br class=""></div><div class="gmail_default" style="font-size: small;">Some of the examples on the above page should help you.</div><div class="gmail_default" style="font-size: small;"><br class=""></div><div class="gmail_default" style="font-size: small;">To get the required year, month, day, hour, minutes, and seconds arrays, you will need to parse the "time" array in the same fashion that you parsed the CSV file.</div><div class="gmail_default" style="font-size: small;"><br class=""></div><div class="gmail_default" style="font-size: small;">For example:</div><div class="gmail_default" style="font-size: small;"><br class=""></div><div class="gmail_default"><div class="gmail_default"><font face="monospace, monospace" class=""> <span class="Apple-converted-space"> </span>month = str_get_field(time,1,"/")</font></div><div class="gmail_default"><font face="monospace, monospace" class=""> <span class="Apple-converted-space"> </span>day = str_get_field(time,2,"/")</font></div><div class="gmail_default"><font face="monospace, monospace" class=""> <span class="Apple-converted-space"> </span>year = str_get_field(time,3,"/ ") ; note the use of both '/' and ' ' as delimiters</font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif" class=""><br class=""></font></div><div class="gmail_default"><font face="arial, helvetica, sans-serif" class="">--Mary</font></div></div></div><div class="gmail_extra"><br class=""><div class="gmail_quote"><div class=""><div class="h5">On Wed, Nov 11, 2015 at 8:25 AM, Amadou Coulibaly<span class="Apple-converted-space"> </span><span dir="ltr" class=""><<a href="mailto:mpapin24@gmail.com" target="_blank" class="">mpapin24@gmail.com</a>></span><span class="Apple-converted-space"> </span>wrote:<br class=""></div></div><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex;"><div class=""><div class="h5"><div dir="ltr" class=""><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;">Dear NCL users,<br class=""><br class=""></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;">I am trying to use cd_calendar for my dataset to be able to plot daily timeseries. But I have a problem converting my Timstamp, which is in the format<span class="Apple-converted-space"> </span><span style="color: rgb(0, 0, 255);" class="">10/05/2014 06:00:00</span>, mm/dd/yyyy hh:MM:ss. I want to use it in the format<span class="Apple-converted-space"> </span><span style="background-color: rgb(255, 255, 255);" class=""><span style="color: rgb(0, 0, 255);" class="">time@units = "minuts since 2014-10-05 06:00:00"</span><span class="Apple-converted-space"> </span></span>with<span class="Apple-converted-space"> </span><span style="color: rgb(0, 0, 255);" class="">dates = cd_calendar(Time, 0)<span style="" class=""><span class="Apple-converted-space"> </span>as specifying in my script (readcsv.ncl). Please, find attached a sample of my data and script.<br class=""><br class=""><br class=""></span></span></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;"><span style="color: rgb(0, 0, 255);" class=""><span style="" class="">How to solve this issue?<br class=""><br class=""></span></span></div><div class="gmail_default" style="font-family: 'courier new', monospace; font-size: large;"><span style="color: rgb(0, 0, 255);" class=""><span style="" class="">Best regards</span><span class="Apple-converted-space"> </span></span><span style="background-color: rgb(243, 243, 243);" class=""><span class=""></span></span><br clear="all" class=""></div><br class="">--<span class="Apple-converted-space"> </span><br class=""><div class=""><div dir="ltr" class=""><b style="font-size: small; font-family: tahoma, sans-serif;" class=""><font color="#000066" class=""> </font><font color="#000066" class="">COULIBALY </font><font color="#000066" class="">AMADOU </font></b><br class=""><span style="color: rgb(0, 0, 102); font-family: tahoma, sans-serif; font-size: small;" class="">PhD Student on West African Climate System (WACS)</span><br class=""><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">FUTA</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""><span class="Apple-converted-space"> </span>- </font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">F</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">ederal <span class="Apple-converted-space"> </span></font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">U</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">niversity of <span class="Apple-converted-space"> </span></font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">T</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">echnology of </font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">A</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">kure, Nigeria</font><div class=""><font size="2" color="#000066" face="tahoma, sans-serif" class=""><br class=""></font><div class=""><span style="color: rgb(76, 17, 48);" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><i style="font-weight: bold;" class="">Visiting Student -<span class="Apple-converted-space"> </span></i></span><i style="font-weight: bold;" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><i class=""><font size="1" class=""><span style="font-size: 13px;" class="">University of Cologne, Germany</span></font></i></span><br class=""></i><i class=""><span style="font-family: arial, helvetica, sans-serif;" class="">Institute of Geophysics and Meteorology</span></i><span style="font-family: arial, helvetica, sans-serif;" class=""><br class=""></span></span><div style="letter-spacing: normal; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><span style="color: rgb(76, 17, 48);" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><font size="1" class="">Pohligstr. 3 / Office 3.102</font></span></span></div><div style="letter-spacing: normal; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><span style="color: rgb(76, 17, 48);" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><font size="1" class="">D-50969 Köln</font></span></span></div></div></div><div style="color: rgb(80, 0, 80);" class=""><i style="color: rgb(34, 34, 34); font-family: 'bookman old style', 'new york', times, serif;" class=""><font size="1" class=""><span style="color: rgb(0, 0, 127);" class=""><span style="font-size: 13px;" class=""><br class=""></span></span></font></i></div><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class=""><u class="">Project</u>:<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">WASCAL</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class=""><span class="Apple-converted-space"> </span>(</span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">W</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">est<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">A</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">frican<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">S</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">cience<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">S</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">ervice<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">C</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">entre on<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">C</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">limate<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">C</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">hange and<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">A</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">dapted<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">L</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">and Use) </span><br class=""><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class="">Phone:<a href="tel:%28%2B234%29%20810%20795%202836" value="+2348107952836" target="_blank" class="">(+234) 810 795 2836</a> </font><font color="#ff0000" style="font-family: tahoma, sans-serif; font-size: small;" class="">/</font><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class=""><a href="tel:%28%2B223%29%2065%2067%2027%2057" value="+22365672757" target="_blank" class="">(+223) 65 67 27 57</a> </font><font color="#ff0000" style="font-family: tahoma, sans-serif; font-size: small;" class="">/</font><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class=""><a href="tel:%28%2B226%29%2064%2057%2037%2027" value="+22664573727" target="_blank" class="">(+226) 64 57 37 27</a><span class="Apple-converted-space"> </span></font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""><span style="color: rgb(34, 34, 34);" class=""></span><font color="#ff0000" class="">/</font></font><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class=""><a href="tel:%2B49%2015218352574" value="+4915218352574" target="_blank" class="">+49 15218352574</a><br class=""></font><div class=""><div class=""><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""></font><br class="webkit-block-placeholder"></div><div style="text-align: left;" class=""><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""><font color="#000066" class="">E-mail: </font><a href="mailto:mpapin24@gmail.com" target="_blank" style="color: rgb(0, 0, 255);" class="">mpapin24@gmail.com</a><span style="color: rgb(34, 34, 34);" class=""> </span><font color="#ff0000" class="">/ </font><span style="color: rgb(0, 0, 255);" class=""><a href="mailto:coulibalya68@yahoo.com" target="_blank" class="">coulibalya68@yahoo.com</a> </span></font></div><div class=""><br class="webkit-block-placeholder"></div></div><div class=""><font size="2" face="verdana,sans-serif" class=""><p class=""><font color="#ff9900" class="">"<i class="">The time is always right to do right":<span class="Apple-converted-space"> </span><b class="">Nelson Mandela</b></i></font></p><p class=""><i class=""><font color="#ff9900" class="">"Character is like a tree and reputation like a shadow. The shadow is what we think of it; the tree is the real thing" :<span class="Apple-converted-space"> </span><b class="">Abraham Lincoln</b></font></i></p><p class=""><i class=""><font color="#ff9900" class="">"Do what you can, with what you have, where you are"<span class="Apple-converted-space"> </span><b class="">Theodore Roosevelt</b></font></i></p></font><p class=""><b class=""><font size="2" color="#000066" class=""><i class=""> </i></font></b></p><p class=""><b class=""><font size="4" color="#000066" class=""> </font></b></p><div class=""> </div></div></div></div></div><br class=""></div></div>_______________________________________________<br class="">ncl-talk mailing list<br class=""><a href="mailto:ncl-talk@ucar.edu" target="_blank" class="">ncl-talk@ucar.edu</a><br class="">List instructions, subscriber options, unsubscribe:<br class=""><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank" class="">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br class=""><br class=""></blockquote></div><br class=""></div></blockquote></div><br class=""><br clear="all" class=""><br class="">--<span class="Apple-converted-space"> </span><br class=""><div class="gmail_signature"><div dir="ltr" class=""><b style="font-size: small; font-family: tahoma, sans-serif;" class=""><font color="#000066" class=""> </font><font color="#000066" class="">COULIBALY </font><font color="#000066" class="">AMADOU </font></b><br class=""><span style="color: rgb(0, 0, 102); font-family: tahoma, sans-serif; font-size: small;" class="">PhD Student on West African Climate System (WACS)</span><br class=""><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">FUTA</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""><span class="Apple-converted-space"> </span>- </font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">F</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">ederal <span class="Apple-converted-space"> </span></font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">U</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">niversity of <span class="Apple-converted-space"> </span></font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">T</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">echnology of </font><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">A</font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class="">kure, Nigeria</font><div class=""><font color="#000066" face="tahoma, sans-serif" size="2" class=""><br class=""></font><div class=""><span style="color: rgb(76, 17, 48);" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><i style="font-weight: bold;" class="">Visiting Student -<span class="Apple-converted-space"> </span></i></span><i style="font-weight: bold;" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><i class=""><font size="1" class=""><span style="font-size: 13px;" class="">University of Cologne, Germany</span></font></i></span><br class=""></i><i class=""><span style="font-family: arial, helvetica, sans-serif;" class="">Institute of Geophysics and Meteorology</span></i><span style="font-family: arial, helvetica, sans-serif;" class=""><br class=""></span></span><div style="letter-spacing: normal; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><span style="color: rgb(76, 17, 48);" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><font size="1" class="">Pohligstr. 3 / Office 3.102</font></span></span></div><div style="letter-spacing: normal; text-transform: none; white-space: normal; word-spacing: 0px;" class=""><span style="color: rgb(76, 17, 48);" class=""><span style="font-family: arial, helvetica, sans-serif;" class=""><font size="1" class="">D-50969 Köln</font></span></span></div></div></div><div style="color: rgb(80, 0, 80);" class=""><i style="color: rgb(34, 34, 34); font-family: 'bookman old style', 'new york', times, serif;" class=""><font size="1" class=""><span style="color: rgb(0, 0, 127);" class=""><span style="font-size: 13px;" class=""><br class=""></span></span></font></i></div><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class=""><u class="">Project</u>:<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">WASCAL</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class=""><span class="Apple-converted-space"> </span>(</span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">W</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">est<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">A</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">frican<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">S</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">cience<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">S</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">ervice<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">C</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">entre on<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">C</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">limate<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">C</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">hange and<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">A</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">dapted<span class="Apple-converted-space"> </span></span><font color="#0000ff" style="font-size: small; font-family: tahoma, sans-serif;" class="">L</font><span style="font-size: small; font-family: tahoma, sans-serif; color: rgb(0, 0, 102);" class="">and Use) </span><br class=""><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class="">Phone:(+234) 810 795 2836 </font><font color="#ff0000" style="font-family: tahoma, sans-serif; font-size: small;" class="">/</font><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class="">(+223) 65 67 27 57 </font><font color="#ff0000" style="font-family: tahoma, sans-serif; font-size: small;" class="">/</font><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class="">(+226) 64 57 37 27<span class="Apple-converted-space"> </span></font><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""><span style="color: rgb(34, 34, 34);" class=""></span><font color="#ff0000" class="">/</font></font><font color="#000066" style="font-family: tahoma, sans-serif; font-size: small; color: rgb(0, 0, 102);" class="">+49 15218352574<br class=""></font><div class=""><div class=""><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""></font><br class="webkit-block-placeholder"></div><div style="text-align: left;" class=""><font color="#000066" style="font-size: small; font-family: tahoma, sans-serif;" class=""><font color="#000066" class="">E-mail: </font><a href="mailto:mpapin24@gmail.com" target="_blank" style="color: rgb(0, 0, 255);" class="">mpapin24@gmail.com</a><span style="color: rgb(34, 34, 34);" class=""> </span><font color="#ff0000" class="">/ </font><span style="color: rgb(0, 0, 255);" class=""><a href="mailto:coulibalya68@yahoo.com" target="_blank" class="">coulibalya68@yahoo.com</a> </span></font></div><div class=""><br class="webkit-block-placeholder"></div></div><div class=""><font face="verdana,sans-serif" size="2" class=""><p class=""><font color="#ff9900" class="">"<i class="">The time is always right to do right":<span class="Apple-converted-space"> </span><b class="">Nelson Mandela</b></i></font></p><p class=""><i class=""><font color="#ff9900" class="">"Character is like a tree and reputation like a shadow. The shadow is what we think of it; the tree is the real thing" :<span class="Apple-converted-space"> </span><b class="">Abraham Lincoln</b></font></i></p><p class=""><i class=""><font color="#ff9900" class="">"Do what you can, with what you have, where you are"<span class="Apple-converted-space"> </span><b class="">Theodore Roosevelt</b></font></i></p></font><p class=""><b class=""><font color="#000066" size="2" class=""><i class=""> </i></font></b></p><p class=""><b class=""><font color="#000066" size="4" class=""> </font></b></p><div class=""> </div></div></div></div></div><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">_______________________________________________</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">ncl-talk mailing list</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="mailto:ncl-talk@ucar.edu" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">ncl-talk@ucar.edu</a><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">List instructions, subscriber options, unsubscribe:</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a></div></blockquote></div><br class=""></body></html>