WCS VOM UK data #121
Answered
by
eblondel
jorgesainzdeaja
asked this question in
OGC WCS
WCS VOM UK data
#121
-
Hi!, have a similar problem here, I have tried the code above and works perfectly, but when trying to get VOM data from an UK WCS service I am getting the following error:
I was working with the following BBOX in 27700 crs: focus_bbox_27700
What I am doing wrong??, tested to load the WCS layer on QGIS and it loads just right |
Beta Was this translation helpful? Give feedback.
Answered by
eblondel
Feb 13, 2024
Replies: 1 comment 1 reply
-
hi @jorgesainzdeaja I've tested your data source. As follow-up I made 2 enhancements (#122, #123) and everything works as expected now:
Code I've tested: VOM <- WCSClient$new("https://environment.data.gov.uk/spatialdata/vegetation-object-model/wcs", "2.0.1", logger = "INFO")
VOM_cov <- VOM$capabilities$findCoverageSummaryById("ecae3bef-1e1d-4051-887b-9dc613c928ec__Vegetation_Object_Model_Elevation_2022", exact = F)
VOM_data <- VOM_cov$getCoverage(bbox = OWSUtils$toBBOX(150000,160000,656000,657000)) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
eblondel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi @jorgesainzdeaja I've tested your data source. As follow-up I made 2 enhancements (#122, #123) and everything works as expected now:
Code I've tested: