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
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
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,
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
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
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
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
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(),
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