<div dir="ltr"><div class="gmail_default" style="font-size:small">Soares,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I will help you one more time on this problem. You need to read and understand the emails and scripts I&#39;ve sent you, rather then just emailing me for more help. You must LOOK AT YOUR DATA before you randomly start adding city names to your &quot;majorCities&quot; list.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I&#39;ve showed you multiple times how to do this.</div><div class="gmail_default" style="font-size:small"><p class="">I&#39;ve created an NCL script that reads every string variable off the TLS_adm2.shp shapefile, and searches for the cities you listed.  I didn&#39;t find any cities called &quot;Cristo Rei&quot; or &quot;Nain Feto&quot; anywhere any of the shapefiles.  I even searched for just &quot;Nain&quot; and &quot;Feto&quot; and didn&#39;t see anything.</p><p class="">See the attached script, which you can run yourself.</p><p class="">-----------------------------------------------------------------------------------------------------------</p><div><div class="gmail_default"><div class="gmail_default"><div>I had typed the below before I created the &quot;examine_tls_adm.ncl&quot; script. This information is potentially useful for future purposes, so I decided to include it. This explains in more detail how to use &quot;ncl_filedump&quot; and &quot;grep&quot; on the UNIX command line to examine a file for the cities you want:</div></div></div></div></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">For example, if you are trying to find out if there&#39;s a city called &quot;Metinaro&quot; in the &quot;NAME_2&quot; variable, then type this command:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><div class="gmail_default">   ncl_filedump -v NAME_2 TLS_adm2.shp | grep &quot;Metinaro&quot;</div><div class="gmail_default"><br></div><div class="gmail_default">When I type the above command, I get the following output, which indicates that this city is indeed in the list:</div><div class="gmail_default"><br></div><div class="gmail_default">Metinaro</div><div class="gmail_default"><br></div><div class="gmail_default">However, if I try to search  for &quot;<span style="font-size:12.8px">Nain Feto&quot;:</span></div><div class="gmail_default">







<p class="">   ncl_filedump -v NAME_2 TLS_adm2.shp | grep &quot;Nain Feto&quot;</p>
<p class="">The UNIX prompt comes back without any output. This means it did NOT find &quot;Nain Feto&quot; in the list.</p><p class="">I then tried:</p><p class="">   ncl_filedump -v NAME_2 TLS_adm2.shp | grep &quot;Nain&quot;</p><div>and:</div><div><p class="">   ncl_filedump -v NAME_2 TLS_adm2.shp | grep &quot;Feto&quot;</p></div><div>These both came back empty, which means you CANNOT use &quot;Nain Feto&quot; in your &quot;majorCities&quot; variable.</div><div><br></div><div>I was then curious about whether there were ANY cities that actually start with the letter &quot;N&quot;, so I did this:</div><div>







<p class="">  ncl_filedump -v NAME_2 TLS_adm2.shp | grep &quot;^N&quot;</p><p class="">The &quot;^&quot; is a special character that means to match something that starts with this letter.  The only city that starts with an &quot;N&quot; is &quot;Nitibe&quot;.</p><p class="">I then wanted to see if any part of the NAME_2 cities has an &quot;F&quot; in it:</p><p class="">







