Re: [gdal-dev] Reminder: GDAL 1.11.0RC1 planned to be packaged tomorrow evening

2014-04-14 Thread Even Rouault
Le mardi 15 avril 2014 00:05:30, Wolf Bergenheim a écrit : > Hi Even, > > On Thu, Apr 10, 2014 at 9:01 PM, Even Rouault > > wrote: > > I still intend packaging 1.11.0RC1 tomorrow evening if that's OK (there > > have > > been a few changes since beta1, but we can probably try a RC1 directly). > >

Re: [gdal-dev] Reminder: GDAL 1.11.0RC1 planned to be packaged tomorrow evening

2014-04-14 Thread Even Rouault
Le mardi 15 avril 2014 00:03:27, Martin Landa a écrit : > Hi, > > 2014-04-14 23:54 GMT+02:00 Martin Landa : > > [...] > > > I will prepare sample test file later tomorrow, Martin > > The full data file [1]. Reproducible by: > > ogrinfo 20140331_OB_564567_UKSH.xml.gz StavebniObjekty > Had to op

Re: [gdal-dev] Reminder: GDAL 1.11.0RC1 planned to be packaged tomorrow evening

2014-04-14 Thread Wolf Bergenheim
Hi Even, On Thu, Apr 10, 2014 at 9:01 PM, Even Rouault wrote: > > I still intend packaging 1.11.0RC1 tomorrow evening if that's OK (there > have > been a few changes since beta1, but we can probably try a RC1 directly). > Please tell if you have something almost ready or if some critical issues >

Re: [gdal-dev] Reminder: GDAL 1.11.0RC1 planned to be packaged tomorrow evening

2014-04-14 Thread Martin Landa
Hi, 2014-04-14 23:54 GMT+02:00 Martin Landa : [...] > I will prepare sample test file later tomorrow, Martin The full data file [1]. Reproducible by: ogrinfo 20140331_OB_564567_UKSH.xml.gz StavebniObjekty Had to open data source read-only. INFO: Open of `20140331_OB_564567_UKSH.xml.gz' u

Re: [gdal-dev] Reminder: GDAL 1.11.0RC1 planned to be packaged tomorrow evening

2014-04-14 Thread Martin Landa
Hi, 2014-04-14 10:55 GMT+02:00 Martin Landa : >>> In this case I would ask you for few days (two/three) postpone. I am >>> slowly finishing the initial support for GML-based Czech format >>> (VFR/RUIAN). Would it be possible? Thanks in advance... Martin >> >> ok, no problem. > > I will commit rel

Re: [gdal-dev] Problems with large ASTER GeoTIFF

2014-04-14 Thread Etienne Tourigny
On Mon, Apr 14, 2014 at 11:16 AM, Nicole Stoffels wrote: > Dear Gdal-List, > > I have a large ASTER file (downloaded from http://www.eea.europa.eu/data- > and-maps/data/eu-dem#tab-european-data) in the GeoTIFF-format. It is > compressed with LZW. What I want to do is: > > 1. unpack it > 2. sepera

Re: [gdal-dev] Problems with large ASTER GeoTIFF

2014-04-14 Thread Jean-Roc Morreale
Hi, You can do all these operation in one command : gdal_translate -of PNG -srcwin xoff yoff xsize ysize "input.tif" "output.png" Are you sure of your scrwin parameters ? Le 2014-04-14 16:16, Nicole Stoffels a écrit : Dear Gdal-List, I have a large ASTER file (downloaded from http://www.ee

Re: [gdal-dev] How to use OGROpen with WFS?

2014-04-14 Thread Etienne Tourigny
you probably need to include the entire string, including the WFS: prefix On Mon, Apr 14, 2014 at 10:53 AM, David Tran wrote: > Hi > > I tried this: > > OGRRegisterAll(); >> sourceName = "http://maps.zh.ch/wfs/FnsNSWFS";; >> sourceData = OGROpen( sourceName.c_str(), 0, NULL ); >>

Re: [gdal-dev] How to use OGROpen with WFS?

2014-04-14 Thread Even Rouault
Selon David Tran : > Hi > > I tried this: > > > OGRRegisterAll(); > > sourceName = "http://maps.zh.ch/wfs/FnsNSWFS";; > > sourceData = OGROpen( sourceName.c_str(), 0, NULL ); > > if(sourceData == NULL) { > > printf("Open failed.\n"); > > exit(1); > > } > > and i

[gdal-dev] Problems with large ASTER GeoTIFF

2014-04-14 Thread Nicole Stoffels
Dear Gdal-List, I have a large ASTER file (downloaded from http://www.eea.europa.eu/data-and-maps/data/eu-dem#tab-european-data) in the GeoTIFF-format. It is compressed with LZW. What I want to do is: 1. unpack it 2. seperate a smaller region from it 3. convert this regional GeoTIFF to a PNG

[gdal-dev] How to use OGROpen with WFS?

2014-04-14 Thread David Tran
Hi I tried this: OGRRegisterAll(); sourceName = "http://maps.zh.ch/wfs/FnsNSWFS";; sourceData = OGROpen( sourceName.c_str(), 0, NULL ); if(sourceData == NULL) { printf("Open failed.\n"); exit(1); } and it ends with: ERROR 4: Failed to read GeoJSON data Op