Skip to content

Commit

Permalink
dea
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsumner committed Jan 29, 2024
1 parent 8db1902 commit 5218cb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export(rema_v2)
export(sentinel2_wms)
export(srtm15)
export(tas_dem)
export(usgs_seamless)
export(wms_ESA_worldcover_2020_tms)
export(wms_amazon_elevation)
export(wms_arcgis_mapserver_ESRI.WorldImagery_tms)
Expand Down
6 changes: 5 additions & 1 deletion R/geoserver.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ aadc_geoserver <- function (type = c("WFS"))
out
}

dea_wmts <- function() {
dea_geoserver("WMTS")
}
dea_geoserver <- function(type = c("WFS")) {
dea <- c(WFS = "WFS:http://geoserver.dea.ga.gov.au/geoserver/wfs?REQUEST=GetCapabilities",
WMTS = "WMTS:https://geoserver.dea.ga.gov.au/geoserver/gwc/service/wmts?REQUEST=GetCapabilities")
WMTS = "WMTS:https://ows.dea.ga.gov.au/?service=WMTS&request=GetCapabilities")
#WMTS = "WMTS:https://geoserver.dea.ga.gov.au/geoserver/gwc/service/wmts?REQUEST=GetCapabilities")
out <- generic_supported(dea, type)
out
}
1 change: 1 addition & 0 deletions R/sources.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#' USGS seamless DEM
#'
#' @param vsicurl if TRUE prefix /vsicurl
#' @export
#' @examples
#'
#' usgs_seamless()
Expand Down

0 comments on commit 5218cb5

Please sign in to comment.