</p><p class="">ncl_filedump -v NAME_2 TLS_adm2.shp | grep &quot;F&quot;</p><p class="">This gave me:</p><p class="">Fatu Fulic<br>Fatu Mean<br>Fohorem<br>Fato Berliu</p><p class="">Hopefully you can see where I&#39;m going with this.  You MUST figure out the exact name of the cities before you start putting them in your &quot;majorCities&quot; variable.</p><p class="">--Mary</p><p class=""><br></p><p class=""><br></p><p class=""><br></p></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jun 30, 2016 at 6:19 AM, isakhar sakhar isakhar <span dir="ltr">&lt;<a href="mailto:isakhar.inside13@gmail.com" target="_blank">isakhar.inside13@gmail.com</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><div><div>Dear mother Mary<br><br></div>I still face the error even I change the name of location for the cities as below;<br><br>majorCities = (/ (/ &quot;Cristo Rei&quot;, &quot;Cristo Rei &quot;     /), \<br>              (/ &quot;Metinaro&quot;,  &quot;Metinaro  &quot;     /), \    <br>              (/ &quot;Vera Cruz&quot;, &quot;Vera Cruz&quot;     /), \<br>              (/ &quot;Nain Feto&quot;, &quot;Nain Feto&quot;     /), \     <br>              (/  &quot;Dom Aleixo&quot;,&quot;Dom Aleixo&quot;/) /)<br><br></div>I also added the printVarSummary but still face the error. I dont exactly which variable I should use because I have tried to some variables in line 296 but still not working. Sorry for asking alot.<br><br></div>Soares<br></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jun 24, 2016 at 11:58 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">Soares,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">The problem is simply that are you are trying to look for cities called &quot;Dili&quot; and &quot;Hera&quot; in the TLS_adm2.shp file, but these names don&#39;t appear in the NAME_2 variable.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">This is why Dennis and I were trying to tell you that &quot;print&quot; and &quot;printVarSummary&quot; can be very helpful.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you print the &quot;citiesShapes-&gt;NAME_2&quot; variable with:</div><div class="gmail_default">







<p style="font-size:small">print(citiesShapes<span>-&gt;</span>NAME_2)</p><p style="font-size:small">You would see that neither &quot;Dili&quot; or &quot;Hera&quot; are in the file, but &quot;Dili Barat&quot; and &quot;Dili Timur&quot; are.</p><p style="font-size:small">You will need to adjust your code to look for the correct names of the cities.  This is where &quot;ncl_filedump&quot; can help you.</p><p style="font-size:small">You can examine the contents of the TLS_adm2.shp shapefile from the UNIX command line with:</p><p style="font-size:small">ncl_filedump TLS_adm2.shp</p><p style="font-size:small">You will then see the following variables of type &quot;string&quot;:</p><p>      string ISO ( num_features )</p><p>      string NAME_0 ( num_features )</p><p>      string NAME_1 ( num_features )</p><p>      string NAME_2 ( num_features )</p><p>      string HASC_2 ( num_features )</p><p>      string CCA_2 ( num_features )</p><p>      string TYPE_2 ( num_features )</p><p>      string ENGTYPE_2 ( num_features )</p><p>      string NL_NAME_2 ( num_features )</p><p>      string VARNAME_2 ( num_features )</p><p>You can now examine the contents of each of these variables, also using ncl_filedump:</p><p>ncl_filedump -v NAME_2 TLS_adm2.shp<br>ncl_filedump -v ENGTYPE_2 TLS_adm2.shp<br>ncl_filedump -v VARNAME_2 TLS_adm2.shp</p><div>etc.</div><p>This will help you see which variables on the shapefile might be the most useful to you, and then the exact city name to search for. You can then make this change in your shapefiles_5.ncl script.</p><span><font color="#888888"><p>--Mary</p><p><br></p></font></span></div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Jun 24, 2016 at 2:36 AM, isakhar sakhar isakhar <span dir="ltr">&lt;<a href="mailto:isakhar.inside13@gmail.com" target="_blank">isakhar.inside13@gmail.com</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>Dear Mrs.Mary<br><br></div>I could not put my files into ftp server of NCL, so I share it with dropbox. <br><br><div><div><br><a href="https://www.dropbox.com/s/iie1snwo2m663dn/soares.tar.gz?dl=0" target="_blank">https://www.dropbox.com/s/iie1snwo2m663dn/soares.tar.gz?dl=0</a><br><div class="gmail_extra"><br><br></div><div class="gmail_extra">Thank you,<br></div><div class="gmail_extra">Soares<br></div><div class="gmail_extra"><br><br></div></div></div></div>
</blockquote></div><br></div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>