-
Hello, In particular, calls to getCoverage return
The last call returns
The last call returns Other variants are similarly unsuccessful
Any assistance would be greatly appreciated. I suspect something unusual with the response received from the WCS server. Additionally, it took me a long time to establish how to find the coverageID, and I suggest that the getCoverageSummaries() function could be made more prominent in the documentation. Regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I should add that I am able to access the coverage in QGIS without problems. The raster properties shows: Server Properties: Coverages |
Beta Was this translation helpful? Give feedback.
The WCS 1.0 requires more parameters to work, making it not really user friendly (why WCS 2 was designed). You have to give HEIGHT and WIDTH parameters. These are not set by default behind the request done by ows4R. QGIS should be applying some default values or compute them based on the bounding box.
You can try this:
ras2 <- cov$getCoverage(bbox = bbox, width=1000, height=1000)
I note your remark on
getCoverageSummaries()
and indeed doc should be improved on this.