[gdal-dev] WCS C++ API on Windows: Fails to create VSIFILE

2018-10-09 Thread Odd Ragnar Lydersen
1) DescribeCoverage for version 1.0.0 (It's working fine if I use version=1.1.x) static std::string wcsDescribeCoverage = "WCS:https://wms.geonorge.no/skwms1/wcs.hoyde-dtm1_32?SERVICE=WCS&REQUEST=DescribeCoverage&Coverage=dtm1_32&VERSION=1.0.0";; static const char

Re: [gdal-dev] gdalautotest

2018-10-09 Thread Even Rouault
On mardi 9 octobre 2018 20:09:23 CEST Alan Stewart wrote: > Okay, found the bindings and bindings_install targets in makefile.vc. The > bindings target does not build so something is wrong. Mysteriously > reporting that files are not found, reporting absolute paths for files that > are in fact ther

Re: [gdal-dev] gdalautotest

2018-10-09 Thread Alan Stewart
Okay, found the bindings and bindings_install targets in makefile.vc. The bindings target does not build so something is wrong. Mysteriously reporting that files are not found, reporting absolute paths for files that are in fact there at the reported path... Also Swig.swg and python.swg are not

Re: [gdal-dev] gdalautotest

2018-10-09 Thread Alan Stewart
Oops, just realized the path I need to add to PYTHONPATH I the parent of osgeo. Still fails importing _gdal. Are these files supposed to have been installed into my Pyton installation by the install process? Alan Stewart Senior Software Enginee TerraGo Technologies 3200 Windy Hill Road, Suite 15

[gdal-dev] gdalautotest

2018-10-09 Thread Alan Stewart
I'd like to run the gdalautotest scripts locally, and add some tests, but I've not had success getting the environment set up correctly. I assume with the right configuration the build process will generate the Python bindings? I'm on Windows running in a VS1027 x86 native tools command prompt.

Re: [gdal-dev] WCS: Bug in WCSDataset110::GetCoverageRequest()

2018-10-09 Thread Peter Baumann
On 09.10.2018 15:06, jratike80 wrote: > Odd Ragnar Lydersen wrote >> I think there is a bug in WCSDataset110::GetCoverageRequest() >> At line 178: "&VERSION=%s&REQUEST=GetCoverage&IDENTIFIER=%s" >> Should be : "&VERSION=%s&REQUEST=GetCoverage&IDENTIFIERS=%s" >> >> At least that fixes my problem,

Re: [gdal-dev] WCS: Bug in WCSDataset110::GetCoverageRequest()

2018-10-09 Thread jratike80
Odd Ragnar Lydersen wrote > I think there is a bug in WCSDataset110::GetCoverageRequest() > At line 178: "&VERSION=%s&REQUEST=GetCoverage&IDENTIFIER=%s" > Should be : "&VERSION=%s&REQUEST=GetCoverage&IDENTIFIERS=%s" > > At least that fixes my problem, and I can get one step further in my > effort

[gdal-dev] WCS: Bug in WCSDataset110::GetCoverageRequest()

2018-10-09 Thread Odd Ragnar Lydersen
I think there is a bug in WCSDataset110::GetCoverageRequest() At line 178: "&VERSION=%s&REQUEST=GetCoverage&IDENTIFIER=%s" Should be : "&VERSION=%s&REQUEST=GetCoverage&IDENTIFIERS=%s" At least that fixes my problem, and I can get one step further in my effort to use the wcs driver, using C++ API,