Skip to content

Commit 63afb30

Browse files
committed
turn stream off for GML
1 parent 393e71c commit 63afb30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/read.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ identical(st_read(quiet = TRUE, csv, options = "AUTODETECT_TYPE=Yes")$Int32[3],
122122

123123
if ("GML" %in% st_drivers()$name) {
124124
gml = system.file("gml/fmi_test.gml", package = "sf")
125-
print(dim(st_read(gml, quiet = TRUE)))
125+
print(dim(st_read(gml, quiet = TRUE, use_stream = FALSE)))
126126
gml = system.file("gml/20170930_OB_530964_UKSH.xml.gz", package = "sf")
127-
print(dim(st_read(gml, layer = "Parcely", quiet = TRUE)))
128-
print(dim(st_read(gml, layer = "Parcely", int64_as_string=TRUE, quiet = TRUE)))
127+
print(dim(st_read(gml, layer = "Parcely", quiet = TRUE, use_stream = FALSE)))
128+
print(dim(st_read(gml, layer = "Parcely", int64_as_string=TRUE, quiet = TRUE, use_stream = FALSE)))
129129
}
130130

131131
# logical:

0 commit comments

Comments
 (0)