Re: [gdal-dev] Problems packaging with py2exe

2014-08-14 Thread Luke
Can you post your setup.py? Hard to tell what's going on without it. Also, I have had good results with pyinstaller, it picks up gdal dependencies automatically and is as simple as running python pyinstaller.py somescript.py (or python pyinstaller.py --onefile somescript.py if you want a single ou

Re: [gdal-dev] Problems packaging with py2exe

2014-08-14 Thread Ivan Lucena
Dr. Armi, > Date: Thu, 14 Aug 2014 14:44:58 +0200 > From: armin.r.schm...@gmail.com > To: gdal-dev@lists.osgeo.org > Subject: [gdal-dev] Problems packaging with py2exe > > I am trying to package my GDAL/OGR Python project with py2exe so that > the users don't need to do a separate GDAL installat

Re: [gdal-dev] GDAL - GDB issue

2014-08-14 Thread Scott Rowles
Even, No. Where do I find/download the ogrInfo utility. I will try that! scott > Date: Thu, 14 Aug 2014 19:25:40 +0200 > From: even.roua...@spatialys.com > To: scott_row...@hotmail.com > CC: gdal-dev@lists.osgeo.org > Subject: Re: [gdal-dev] GDAL - GDB issue > > Selon Scott Rowles : > > > Hi,

Re: [gdal-dev] GDAL - GDB issue

2014-08-14 Thread Even Rouault
Selon Scott Rowles : > Even, > No. Where do I find/download the ogrInfo utility. I will try that! It should be included in every binary distribution of gdal (e.g. http://gisinternals.com/sdk/). Or if you compile it from source. It is one of the many utilities coming with the GDAL library. > sc

Re: [gdal-dev] GDAL - GDB issue

2014-08-14 Thread Even Rouault
Selon Scott Rowles : > Hi, > I have an implementation with C# using GDAL 1.11 binaries. According to the > documentation it should process GDB files either as a .zip file, as a .gdb > folder or as a .gdbtalbe individually. > I have tried all 3 of them and each one gives me an ogc.Open, cannot ope

[gdal-dev] GDAL - GDB issue

2014-08-14 Thread Scott Rowles
Hi, I have an implementation with C# using GDAL 1.11 binaries. According to the documentation it should process GDB files either as a .zip file, as a .gdb folder or as a .gdbtalbe individually. I have tried all 3 of them and each one gives me an ogc.Open, cannot open this file type error. Is th

Re: [gdal-dev] querry in updating attribute values using ogrdatasource

2014-08-14 Thread Chaitanya kumar CH
Siva, OGR SQL dialect doesn't support updates. Use sqlite dialect. You also need to update GDAL to version 1.10. http://www.gdal.org/ogr_sql_sqlite.html On 14 Aug 2014 20:17, "SIVA RAMA KRISHNA" wrote: > Hello, > > I am trying to update shape file with attribute values .I am performing > follo

[gdal-dev] querry in updating attribute values using ogrdatasource

2014-08-14 Thread SIVA RAMA KRISHNA
Hello, I am trying to update shape file with attribute values .I am performing following functionality. QFileInfo table1(_mActiveLayer); //_mActive Layer is name of file opened QString tablename1; tablename1=table1.baseName(); reader = OGRSFDriverRegistrar::Open(_mActiveLayer.toLatin1().data(),

[gdal-dev] Problems packaging with py2exe

2014-08-14 Thread Armin Schmidt
I am trying to package my GDAL/OGR Python project with py2exe so that the users don't need to do a separate GDAL installation, but I can't get it to work. As an example, this simple two-line program results in the error message below when the final .exe file is called. import osgeo.gdal as g