Re: [gdal-dev] How to add GDAL as a dependency to a Python package?

2016-04-12 Thread Luí­s de Sousa
Hello again, Still investigating this subject, I tried today to directly install pygal from PiPY and it fails [0]. I believe the dependency is correctly declared but that something is wrong with pygal package. Cheers, Luís [0] http://pastebin.com/gzrimLvB___

Re: [gdal-dev] Bad Date Handling

2016-04-12 Thread Even Rouault
Le mardi 05 avril 2016 21:09:01, Even Rouault a écrit : > Le mardi 05 avril 2016 20:56:07, Paul Ramsey a écrit : > > Hey all, > > > > We've had a client working with dodgy data who would like an option to > > avoid incompatible date mangling when reading bad data. Basically, OGR > > will consume s

Re: [gdal-dev] How to consider data types when implementing IWriteBlock

2016-04-12 Thread Even Rouault
Le mardi 12 avril 2016 17:10:41, jramm a écrit : > Hi > I am adding write support for the Northwood Grid (Vertical Mapper/MapInfo > format) driver. > This format only allows 32 bit float as the datatype, and to make things > more tricky it actually stores this on disk as either 16 or 32 bit ints, >

Re: [gdal-dev] Rectify TIFF: Difference between applied GCP and warped image

2016-04-12 Thread Jukka Rahkonen
Bischof, Richard lgln.niedersachsen.de> writes: > > Hello there, > > I`m trying to rectify a lots of dataset in tiff format using gdal. I'am using Windows 7 Professional, gdal > 1.11.2 . > > My steps / commands are: > ... SNIP ... > F:\Projekt\gross\106300.tif D:/temp.tif > > 2) Warp the im

[gdal-dev] Rectify TIFF: Difference between applied GCP and warped image

2016-04-12 Thread Bischof, Richard
Hello there, I`m trying to rectify a lots of dataset in tiff format using gdal. I'am using Windows 7 Professional, gdal 1.11.2 . My steps / commands are: 1) Apply the GCP's using gdal_translate gdal_translate -of GTiff -gcp 5734.32993305 4261.44895879 611521.018414 5787817.29357 -gcp 572.48513

[gdal-dev] How to consider data types when implementing IWriteBlock

2016-04-12 Thread jramm
Hi I am adding write support for the Northwood Grid (Vertical Mapper/MapInfo format) driver. This format only allows 32 bit float as the datatype, and to make things more tricky it actually stores this on disk as either 16 or 32 bit ints, using scaling rules. The current read driver applies the s

Re: [gdal-dev] How to add GDAL as a dependency to a Python package?

2016-04-12 Thread Jason Roberts
Luís, gdal-dev is the correct list. By “they”, I mean the maintainers of GDAL’s Python bindings; AFAIK they all follow gdal-dev. Best, Jason From: Luí­s de Sousa [mailto:luis.de.so...@protonmail.ch] Sent: Tuesday, April 12, 2016 9:30 AM To: Jason Roberts ; gdal-dev@lists.osgeo.org Subject: RE:

Re: [gdal-dev] How to add GDAL as a dependency to a Python package?

2016-04-12 Thread Luí­s de Sousa
Thanks for the reply Jason. I gather "they" refers to whomever I need to contact about this issue. Who are "they" then? Luís Sent from [ProtonMail](https://protonmail.ch), encrypted email based in Switzerland. Original Message Subject: RE: [gdal-dev] How to add GDAL as a d

[gdal-dev] How to add GDAL as a dependency to a Python package?

2016-04-12 Thread Luí­s de Sousa
Dear all, I am trying to package a Python script that uses GDAL for PyPI. I started by including a direct reference in my setup.py: install_requires=['GDAL==1.11.2'], This way the package failed to install in my test virtual environment: extensions/gdal_wrap.cpp:2855:22: fatal error: cpl_po

Re: [gdal-dev] Map algebra

2016-04-12 Thread Ari Jolma
12.04.2016, 12:47, alex kirjoitti: I wasn't trying to suggest to do away with the block level stuff, I can see how it makes your code efficient (and more efficient than the row-by-row iteration that I am using). However, I did notice that for many functions this part of the code is generic an

Re: [gdal-dev] Map algebra

2016-04-12 Thread alex
>-Original Message- >From: gdal-dev [mailto:gdal-dev-boun...@lists.osgeo.org] On Behalf Of Ari >Jolma >Sent: 12 April 2016 07:10 >To: gdal-dev@lists.osgeo.org >Subject: Re: [gdal-dev] Map algebra > > >11.04.2016, 19:30, alex kirjoitti: >> >> The curse of dimensionality comes in at the poi