We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e19acad commit dbd0e35Copy full SHA for dbd0e35
R/vrt_extent.R
@@ -2,7 +2,7 @@
2
#'
3
#' Get extent from index values in VRT text.
4
5
-#' (I can't understand XML tech for the life of me so I hack the text as lines with strsplit)
+#' (I can't understand XML tech so I hack the text as lines with strsplit)
6
#' @param x url or file path to VRT file
7
8
#' @export
@@ -32,3 +32,8 @@ extent_vrt <- function(x) {
32
ymax <- vaster::y_from_row(vinfo$extent, vinfo$dimXY, yOff + ySize)
33
cbind(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax)
34
}
35
+
36
37
+show_tiling <- function(overviews, extent) {
38
39
+}
0 commit comments