<div dir="ltr">GDAL is 1.11.2 as I had other issues with 2.1.0. and python-gdal has to be the most recent one.  I will let you know as soon i get on the server.<div><br></div><div>Thanks.</div><div><br></div><div>Alassane</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 14, 2016 at 4:28 AM, Angelos Tzotsos <span dir="ltr"><<a href="mailto:gcpp.kalxas@gmail.com" target="_blank">gcpp.kalxas@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
  
    
  
  <div bgcolor="#FFFFFF" text="#000000">
    <div class="m_8526735998329115618moz-cite-prefix">Hi,<br>
      <br>
      Can you please list the versions of libgdal and python-gdal that
      are installed on your machine?<br>
      <br>
      Best,<br>
      Angelos<div><div class="h5"><br>
      <br>
      On 10/14/2016 06:41 AM, alassane toure wrote:<br>
    </div></div></div>
    <blockquote type="cite"><div><div class="h5">
      <pre>Even,

I tried the followings but the response did not change...

sudo apt-add-repository ppa:ubuntugis/ubuntugis-<wbr>unstable
sudo apt-get update
sudo apt-get install python-gdal

Any suggestions?
Thanks,
Alassane

On Thu, Sep 8, 2016 at 3:51 AM, Even Rouault <a class="m_8526735998329115618moz-txt-link-rfc2396E" href="mailto:even.rouault@spatialys.com" target="_blank"><even.rouault@spatialys.com></a>
wrote:

</pre>
      <blockquote type="cite">
        <pre>Alassane,

</pre>
        <blockquote type="cite">
          <pre>I developed a gdal code on my local machine and it worked.  Having gdal
</pre>
        </blockquote>
        <pre>and
</pre>
        <blockquote type="cite">
          <pre>g++ working on the server my compilation of the same code resulted in the
following response...

 gcc -o applymask applymask.cpp -I /usr/include/gdal -lgdal -lm
applymask.cpp: In function âint main(int, char**)â:
applymask.cpp:63:95: warning: ignoring return value of âCPLErr
GDALRasterBand::RasterIO(<wbr>GDALRWFlag, int, int, int, int, void*, int,
</pre>
        </blockquote>
        <pre>int,
</pre>
        <blockquote type="cite">
          <pre>GDALDataType, GSpacing, GSpacing, GDALRasterIOExtraArg*)â, declared with
attribute warn_unused_result [-Wunused-result]
         Band->RasterIO( GF_Read, 0, iLine,nXSize, 1, inScanline, nXSize,
1, GDT_Float32,0, 0 );

                   ^
applymask.cpp:64:101: warning: ignoring return value of âCPLErr
GDALRasterBand::RasterIO(<wbr>GDALRWFlag, int, int, int, int, void*, int,
</pre>
        </blockquote>
        <pre>int,
</pre>
        <blockquote type="cite">
          <pre>GDALDataType, GSpacing, GSpacing, GDALRasterIOExtraArg*)â, declared with
attribute warn_unused_result [-Wunused-result]
         maskBand->RasterIO( GF_Read, 0, iLine,nXSize, 1, maskScanline,
nXSize, 1, GDT_Float32,0, 0 );

                         ^
applymask.cpp:75:94: warning: ignoring return value of âCPLErr
GDALRasterBand::RasterIO(<wbr>GDALRWFlag, int, int, int, int, void*, int,
</pre>
        </blockquote>
        <pre>int,
</pre>
        <blockquote type="cite">
          <pre>GDALDataType, GSpacing, GSpacing, GDALRasterIOExtraArg*)â, declared with
attribute warn_unused_result [-Wunused-result]
   outBand->RasterIO( GF_Write, 0, iLine,nXSize, 1, outScanline, nXSize,
</pre>
        </blockquote>
        <pre>1,
</pre>
        <blockquote type="cite">
          <pre>GDT_Float32,0, 0 );

</pre>
        </blockquote>
        <pre>The warning says it all. You use GDALRasterBand::RasterIO() but do not
check
the return value. You probably don't get it on your local machine since it
might use an older version of GDAL where this method wasn't tagged with the
warn_unused_result attribute.

The right fix is to check the return value and do something appropriate.
Or you
can silence the warning by enclosing the calls in CPL_IGNORE_RET_VAL(...)

</pre>
        <blockquote type="cite">
          <pre>Also, my python code does not import all refered libraries including
</pre>
        </blockquote>
        <pre>gdal.
</pre>
        <blockquote type="cite">
          <pre>  File "/usr/local/bin/CD4DEM.py", line 12, in <module>
    import gdalImportError: No module named gdal
</pre>
        </blockquote>
        <pre>Did you install the python-gdal package ?

Even

--
Spatialys - Geospatial professional services
<a class="m_8526735998329115618moz-txt-link-freetext" href="http://www.spatialys.com" target="_blank">http://www.spatialys.com</a>

</pre>
      </blockquote>
      <pre></pre>
      <br>
      <fieldset class="m_8526735998329115618mimeAttachmentHeader"></fieldset>
      <br>
      </div></div><pre>______________________________<wbr>_________________
UbuntuGIS mailing list
<a class="m_8526735998329115618moz-txt-link-abbreviated" href="mailto:Ubuntu@lists.osgeo.org" target="_blank">Ubuntu@lists.osgeo.org</a>
<a class="m_8526735998329115618moz-txt-link-freetext" href="http://lists.osgeo.org/mailman/listinfo/ubuntu" target="_blank">http://lists.osgeo.org/<wbr>mailman/listinfo/ubuntu</a>
<a class="m_8526735998329115618moz-txt-link-freetext" href="http://trac.osgeo.org/ubuntugis/wiki" target="_blank">http://trac.osgeo.org/<wbr>ubuntugis/wiki</a></pre><span class="HOEnZb"><font color="#888888">
    </font></span></blockquote><span class="HOEnZb"><font color="#888888">
    <br>
    <p><br>
    </p>
    <pre class="m_8526735998329115618moz-signature" cols="72">-- 
Angelos Tzotsos, PhD
OSGeo Charter Member
<a class="m_8526735998329115618moz-txt-link-freetext" href="http://users.ntua.gr/tzotsos" target="_blank">http://users.ntua.gr/tzotsos</a></pre>
  </font></span></div>

</blockquote></div><br></div>