Skip to content

Commit

Permalink
#113 fix vendor params in WCS GetCoverage
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Oct 31, 2023
1 parent f38c16c commit fd6ea83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions R/WCSGetCoverage.R
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ WCSGetCoverage <- R6Class("WCSGetCoverage",
if(!is.null(gridorigin)) namedParams$gridorigin <- gridorigin
if(!is.null(gridoffsets)) namedParams$gridoffsets <- gridoffsets

vendorParams <- list(...)
if(length(vendorParams)>0){
namedParams <- c(namedParams, vendorParams)
}
#vendorParams <- list(...)
#if(length(vendorParams)>0){
# namedParams <- c(namedParams, vendorParams)
#}

mimeType <- format
if(substr(serviceVersion,1,3)=="1.1") mimeType <- "text/xml"
Expand Down

0 comments on commit fd6ea83

Please sign in to comment.