Hi there,
Is there any particular reason why that this code in Java results nulls
Driver driver = gdal.GetDriver(1);
String a = driver.GetMetadataItem(gdalconstConstants.DCAP_CREATE);
String b = driver.GetMetadataItem(gdalconstConstants.DCAP_CREATECOPY);
System.out.println(a + " - " + b);
null -
Importing the gdal bindings in python seems to disable setting a non-zero
exit code. Running the following batch file demonstrates the issue:
Running the following batch file demonstrates the issue:
@echo off
set pycmd=python -c "from osgeo import gdal;import sys;sys.exit(1)"
echo %pycmd%
%pycmd
Selon Giuseppe Amatulli :
> Hi all,
> I solved the down reported issues. I change -ot Float32 to -ot
> Float64 and it works.
> Anyway Float32 should be enough to store the max value of
> 560459513003129 < 3.4E38
> but probably during the multi-core several values are stored in the
> same array an
Hi all,
I solved the down reported issues. I change -ot Float32 to -ot
Float64 and it works.
Anyway Float32 should be enough to store the max value of
560459513003129 < 3.4E38
but probably during the multi-core several values are stored in the
same array and it needs Float64.
ciao ciao
Giuseppe
Selon DmitriyS :
> Excuse me for the question, I am a beginner at GDAL development and have a
> problem. I develop GUI (c++) application for a reprojection, using
> "gdalwarp" (special class is written based on this utility). I wish to
> perform warp operation for each input images in separate thr
Excuse me for the question, I am a beginner at GDAL development and have a
problem. I develop GUI (c++) application for a reprojection, using
"gdalwarp" (special class is written based on this utility). I wish to
perform warp operation for each input images in separate threads
(...beginthreadex(...
Selon Neelima Emmani :
> Hi All,
> I am trying to check, if there is an overlap between two area
> featuretypes.Ex: LNDARE and OBSTRN. Actually in my dataset I have an overlap
> but my code pasted below is returning false value for overlap. Can anyone
> help me out. Here we are trying to code with