[gdal-dev] Re: Rasterlite / WSGI problem

2011-11-29 Thread Radim Blazek
I'll reply to myself in case anyone have the same problem. Apache is linked to SQLite. SQLite from deb is not compiled with rtree. WSGI is started as Apache fork, so the process has SQLite (from /usr/lib/) already loaded and later explicit loading of SQLite lib with rtree cannot help. I solved it

Re: [gdal-dev] .ovr files and Lanczos

2011-11-29 Thread Even Rouault
Le mardi 29 novembre 2011 18:42:27, Eli Adam a écrit : > Are .ovr files just tifs with a different file extension? > > If so, could you use, gdalwarp -tr # # -r lanczos output.ovr? Yes, basically .ovr files are just tifs file (actually, I believe it could be any raster type recognized by GDAL).

Re: [gdal-dev] python bindings: 2x ds.WriteRaster?

2011-11-29 Thread Even Rouault
Le mardi 29 novembre 2011 12:03:26, Vincent Schut a écrit : > On 11/29/2011 11:57 AM, Even Rouault wrote: > > Selon Vincent Schut: > >> Hi list, > >> > >> Remembering a recent message mentioning the existence of both > >> 'ReadArray' and 'WriteArray' on the dataset level of the python swig > >> bi

Re: [gdal-dev] .ovr files and Lanczos

2011-11-29 Thread Eli Adam
Are .ovr files just tifs with a different file extension? If so, could you use, gdalwarp -tr # # -r lanczos output.ovr? Eli On Mon, Nov 28, 2011 at 10:57 PM, Chaitanya kumar CH wrote: > Robb, > > Note that the quality is effected by the levels you choose. > Can you provide a small part of the i

Re: [gdal-dev] python bindings: 2x ds.WriteRaster?

2011-11-29 Thread Vincent Schut
On 11/29/2011 11:57 AM, Even Rouault wrote: Selon Vincent Schut: Hi list, Remembering a recent message mentioning the existence of both 'ReadArray' and 'WriteArray' on the dataset level of the python swig bindings, I opened up my gdal.py (svn rev. 23438), and found this: There is a ds.ReadAsA

Re: [gdal-dev] python bindings: 2x ds.WriteRaster?

2011-11-29 Thread Even Rouault
Selon Vincent Schut : > Hi list, > > Remembering a recent message mentioning the existence of both > 'ReadArray' and 'WriteArray' on the dataset level of the python swig > bindings, I opened up my gdal.py (svn rev. 23438), and found this: > > There is a ds.ReadAsArray() line 730 > There is no ds

[gdal-dev] python bindings: 2x ds.WriteRaster?

2011-11-29 Thread Vincent Schut
Hi list, Remembering a recent message mentioning the existence of both 'ReadArray' and 'WriteArray' on the dataset level of the python swig bindings, I opened up my gdal.py (svn rev. 23438), and found this: There is a ds.ReadAsArray() There is no ds.WriteArray() There are *2* defined function