-
Notifications
You must be signed in to change notification settings - Fork 299
/
Copy pathread.R
831 lines (758 loc) · 32.2 KB
/
read.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
sf_stringsAsFactors = function() {
if (getRversion() < "4.1.0")
default.stringsAsFactors()
else
FALSE
}
set_utf8 = function(x) {
n = names(x)
Encoding(n) = "UTF-8"
to_utf8 = function(x) {
if (is.character(x))
Encoding(x) = "UTF-8"
x
}
structure(lapply(x, to_utf8), names = n)
}
#' Read simple features or layers from file or database
#'
#' Read simple features from file or database, or retrieve layer names and their
#' geometry type(s)
#' @param dsn data source name (interpretation varies by driver - for some
#' drivers, \code{dsn} is a file name, but may also be a folder, or contain
#' the name and access credentials of a database); in case of GeoJSON,
#' \code{dsn} may be the character string holding the geojson data. It can
#' also be an open database connection.
#' @param layer layer name (varies by driver, may be a file name without
#' extension); in case \code{layer} is missing, \code{st_read} will read the
#' first layer of \code{dsn}, give a warning and (unless \code{quiet = TRUE})
#' print a message when there are multiple layers, or give an error if there
#' are no layers in \code{dsn}. If \code{dsn} is a database connection, then
#' \code{layer} can be a table name or a database identifier (see
#' \code{\link[DBI]{Id}}). It is also possible to omit \code{layer} and rather
#' use the \code{query} argument.
#' @param ... parameter(s) passed on to \link{st_as_sf}
#' @param options character; driver dependent dataset open options, multiple
#' options supported. For possible values, see the "Open options" section
#' of the GDAL documentation of the corresponding driver, and
#' <https://github.com/r-spatial/sf/issues/1157> for an example.
#' @param quiet logical; suppress info on name, driver, size and spatial
#' reference, or signaling no or multiple layers
#' @param geometry_column integer or character; in case of multiple geometry
#' fields, which one to take?
#' @param type integer; ISO number of desired simple feature type; see details.
#' If left zero, and \code{promote_to_multi} is \code{TRUE}, in case of mixed
#' feature geometry types, conversion to the highest numeric type value found
#' will be attempted. A vector with different values for each geometry column
#' can be given.
#' @param promote_to_multi logical; in case of a mix of Point and MultiPoint, or
#' of LineString and MultiLineString, or of Polygon and MultiPolygon, convert
#' all to the Multi variety; defaults to \code{TRUE}
#' @param stringsAsFactors logical; logical: should character vectors be
#' converted to factors? Default for \code{read_sf} or R version >= 4.1.0 is
#' \code{FALSE}, for \code{st_read} and R version < 4.1.0 equal to
#' \code{default.stringsAsFactors()}
#' @param int64_as_string logical; if `TRUE`, Int64 attributes are returned as
#' string; if `FALSE`, they are returned as double and a warning is given when
#' precision is lost (i.e., values are larger than 2^53).
#' @param check_ring_dir logical; if `TRUE`, polygon ring directions are checked
#' and if necessary corrected (when seen from above: exterior ring counter
#' clockwise, holes clockwise)
#' @details for \code{geometry_column}, see also
#' \url{https://gdal.org/en/latest/development/rfc/rfc41_multiple_geometry_fields.html}
#'
#' for values for \code{type} see
#' \url{https://en.wikipedia.org/wiki/Well-known_text#Well-known_binary}, but
#' note that not every target value may lead to successful conversion. The
#' typical conversion from POLYGON (3) to MULTIPOLYGON (6) should work; the
#' other way around (type=3), secondary rings from MULTIPOLYGONS may be dropped
#' without warnings. \code{promote_to_multi} is handled on a per-geometry column
#' basis; \code{type} may be specified for each geometry column.
#'
#' Note that stray files in data source directories (such as \code{*.dbf}) may
#' lead to spurious errors that accompanying \code{*.shp} are missing.
#'
#' In case of problems reading shapefiles from USB drives on OSX, please see
#' \url{https://github.com/r-spatial/sf/issues/252}. Reading shapefiles (or other
#' data sources) directly from zip files can be done by prepending the path
#' with \code{/vsizip/}. This is part of the GDAL Virtual File Systems interface
#' that also supports .gz, curl, and other operations, including chaining; see
#' \url{https://gdal.org/en/latest/user/virtual_file_systems.html} for a complete
#' description and examples.
#'
#' For \code{query} with a character \code{dsn} the query text is handed to
#' 'ExecuteSQL' on the GDAL/OGR data set and will result in the creation of a
#' new layer (and \code{layer} is ignored). See 'OGRSQL'
#' \url{https://gdal.org/en/latest/user/ogr_sql_dialect.html} for details. Please note that the
#' 'FID' special field is driver-dependent, and may be either 0-based (e.g. ESRI
#' Shapefile), 1-based (e.g. MapInfo) or arbitrary (e.g. OSM). Other features of
#' OGRSQL are also likely to be driver dependent. The available layer names may
#' be obtained with
#' \link{st_layers}. Care will be required to properly escape the use of some layer names.
#'
#' @return object of class \link{sf} when a layer was successfully read; in case
#' argument \code{layer} is missing and data source \code{dsn} does not
#' contain a single layer, an object of class \code{sf_layers} is returned
#' with the layer names, each with their geometry type(s). Note that the
#' number of layers may also be zero.
#' @seealso \link{st_layers}, \link{st_drivers}
#' @examples
#' nc = st_read(system.file("shape/nc.shp", package="sf"))
#' summary(nc) # note that AREA was computed using Euclidian area on lon/lat degrees
#'
#' ## only three fields by select clause
#' ## only two features by where clause
#' nc_sql = st_read(system.file("shape/nc.shp", package="sf"),
#' query = "SELECT NAME, SID74, FIPS FROM \"nc\" WHERE BIR74 > 20000")
#' \dontrun{
#' library(sp)
#' example(meuse, ask = FALSE, echo = FALSE)
#' try(st_write(st_as_sf(meuse), "PG:dbname=postgis", "meuse",
#' layer_options = "OVERWRITE=true"))
#' try(st_meuse <- st_read("PG:dbname=postgis", "meuse"))
#' if (exists("st_meuse"))
#' summary(st_meuse)
#' }
#'
#' \dontrun{
#' ## note that we need special escaping of layer within single quotes (nc.gpkg)
#' ## and that geom needs to be included in the select, otherwise we don't detect it
#' layer <- st_layers(system.file("gpkg/nc.gpkg", package = "sf"))$name[1]
#' nc_gpkg_sql = st_read(system.file("gpkg/nc.gpkg", package = "sf"),
#' query = sprintf("SELECT NAME, SID74, FIPS, geom FROM \"%s\" WHERE BIR74 > 20000", layer))
#' }
#' # spatial filter, as wkt:
#' wkt = st_as_text(st_geometry(nc[1,]))
#' # filter by (bbox overlaps of) first feature geometry:
#' st_read(system.file("gpkg/nc.gpkg", package="sf"), wkt_filter = wkt)
#' @export
st_read = function(dsn, layer, ...) UseMethod("st_read")
#' @export
st_read.default = function(dsn, layer, ...) {
if (missing(dsn))
stop("dsn should specify a data source or filename")
else {
dsn_is_null = is.null(dsn)
class_dsn = class(dsn)
tr <- try(dsn <- as.character(dsn))
if (dsn_is_null || inherits(tr, "try-error"))
stop(paste("no st_read method available for objects of class", paste(class_dsn, collapse = ", ")))
else
st_read.character(dsn, layer, ...)
}
}
process_cpl_read_ogr = function(x, quiet = FALSE, ..., check_ring_dir = FALSE,
stringsAsFactors = ifelse(as_tibble, FALSE, sf_stringsAsFactors()),
geometry_column = 1, as_tibble = FALSE, optional = FALSE) {
which.geom = which(vapply(x, function(f) inherits(f, "sfc"), TRUE))
if (as_tibble && !requireNamespace("tibble", quietly = TRUE))
stop("package tibble not available: install first?")
# in case no geometry is present:
if (length(which.geom) == 0) {
if (! quiet)
warning("no simple feature geometries present: returning a data.frame or tbl_df", call. = FALSE)
x = if (!as_tibble) {
if (any(sapply(x, is.list)))
warning("list-column(s) present: in case of failure, try read_sf() or as_tibble=TRUE") # nocov
as.data.frame(x , stringsAsFactors = stringsAsFactors, optional = optional)
} else
tibble::as_tibble(x)
return(x)
}
nm = names(x)[which.geom]
Encoding(nm) = "UTF-8"
geom = x[which.geom]
lc.other = setdiff(which(vapply(x, is.list, TRUE)), which.geom) # non-sfc list-columns
list.cols = x[lc.other]
nm.lc = names(x)[lc.other]
if (length(x) == length(geom)) { # ONLY geometry column(s)
if (as_tibble)
x <- tibble::tibble(row.names = seq_along(geom[[1]]))[-1]
else
x <- data.frame(row.names = seq_along(geom[[1]]))
} else {
x <- as.data.frame(set_utf8(x[-c(lc.other, which.geom)]), stringsAsFactors = stringsAsFactors,
optional = optional || as_tibble)
if (as_tibble) {
# "sf" class is added later by `st_as_sf` (and sets all the attributes)
x <- tibble::new_tibble(x, nrow = nrow(x))
}
}
for (i in seq_along(lc.other))
x[[ nm.lc[i] ]] = list.cols[[i]]
for (i in seq_along(geom)) {
if (is.null(attr(geom[[i]], "bbox"))) {
x[[ nm[i] ]] = st_sfc(geom[[i]], crs = attr(geom[[i]], "crs")) # computes bbox
} else {
x[[ nm[i] ]] = geom[[i]]
}
}
x = st_as_sf(x, ...,
sf_column_name = if (is.character(geometry_column)) geometry_column else nm[geometry_column],
check_ring_dir = check_ring_dir)
if (! quiet)
print(x, n = 0)
else
x
}
# Allow setting the default to TRUE to make it easier to run existing tests
# of st_read() through the stream interface
default_st_read_use_stream = function() {
getOption(
"sf.st_read_use_stream",
identical(Sys.getenv("R_SF_ST_READ_USE_STREAM"), "true")
)
}
process_cpl_read_ogr_stream = function(x, geom_column_info, num_features, fid_column_name,
crs = NULL, promote_to_multi = TRUE, ...) {
is_geometry_column = vapply(
x$get_schema()$children,
function(s) identical(s$metadata[["ARROW:extension:name"]], "ogc.wkb"),
logical(1)
)
geom_column_info$index = which(is_geometry_column)
if (num_features == -1) {
num_features = NULL
}
# Suppress warnings about extension type conversion (since we want the
# default behaviour of converting the storage type)
df = suppressWarnings(nanoarrow::convert_array_stream(x, size = num_features))
for (i in seq_len(nrow(geom_column_info))) {
crs = if (is.null(crs)) st_crs(geom_column_info$crs[[i]]) else st_crs(crs)
name = geom_column_info$name[[i]]
index = geom_column_info$index[[i]]
column_wkb = df[[index]]
attributes(column_wkb) = NULL
column_sfc = wk::wk_handle(
wk::new_wk_wkb(column_wkb),
wk::sfc_writer(promote_multi = promote_to_multi)
)
df[[index]] = st_set_crs(column_sfc, crs)
names(df)[index] = name
}
# Rename OGC_FID to fid_column_name and move to end
if (length(fid_column_name) == 1 && "OGC_FID" %in% names(df)) {
df = df[c(setdiff(names(df), "OGC_FID"), "OGC_FID")]
names(df)[names(df) == "OGC_FID"] = fid_column_name
}
# All geometry columns to the end
df = df[c(setdiff(seq_along(df), geom_column_info$index), geom_column_info$index)]
process_cpl_read_ogr(df, ...)
}
#' @name st_read
#' @param fid_column_name character; name of column to write feature IDs to; defaults to not doing this
#' @param drivers character; limited set of driver short names to be tried (default: try all)
#' @param wkt_filter character; WKT representation of a spatial filter (may be used as bounding box, selecting overlapping geometries); see examples
#' @param optional logical; passed to \link[base]{as.data.frame}; always \code{TRUE} when \code{as_tibble} is \code{TRUE}
#' @param use_stream Use `TRUE` to use the experimental columnar interface introduced in GDAL 3.6.
#' @note The use of \code{system.file} in examples make sure that examples run regardless where R is installed:
#' typical users will not use \code{system.file} but give the file name directly, either with full path or relative
#' to the current working directory (see \link{getwd}). "Shapefiles" consist of several files with the same basename
#' that reside in the same directory, only one of them having extension \code{.shp}.
#' @export
st_read.character = function(dsn, layer, ..., query = NA, options = NULL, quiet = FALSE, geometry_column = 1L,
type = 0, promote_to_multi = TRUE, stringsAsFactors = sf_stringsAsFactors(),
int64_as_string = FALSE, check_ring_dir = FALSE, fid_column_name = character(0),
drivers = character(0), wkt_filter = character(0), optional = FALSE,
use_stream = default_st_read_use_stream()) {
layer = if (missing(layer))
character(0)
else
enc2utf8(layer)
if (nchar(dsn) < 1)
stop("`dsn` must point to a source, not an empty string.", call. = FALSE)
dsn_exists = file.exists(dsn)
dsn_isdb = is_db_driver(dsn)
if (length(dsn) == 1 && dsn_exists && !dsn_isdb)
dsn = enc2utf8(normalizePath(dsn))
if (length(promote_to_multi) > 1)
stop("`promote_to_multi' should have length one, and applies to all geometry columns")
if (use_stream) {
stream = nanoarrow::nanoarrow_allocate_array_stream()
info = CPL_read_gdal_stream(stream, dsn, layer, query, as.character(options), quiet,
drivers, wkt_filter, dsn_exists, dsn_isdb, fid_column_name, getOption("width"))
geom_column_info = data.frame(name = info[[1]], crs = info[[2]], stringsAsFactors = FALSE)
process_cpl_read_ogr_stream(stream, geom_column_info, num_features = info[[3]],
fid_column_name = fid_column_name, stringsAsFactors = stringsAsFactors, quiet = quiet,
promote_to_multi = promote_to_multi, ...)
} else {
x = CPL_read_ogr(dsn, layer, query, as.character(options), quiet, type, fid_column_name,
drivers, wkt_filter, promote_to_multi, int64_as_string, dsn_exists, dsn_isdb, getOption("width"))
process_cpl_read_ogr(x, quiet, check_ring_dir = check_ring_dir,
stringsAsFactors = stringsAsFactors, geometry_column = geometry_column,
optional = optional, ...)
}
}
#' @name st_read
#' @export
#' @details \code{read_sf} and \code{write_sf} are aliases for \code{st_read} and \code{st_write}, respectively, with some
#' modified default arguments.
#' \code{read_sf} and \code{write_sf} are quiet by default: they do not print information
#' about the data source. \code{read_sf} returns an sf-tibble rather than an sf-data.frame.
#' \code{write_sf} delete layers by default: it overwrites existing files without asking or warning.
#' @examples
#' # read geojson from string:
#' geojson_txt <- paste("{\"type\":\"MultiPoint\",\"coordinates\":",
#' "[[3.2,4],[3,4.6],[3.8,4.4],[3.5,3.8],[3.4,3.6],[3.9,4.5]]}")
#' x = st_read(geojson_txt)
#' x
read_sf <- function(..., quiet = TRUE, stringsAsFactors = FALSE, as_tibble = TRUE) {
st_read(..., quiet = quiet, stringsAsFactors = stringsAsFactors, as_tibble = as_tibble)
}
clean_columns = function(obj, factorsAsCharacter) {
permitted = c("character", "integer", "numeric", "Date", "POSIXct", "logical", "list")
for (i in seq_along(obj)) {
if (is.factor(obj[[i]])) {
obj[[i]] = if (factorsAsCharacter)
as.character(obj[[i]])
else
as.numeric(obj[[i]])
}
if (! inherits(obj[[i]], permitted)) {
if (inherits(obj[[i]], "POSIXlt"))
obj[[i]] = as.POSIXct(obj[[i]])
else if (is.numeric(obj[[i]]))
obj[[i]] = as.numeric(obj[[i]]) # strips class
}
if (is.character(obj[[i]]))
obj[[i]] = enc2utf8(obj[[i]])
}
ccls.ok = vapply(obj, function(x) inherits(x, permitted), TRUE)
if (any(!ccls.ok)) {
# nocov start
nms <- names(obj)[!ccls.ok]
cls <- sapply(obj, function(x) paste(class(x), collapse=";"))[!ccls.ok]
warning("Dropping column(s) ", paste(nms, collapse=","),
" of class(es) ", paste(cls, collapse=","))
obj = obj[ccls.ok]
# nocov end
}
colclasses = vapply(obj, function(x) permitted[ which(inherits(x, permitted, which = TRUE) > 0)[1] ] , "")
# check that list columns contain raw vectors:
for (lc in which(colclasses == "list")) {
if (!all(sapply(obj[[lc]], inherits, "raw")))
stop("list columns are only allowed with raw vector contents")
}
structure(obj, colclasses = colclasses)
}
abbreviate_shapefile_names = function(x) {
# from: rgdal/pkg/R/ogr_write.R:
fld_names <- names(x)
# if (!is.null(encoding)) {
# fld_names <- iconv(fld_names, from=encoding, to="UTF-8")
# }
if (any(nchar(fld_names) > 10)) {
fld_names <- abbreviate(fld_names, minlength = 7)
warning("Field names abbreviated for ESRI Shapefile driver")
if (any(nchar(fld_names) > 10))
fld_names <- abbreviate(fld_names, minlength = 5) # nocov
}
# fix for dots in DBF field names 121124
if (length(wh. <- grep("\\.", fld_names) > 0))
fld_names[wh.] <- gsub("\\.", "_", fld_names[wh.])
if (anyDuplicated(fld_names))
stop("Non-unique field names") # nocov
names(x) = fld_names
x
}
#' Write simple features object to file or database
#'
#' Write simple features object to file or database
#' @param obj object of class \code{sf} or \code{sfc}
#' @param dsn data source name. Interpretation varies by driver: can be
#' a filename, a folder, a database name, or a Database Connection
#' (we officially test support for
#' \code{\link[RPostgres:Postgres]{RPostgres::Postgres()}} connections).
#' @param layer layer name. Varies by driver, may be a file name without
#' extension; for database connection, it is the name of the table. If layer
#' is missing, the \code{basename} of \code{dsn} is taken.
#' @param driver character; name of driver to be used; if missing and \code{dsn} is not a Database Connection, a driver name is guessed from \code{dsn};
#' \code{st_drivers()} returns the drivers that are available with their properties; links to full driver documentation
#' are found at \url{https://gdal.org/en/latest/drivers/vector/index.html}
#' @param ... other arguments passed to \link[DBI]{dbWriteTable} when \code{dsn} is a
#' Database Connection
#' @param dataset_options character; driver dependent dataset creation options;
#' multiple options supported.
#' @param layer_options character; driver dependent layer creation options;
#' multiple options supported.
#' @param quiet logical; suppress info on name, driver, size and spatial
#' reference
#' @param factorsAsCharacter logical; convert \code{factor} levels to character
#' strings (\code{TRUE}, default), otherwise into numbers when
#' factorsAsCharacter is \code{FALSE}. For database connections,
#' \code{factorsAsCharacter} is always \code{TRUE}.
#' @param append logical; should we append to an existing layer, or replace it?
#' if \code{TRUE} append, if \code{FALSE} replace.
#' The default for \code{st_write} is \code{NA} which raises an error if the layer exists.
#' The default for \code{write_sf} is \code{FALSE}, which overwrites any existing data.
#' See also next two arguments for more control on overwrite behavior.
#' @param delete_dsn logical; delete data source \code{dsn} before attempting
#' to write?
#' @param delete_layer logical; delete layer \code{layer} before attempting to
#' write?
#' The default for \code{st_write} is \code{FALSE} which raises an error if the layer exists.
#' The default for \code{write_sf} is \code{TRUE}.
#' @param fid_column_name character, name of column with feature IDs; if
#' specified, this column is no longer written as feature attribute.
#' @param config_options character, named vector with GDAL config options
#' @details
#' Columns (variables) of a class not supported are dropped with a warning.
#'
#' When updating an existing layer, records are appended to it if the updating
#' object has the right variable names and types. If names don't match an
#' error is raised. If types don't match, behaviour is undefined: GDAL may
#' raise warnings or errors or fail silently.
#'
#' When deleting layers or data sources is not successful, no error is emitted.
#' \code{delete_dsn} and \code{delete_layer} should be
#' handled with care; the former may erase complete directories or databases.
#' @seealso \link{st_drivers}, \link[DBI]{dbWriteTable}
#' @return \code{obj}, invisibly
#' @examples
#' nc = st_read(system.file("shape/nc.shp", package="sf"))
#' st_write(nc, paste0(tempdir(), "/", "nc.shp"))
#' st_write(nc, paste0(tempdir(), "/", "nc.shp"), delete_layer = TRUE) # overwrites
#' if (require(sp, quietly = TRUE)) {
#' data(meuse, package = "sp") # loads data.frame from sp
#' meuse_sf = st_as_sf(meuse, coords = c("x", "y"), crs = 28992)
#' # writes X and Y as columns:
#' st_write(meuse_sf, paste0(tempdir(), "/", "meuse.csv"), layer_options = "GEOMETRY=AS_XY")
#' st_write(meuse_sf, paste0(tempdir(), "/", "meuse.csv"), layer_options = "GEOMETRY=AS_WKT",
#' delete_dsn=TRUE) # overwrites
#' \dontrun{
#' library(sp)
#' example(meuse, ask = FALSE, echo = FALSE)
#' try(st_write(st_as_sf(meuse), "PG:dbname=postgis", "meuse_sf",
#' layer_options = c("OVERWRITE=yes", "LAUNDER=true")))
#' demo(nc, ask = FALSE)
#' try(st_write(nc, "PG:dbname=postgis", "sids", layer_options = "OVERWRITE=true"))
#' }
#' }
#' @export
st_write = function(obj, dsn, layer, ...) UseMethod("st_write")
#' @name st_write
#' @export
st_write.sfc = function(obj, dsn, layer, ...) {
if (missing(layer))
st_write.sf(st_sf(geom = obj), dsn, ...)
else
st_write.sf(st_sf(geom = obj), dsn, layer, ...)
invisible(obj)
}
#' @name st_write
#' @export
st_write.sf = function(obj, dsn, layer = NULL, ...,
driver = guess_driver_can_write(dsn),
dataset_options = NULL, layer_options = NULL, quiet = FALSE, factorsAsCharacter = TRUE,
append = NA, delete_dsn = FALSE, delete_layer = !is.na(append) && !append,
fid_column_name = NULL, config_options = character(0)) {
return_obj = ret = obj
if (!is.null(list(...)$update)) {
.Deprecated("append", old = "update") # deprecated at 0.9-0
if (is.na(append))
append = list(...)$update
}
# else if (length(list(...)))
# stop(paste("unrecognized argument(s)", names(list(...)), "\n"))
if (missing(dsn))
stop("dsn should specify a data source or filename")
if (inherits(dsn, c("DBIObject", "PostgreSQLConnection", "Pool"))) {
if (inherits(dsn, "Pool")) {
if (! requireNamespace("pool", quietly = TRUE)) # nocov start
stop("package pool required, please install it first")
dsn = pool::poolCheckout(dsn)
on.exit(pool::poolReturn(dsn)) # nocov end
}
if (is.null(layer)) {
layer = deparse(substitute(obj))
}
if (is.na(append)) {
append = FALSE
}
# check arguments
cl <- as.list(match.call())[-1L]
if ("overwrite" %in% names(cl)) {
stop("Argument `overwrite` in `st_write()` is deprecated, use `delete_layer` instead.", call. = FALSE)
}
check_append_delete(append, delete_layer)
dbWriteTable(dsn, name = layer, value = obj,
append = append, overwrite = delete_layer,
factorsAsCharacter = factorsAsCharacter, ...)
return(invisible(return_obj))
} else if (!inherits(dsn, "character")) { # add methods for other dsn classes here...
stop(paste("no st_write method available for dsn of class", class(dsn)[1]))
}
if (!is.na(append) && append == FALSE && delete_layer == FALSE)
stop("cannot replace a layer if delete_layer is FALSE")
if (is.null(layer))
layer <- file_path_sans_ext(basename(dsn))
if (length(dsn) == 1 && length(grep("~", dsn)) == 1) # resolve ~
dsn = normalizePath(dsn, mustWork = FALSE) # nocov
# this seems to be always a good idea:
dsn = enc2utf8(dsn)
# handle the case where obj does not have a geometry column:
if (write_geometries <- inherits(obj, "sf")) {
geom = st_geometry(obj)
obj[[attr(obj, "sf_column")]] = NULL
if (is.na(st_crs(geom))) {
message('writing: substituting ENGCRS["Undefined Cartesian SRS with unknown unit"] for missing CRS')
st_crs(geom) = st_crs("ENGCRS[\"Undefined Cartesian SRS with unknown unit\",EDATUM[\"Unknown engineering datum\"],CS[Cartesian,2],AXIS[\"X\",unspecified,ORDER[1],LENGTHUNIT[\"unknown\",0]],AXIS[\"Y\",unspecified,ORDER[2],LENGTHUNIT[\"unknown\",0]]]")
}
} else { # create fake geometries:
v = vector("list", nrow(obj))
v[seq_len(nrow(obj))] = list(st_point())
geom = st_sfc(v)
}
if (driver == "ESRI Shapefile") { # remove trailing .shp from layer name
layer = sub(".shp$", "", layer)
obj = abbreviate_shapefile_names(obj)
}
obj = clean_columns(as.data.frame(obj), factorsAsCharacter)
# this attaches attr colclasses
names(obj) = enc2utf8(names(obj))
dim = if (length(geom) == 0)
"XY"
else
class(geom[[1]])[1]
fids = if (!is.null(fid_column_name)) {
fids = as.character(obj[[fid_column_name]])
obj[[fid_column_name]] = NULL
fids
} else
character(0)
ret = CPL_write_ogr(obj, dsn, layer, driver,
as.character(dataset_options), as.character(layer_options),
geom, dim, fids, config_options, quiet, append, delete_dsn, delete_layer,
write_geometries, getOption("width"))
if (ret == 1) { # try through temp file:
tmp = tempfile(fileext = paste0(".", tools::file_ext(dsn))) # nocov start
if (!quiet)
message(paste("writing first to temporary file", tmp))
if (CPL_write_ogr(obj, tmp, layer, driver,
as.character(dataset_options), as.character(layer_options),
geom, dim, fids, config_options, quiet, append, delete_dsn, delete_layer,
write_geometries, getOption("width")) == 1)
stop(paste("failed writing to temporary file", tmp))
if (!file.copy(tmp, dsn, overwrite = append || delete_dsn || delete_layer))
stop(paste("copying", tmp, "to", dsn, "failed"))
if (!file.remove(tmp))
warning(paste("removing", tmp, "failed"))
} # nocov end
invisible(return_obj)
}
#' @name st_write
#' @export
st_write.data.frame <- function(obj, dsn, layer = NULL, ...) {
sf = try(st_as_sf(obj), silent = TRUE)
if (!inherits(sf, "try-error"))
st_write.sf(sf, dsn = dsn, layer = layer, ...)
else
st_write.sf(obj, dsn = dsn, layer = layer, ...)
invisible(obj)
}
#' @name st_write
#' @export
write_sf <- function(..., quiet = TRUE, append = FALSE, delete_layer = !append) {
st_write(..., quiet = quiet, append = append, delete_layer = delete_layer)
}
#' Get GDAL drivers
#'
#' Get a list of the available GDAL drivers
#' @param what character: `"vector"` or `"raster"`, anything else will return all
#' drivers.
#' @param regex character; regular expression to filter the `name` and `long_name`
#' fields on
#' @details The drivers available will depend on the installation of GDAL/OGR,
#' and can vary; the `st_drivers()` function shows all the drivers that are
#' readable, and which may be written. The field `vsi` refers to the driver's
#' capability to read/create datasets through the VSI*L API. [See GDAL website
#' for additional details on driver
#' support](https://gdal.org/en/latest/drivers/vector/index.html)
#' @return A `data.frame` with driver metadata.
#' @export
#' @md
#' @examples
#' # The following driver lists depend on the GDAL setup and platform used:
#' st_drivers()
#' st_drivers("raster", "GeoT")
st_drivers = function(what = "vector", regex) {
ret = CPL_get_gdal_drivers(0)
row.names(ret) = ret$name
ret = switch(what,
vector = ret[ret$is_vector,],
raster = ret[ret$is_raster,],
ret)
if (missing(regex))
ret
else {
fn = function(x, pattern) any(grepl(x, pattern = pattern))
ret[apply(ret[c("name", "long_name")], 1, fn, pattern = regex), ]
}
}
#' @export
print.sf_layers = function(x, ...) {
n_gt = max(sapply(x$geomtype, length))
x$geomtype = vapply(x$geomtype, function(x) paste(x, collapse = ", "), "")
cat(paste("Driver:", x$driver, "\n"))
x$driver = NULL
x$features[x$features < 0] = NA
cat("Available layers:\n")
if (length(x$name) == 0) {
cat("<none>\n") # nocov
invisible(x) # nocov
} else {
crs = sapply(x$crs, function(crs) crs$input)
x$crs = crs
df = data.frame(unclass(x))
gt = if (n_gt > 1)
"geometry_types"
else
"geometry_type"
names(df) = c("layer_name", gt, "features", "fields", "crs_name")
print(df)
invisible(df)
}
}
#' Return properties of layers in a datasource
#'
#' Return properties of layers in a datasource
#' @param dsn data source name (interpretation varies by driver - for some drivers, \code{dsn} is a file name, but may also be a
#' folder, or contain the name and access credentials of a database)
#' @param options character; driver dependent dataset open options, multiple options supported.
#' @param do_count logical; if TRUE, count the features by reading them, even if their count is not reported by the driver
#' @name st_layers
#' @return list object of class \code{sf_layers} with elements
#' \describe{
#' \item{name}{name of the layer}
#' \item{geomtype}{list with for each layer the geometry types}
#' \item{features}{number of features (if reported; see \code{do_count})}
#' \item{fields}{number of fields}
#' \item{crs}{list with for each layer the \code{crs} object}
#' }
#' @export
st_layers = function(dsn, options = character(0), do_count = FALSE) {
if (missing(dsn))
stop("dsn should specify a data source or filename")
if (length(dsn) == 1 && file.exists(dsn))
dsn = enc2utf8(normalizePath(dsn))
ret = CPL_get_layers(dsn, options, do_count)
if (length(ret[[1]]) > 0) {
Encoding(ret[[1]]) <- "UTF-8"
ret[[1]] <- enc2native(ret[[1]])
}
structure(ret, row.names = seq_along(ret[[1]]), class = c("sf_layers", "data.frame"))
}
guess_driver = function(dsn) {
stopifnot(is.character(dsn))
stopifnot(length(dsn) == 1)
# find match: try extension first
drv = extension_map[tolower(tools::file_ext(dsn))]
if (is_db_driver(dsn))
drv = prefix_map[tolower(strsplit(dsn, ":")[[1]][1])]
drv <- unlist(drv)
if (is.null(drv)) {
# no match
return(NA)
}
drv
}
is_db_driver = function(dsn) {
any(grep(":", gsub(":[/\\]", "/", dsn)))
}
guess_driver_can_write = function(dns, drv = guess_driver(dns)) {
if(is.na(drv)) {
stop("Could not guess driver for ", dns, call. = FALSE)
}
if(!is_driver_available(drv)) {
stop(unlist(drv), " driver not available in supported drivers, see `st_drivers()'", call. = FALSE)
}
if(!is_driver_can(drv, operation = "write")) {
stop("Driver ", drv, " cannot write. see `st_drivers()'", call. = FALSE)
}
return(drv)
}
#' Check if driver is available
#'
#' Search through the driver table if driver is listed
#' @param drv character. Name of driver
#' @param drivers data.frame. Table containing driver names and support. Default
#' is from \code{\link{st_drivers}}
is_driver_available = function(drv, drivers = st_drivers()) {
i = match(drv, drivers$name)
if (is.na(i))
return(FALSE)
return(TRUE)
}
#' Check if a driver can perform an action
#'
#' Search through the driver table to match a driver name with
#' an action (e.g. \code{"write"}) and check if the action is supported.
#' @param drv character. Name of driver
#' @param drivers data.frame. Table containing driver names and support. Default
#' is from \code{\link{st_drivers}}
#' @param operation character. What action to check
is_driver_can = function(drv, drivers = st_drivers(), operation = "write") {
stopifnot(operation %in% names(drivers))
i = match(drv, drivers$name)
if (!drivers[i, operation])
return(FALSE)
return(TRUE)
}
#' Map extension to driver
#' @docType data
extension_map <- list(
"bna" = "BNA",
"csv" = "CSV",
"e00" = "AVCE00",
"fgb" = "FlatGeobuf",
"gdb" = "OpenFileGDB",
"geojson" = "GeoJSON",
"gml" = "GML",
"gmt" = "GMT",
"gpkg" = "GPKG",
"gps" = "GPSBabel",
"gpx" = "GPX",
"gtm" = "GPSTrackMaker",
"gxt" = "Geoconcept",
"jml" = "JML",
"kml" = "KML",
"map" = "WAsP",
"mdb" = "Geomedia",
"nc" = "netCDF",
"ods" = "ODS",
"osm" = "OSM",
"pbf" = "OSM",
"shp" = "ESRI Shapefile",
"sqlite" = "SQLite",
"vdv" = "VDV",
"xls" = "xls",
"xlsx" = "XLSX")
#' Map prefix to driver
#' @docType data
prefix_map <- list(
"couchdb" = "CouchDB",
"db2odbc" = "DB2ODBC",
"dods" = "DODS",
"gft" = "GFT",
"mssql" = "MSSQLSpatial",
"mysql" = "MySQL",
"oci" = "OCI",
"odbc" = "ODBC",
"pg" = "PostgreSQL",
"sde" = "SDE")
#' Drivers for which update should be \code{TRUE} by default
#' @docType data
db_drivers <- c(unlist(prefix_map), "GPKG", "SQLite")
# Utils ----------------------------------------------------------------------
check_append_delete <- function(append, delete) {
if (append && delete) {
stop("`delete_layer` and `append` cannot both be `TRUE`", call. = FALSE)
}
}
#' @name st_write
#' @export
#' @details `st_delete()` deletes layer(s) in a data source, or a data source if layers are
#' omitted; it returns `TRUE` on success, `FALSE` on failure, invisibly.
st_delete = function(dsn, layer = character(0), driver = guess_driver_can_write(dsn), quiet = FALSE) {
invisible(CPL_delete_ogr(dsn, layer, driver, quiet) == 0)
}