[gdal-dev] The GeoTransform Array

2012-11-20 Thread David Strip
The GDAL API tutorial describes this array as: adfGeoTransform[0]/* top left x */ adfGeoTransform[1]/* w-e pixel resolution */ adfGeoTransform[2]/* rotation, 0 if image is "north up" */ adfGeoTransform[3]/* top left y */ adfGeoTransform[4]/* rotation, 0 if image is "north up"

Re: [gdal-dev] building overviews and ignoring NODATA?

2012-11-20 Thread Etienne Tourigny
Hi Even thanks for the info - I created a ticket (#4904) so it's not forgotten and added sprice in CC - although he hasn't seemingly been active in gdal for a few years. Etienne On Tue, Nov 20, 2012 at 8:36 PM, Even Rouault wrote: > Le mardi 20 novembre 2012 21:14:12, Etienne Tourigny a écrit :

Re: [gdal-dev] building overviews and ignoring NODATA?

2012-11-20 Thread Even Rouault
Le mardi 20 novembre 2012 21:14:12, Etienne Tourigny a écrit : > Hi all, > > I just noticed that GDALBuildOverViews disregards all nodata pixels. > While this is useful in many cases, sometimes it can be desired to NOT > overlook nodata pixels. > > For example, I have a raster of sparse data (man

Re: [gdal-dev] How to read catalog file

2012-11-20 Thread Frank Warmerdam
On 12-11-19 09:29 PM, Nikhil Sai Parupalli wrote: Hi All, I have developed an application on VB.Net with GDAL as interface to read S57 dataset. Everything is fine , here I have to read some information form S57 catalog file . I have tried using stream reader in VB.net, but unable to fetch the v

Re: [gdal-dev] SQLite Driver and non-spatial tables

2012-11-20 Thread Kyle Shannon
For the record, in case anyone is interested, it appears setting SQLITE_LIST_ALL_TABLES=YES appears to allow me access to non-spatial tables. I didn't find any documentation on the format page though. On Tue, Nov 13, 2012 at 1:44 PM, Kyle Shannon wrote: > I have a Spatialite enabled SQLite file

[gdal-dev] building overviews and ignoring NODATA?

2012-11-20 Thread Etienne Tourigny
Hi all, I just noticed that GDALBuildOverViews disregards all nodata pixels. While this is useful in many cases, sometimes it can be desired to NOT overlook nodata pixels. For example, I have a raster of sparse data (many nodata pixels), that I am using gdaladdo to make down-sampled versions. The

[gdal-dev] OpenJPEG 2.0 released

2012-11-20 Thread Even Rouault
Hi, Just to inform you that the OpenJPEG project has just released OpenJPEG 2.0.0. GDAL users of GDAL 1.10dev that need support for JPEG2000 can (must) now rely on a released version, and no longer on the openjpeg SVN v2 branch (which has been removed by the way) Even _

Re: [gdal-dev] Create a ISpatialReference from an SpatialReference

2012-11-20 Thread rburhum
ArcObjects to OGR: https://github.com/rouault/gdal/blob/trunk/gdal/ogr/ogrsf_frmts/arcobjects/aoutils.cpp#L276 OGR to ArcObjects: https://github.com/RBURHUM/arcgis-ogr/blob/master/src/OGRPlugin/OGRPlugin/ogrplugin_utils.cs#L209 Best, - Ragi -- View this message in context: http://osgeo-org.1

Re: [gdal-dev] gdal 1.9 path problem when I using special characters

2012-11-20 Thread Konstantin Baumann
Hi, we were running into the same issues and solved it by this workaround: use Windows 8.3 filenames and paths for ECW files: // WORKAROUND for either a GDAL issue or an issue within the ECW library used by GDAL: // when opening ECW files with unicode chars in the filename or p

[gdal-dev] which formats support subdatasets?

2012-11-20 Thread Etienne Tourigny
Hi I'd like to be able to identify which raster and vector formats support subdatasets (or multipl layers). A quick grep search (grep SUBDATASETS frmts/*/*.cpp) showed which GDAL drivers can report subdatasets. Am I missing something? I think it would be nice to include this info in the driver s