Re: [gdal-dev] Interoperability issues with deleted features in shapefiles

2016-01-20 Thread Even Rouault
Le mercredi 20 janvier 2016 20:56:27, Jan Heckman a écrit : > Hi Even, everyone, > Sorry for not including the list - my mistake. > I've experimented with larger shapefiles than 2 GB but not necessarily in > combination with editing. > I'll do a few tests when I get around to it. Doesn't the .shx f

Re: [gdal-dev] Mixed coordinate systems in VRT?

2016-01-20 Thread Even Rouault
Le mercredi 20 janvier 2016 22:37:41, Jim Lacy a écrit : > I have an area of interest that is split across two UTM zones. My desired > end result is a single stitched, clipped, and re-projected image in a > local coordinate system. > > My usual workflow is to build a VRT that contain only the inp

[gdal-dev] Mixed coordinate systems in VRT?

2016-01-20 Thread Jim Lacy
I have an area of interest that is split across two UTM zones. My desired end result is a single stitched, clipped, and re-projected image in a local coordinate system. My usual workflow is to build a VRT that contain only the input tiles that touch the area of interest. Normally that works g

[gdal-dev] ogr2ogr to update existing table

2016-01-20 Thread Ivan Lucena
Hi, Is there a way to select one or two fields from a input data source to update specific fields of an existing output data source? Let's say I want to get the values from a prticular field of the input data source and the geometry to update a specific field and the geometry of an existing

Re: [gdal-dev] Interoperability issues with deleted features in shapefiles

2016-01-20 Thread Jan Heckman
Hi Even, everyone, Sorry for not including the list - my mistake. I've experimented with larger shapefiles than 2 GB but not necessarily in combination with editing. I'll do a few tests when I get around to it. Doesn't the .shx file get rewritten anyway? There could be some time-consuming actions a

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Jeff McKenna
On 2016-01-20 7:24 AM, Gane R wrote: Is that I have to build the sqlite3 separately and then build gdal, does gdal have an sqlite internally like png (libpng) if so how can it be used. Thanks You must build sqlite separately. For MS4W builds (www.ms4w.com) we start by building sqlite, and

Re: [gdal-dev] Issue with ReadBlock

2016-01-20 Thread trewdbal
Indeed, I was trying to read a uint16 imagery using a float32 array. Thanks for you speedy assistance. -- View this message in context: http://osgeo-org.1560.x6.nabble.com/Issue-with-ReadBlock-tp5246218p5246310.html Sent from the GDAL - Dev mailing list archive at Nabble.com.

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Gane R
Is that I have to build the sqlite3 separately and then build gdal, does gdal have an sqlite internally like png (libpng) if so how can it be used. Thanks On Wed, Jan 20, 2016 at 3:42 PM, Gane R wrote: > I was looking at the makefile.vc and docs and visual studio reference I > was not able to

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Gane R
I was looking at the makefile.vc and docs and visual studio reference I was not able to create sqlite3_i.lib do I miss something apart from linker optimization flags cl /c sqlite3.c link /nologo /dll sqlite3.obj /out:sqlite3.dll /implib:sqlite3_i.lib My goal is make gdal access geopackage so I wa

Re: [gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Even Rouault
Le mercredi 20 janvier 2016 09:56:20, Gane R a écrit : > Where do I get the sqlite3 with include header files, stub library > sqlite3_i.lib and dll. > > Do I have to build it, If so I tried the following > > I have a sql-amalgation version. > I tried to look the documentation on sqlite website fo

Re: [gdal-dev] Issue with ReadBlock

2016-01-20 Thread Even Rouault
Le mercredi 20 janvier 2016 08:26:51, trewdbal a écrit : > Hi Folks, > > I'm trying to read an image using ReadBlock, but the array is not filled > with raster values. > It works with RasterIO. > > The code below is copied from the GDAL doc ( page >

[gdal-dev] Building gdal with sqlite3 for windows

2016-01-20 Thread Gane R
Where do I get the sqlite3 with include header files, stub library sqlite3_i.lib and dll. Do I have to build it, If so I tried the following I have a sql-amalgation version. I tried to look the documentation on sqlite website for creating a sqlite3.dll using the following command cl sqlite3.c -l