Re: [gdal-dev] Linking error when building Informix OGR driver

2020-08-26 Thread Even Rouault
Jeremy, > I'm getting linking issues trying to build the Informix driver. Fixed per https://github.com/OSGeo/gdal/commit/ 91416c6c69ac6a768893bfc8d2a447c2e146b4ab Even -- Spatialys - Geospatial professional services http://www.spatialys.com ___

Re: [gdal-dev] Wrong sliding when AREA_OR_POINT metadata is edited?

2020-08-26 Thread Even Rouault
Jukka, > It is late and I feel fuzzy but shouldn't the pixel_is_point variant has > smaller easting, greater northing instead, thus (-180,0439453, > 90,04394531)? > > The images are georeferenced with tiepoints/GCPs, perhaps it adds something > to the soup? I concur with your analysis. The

[gdal-dev] Wrong sliding when AREA_OR_POINT metadata is edited?

2020-08-26 Thread Rahkonen Jukka (MML)
Hi, See this and find test data and example commands https://github.com/opengeospatial/OGC-API-Sprint-August-2020/issues/18. If PixelIsPoint image has these GeoTIFF tags Geotiff_Information: Version: 1 Key_Revision: 1.0 Tagged_Information: ModelTiepointTag (8,3): 0

Re: [gdal-dev] Can a GepPDF be generated using a Composition file from command line?

2020-08-26 Thread Ian Mayo
aah, a team member has directed me to where this question got asked (& answered) a few days ago: https://lists.osgeo.org/pipermail/gdal-dev/2020-August/052505.html On Wed, 26 Aug 2020, 14:03 Ian Mayo, wrote: > Hello Andrew, > thanks for the (very) prompt response. > > I'm aware of the Python

[gdal-dev] Overviews are not taken into account while reading with specified resampling method

2020-08-26 Thread Denis Rykov
I have remote *.vrt raster and *.vrt.ovr accessible through HTTP. When I run the following script with rasterio: with rasterio.open("http://*.vrt";) as src: image = src.read(indexes=[1, 2, 3], **{ "window": Window(col_off=6961, row_off=105176, width=5671, height=5648),

Re: [gdal-dev] Can a GepPDF be generated using a Composition file from command line?

2020-08-26 Thread Ian Mayo
Hello Andrew, thanks for the (very) prompt response. I'm aware of the Python route - I referred to it in my posting. My context is that I'd like to generate the PDF on a system that only has GDAL installed. Your strategy would involve distributing (and maintaining) a python distribution too.

Re: [gdal-dev] Can a GepPDF be generated using a Composition file from command line?

2020-08-26 Thread Andrew C Aitchison
On Wed, 26 Aug 2020, Ian Mayo wrote: The documentation page for PDF via GDAL includes the description for using an XML Composition File: https://gdal.org/drivers/raster/pdf.html#creation-of-pdf-file-from-a-xml-composition-file-gdal-3-0 But, the description only gives examples of the XML

[gdal-dev] Can a GepPDF be generated using a Composition file from command line?

2020-08-26 Thread Ian Mayo
The documentation page for PDF via GDAL includes the description for using an XML Composition File: https://gdal.org/drivers/raster/pdf.html#creation-of-pdf-file-from-a-xml-composition-file-gdal-3-0 But, the description only gives examples of the XML Composition file being used from C++ or Python