Re: [gdal-dev] Geotiff FillEmptyTiles with no data value?

2016-05-10 Thread jramm
Hi I have made changes to FillEmptyTiles so that if nodata is set, then it will always fill with nodata, otherwise 0. I have attached the raw diff...I have no idea how to submit a change request/review etc? fillempty_nodata.diff

Re: [gdal-dev] Minimum supported C and C++ standards

2016-05-10 Thread Even Rouault
> I'd say that moving GDAL to GCC 5 and C++11 would be possible but tricky > on RHEL. > A developer still on RHEL 6 can do it and would be able to > put up with the effort considering that they are using such an old system > However a *user* on RHEL 7 has the latest and greatest system available >

[gdal-dev] VRT and M-dimension - any example?

2016-05-10 Thread Jukka Rahkonen
Hi, Release notes https://trac.osgeo.org/gdal/wiki/Release/2.1.0-News announce that RFC 61: Support for measured geometries is implemented in VRT. However, this is not mentioned in http://www.gdal.org/drv_vrt.html. I would like to improve the documentation but before I can do that I need to unders

Re: [gdal-dev] VRT and M-dimension - any example?

2016-05-10 Thread Even Rouault
Le mardi 10 mai 2016 14:38:01, Jukka Rahkonen a écrit : > Hi, > > Release notes https://trac.osgeo.org/gdal/wiki/Release/2.1.0-News announce > that RFC 61: Support for measured geometries is implemented in VRT. > However, this is not mentioned in http://www.gdal.org/drv_vrt.html. I > would like to

Re: [gdal-dev] Geotiff FillEmptyTiles with no data value?

2016-05-10 Thread Even Rouault
Le mardi 10 mai 2016 09:22:19, jramm a écrit : > Hi > I have made changes to FillEmptyTiles so that if nodata is set, then it > will always fill with nodata, otherwise 0. > > I have attached the raw diff...I have no idea how to submit a change > request/review etc? > > fillempty_nodata.diff >

Re: [gdal-dev] VRT and M-dimension - any example?

2016-05-10 Thread Even Rouault
Le mardi 10 mai 2016 14:43:16, Even Rouault a écrit : > Le mardi 10 mai 2016 14:38:01, Jukka Rahkonen a écrit : > > Hi, > > > > Release notes https://trac.osgeo.org/gdal/wiki/Release/2.1.0-News > > announce that RFC 61: Support for measured geometries is implemented in > > VRT. However, this is no

[gdal-dev] Python interface to wrapdateline

2016-05-10 Thread DeTracey, Brendan
Hi, Is there any way to access the wrap dateline capabilities of OGR from the Python interface? For example how to split the following polygon: from osgeo import ogr, osr srs = osr.SpatialReference() srs.ImportFromEPSG(4326) p = ogr.CreateGeometryFromWkt('POLYGON ((160 1, -160 1, -160 -1, 160 -

Re: [gdal-dev] Python interface to wrapdateline

2016-05-10 Thread Even Rouault
Le mardi 10 mai 2016 16:31:44, DeTracey, Brendan a écrit : > Hi, > > Is there any way to access the wrap dateline capabilities of OGR from the > Python interface? For example how to split the following polygon: > > from osgeo import ogr, osr > srs = osr.SpatialReference() > srs.ImportFromEPSG(432

Re: [gdal-dev] Python interface to wrapdateline

2016-05-10 Thread Sean Gillies
Hi Brendan, On Tue, May 10, 2016 at 8:45 AM, Even Rouault wrote: > Le mardi 10 mai 2016 16:31:44, DeTracey, Brendan a écrit : > > Hi, > > > > Is there any way to access the wrap dateline capabilities of OGR from the > > Python interface? For example how to split the following polygon: > > > > fr