[gdal-dev] How to draw using bilinear interpolation algorithm with Gdal

2014-09-23 Thread netcadturgay
I want to draw a raster file using bilinear interpolation algorithm with Gdal. How can I do this? -- View this message in context: http://osgeo-org.1560.x6.nabble.com/How-to-draw-using-bilinear-interpolation-algorithm-with-Gdal-tp5163491.html Sent from the GDAL - Dev mailing list archive at Nab

[gdal-dev] Compile Gdal 1.9 with "WIN64=YES" setting

2013-01-31 Thread netcadturgay
I have build errors when I try to build to the Gdal 1.9 library for 64 bits. How can I solve this problem? Or how can I build the gdal for 64 bits? Thanks for your helps Error: Creating library gdal_i.lib and object gdal_i.exp LINK : error LNK2001: unresolved external symbol OGRFeatureStylePull

[gdal-dev] Gdal 1.9 read problem

2012-12-12 Thread netcadturgay
I want to tile a file as scale independent. Also because output projection may not be as same as source projection, I use to the AutoCreateWarpedVRT function. But it reads the file very slow. Can you help me about this problem? Or is there any other solution? *Example Code:* *Fast:* Dataset ds = G

[gdal-dev] Gdal C# Async Read

2012-12-06 Thread netcadturgay
Is there any solution for reading a file with multi-thread access? Also every thread will read a different area. -- View this message in context: http://osgeo-org.1560.n6.nabble.com/Gdal-C-Async-Read-tp5021363.html Sent from the GDAL - Dev mailing list archive at Nabble.com. ___

[gdal-dev] gdal 1.9 path problem when I using special characters

2012-11-19 Thread netcadturgay
I can not read the ECW files if filename contains special characters(ş,İ,ğ etc.). I use gdal 1.9 library including ERDAS ECW Read-Write SDK. Also I tried to set GDAL_FILENAME_IS_UTF8=NO but it does not work. Can you help me about this problem? -- View this message in context: http://osgeo-org.

[gdal-dev] Gdal - read starting left-bottom

2012-11-14 Thread netcadturgay
my program reads a tif file starting left-top point. But I want to read starting left-bottom(LowerLeft). How can I solve this problem? Example: band.ReadRaster(0, 0, 500, 500, pixels, 500, 500, 0, 0); -- View this message in context: http://osgeo-org.1560.n6.nabble.com/Gdal-read-starting-left

[gdal-dev] write projection to ECW file in Gdal 1.9

2012-10-03 Thread netcadturgay
I use Gdal 1.9 library including ERDAS R-W SDK 4.2 and when I try to write projection to ECW file(SetProjection) in update mode, some projections can written successfully. But some projections cannot written(cannot update to the file). Any solution about this problem? Also when I try to set same p

Re: [gdal-dev] Gdal 1.9 and ERDAS Read-Write SDK write projection

2012-10-02 Thread netcadturgay
Yes, I close the dataset properly and now I found problem source. If I try to set the "Geodesic WGS84", it updates successfully. But if I try to set the custom projection, it does not update? *Custom WKT* PROJCS["(UTM)Universal Transvers Merkator 6º",GEOGCS["EUROPEAN 1950",DATUM["European_Datum_19

[gdal-dev] Gdal 1.9 and ERDAS Read-Write SDK write projection

2012-10-02 Thread netcadturgay
I open an ECW file in Update mode. Then I set to the projection information(with SetProjection method) but ecw file does not change. How can I solve this problem? -- View this message in context: http://osgeo-org.1560.n6.nabble.com/Gdal-1-9-and-ERDAS-Read-Write-SDK-write-projection-tp5005832.ht

Re: [gdal-dev] gdal 1.8 and ERDAS ECW Read-Write SDK problem

2012-09-26 Thread netcadturgay
Hi Even Rouault I have builded both Gdal 1.8 library and Gdal 1.9 library including ERDAS read-write sdk. Results: Gdal 1.9 --- ReadOnly-> OK Update -> OK CreateCopy -> OK Create -> NOT OK Gdal 1.8 ReadOnly-> OK Update -> NOT OK CreateCopy -> OK Create

[gdal-dev] gdal 1.8 and ERDAS ECW Read-Write SDK problem

2012-09-26 Thread netcadturgay
I have builded Gdal 1.8 library with "ERDAS ECWJP2 SDK Desktop Read-Write" and build is ended with a successfull. But when I try to open a ECW file in update mode, I have an error. Error: The ECW driver does not support update access to existing datasets. Any suggesstion about this problem ? I ha