da_read {arcpy} | R Documentation |
Read Table with arcpy.da
Description
Read a table (e.g. attribute table of a layer) with the
arcpy.da
module.
Usage
da_read(table.path, fields, simplify = TRUE)
Arguments
table.path |
The file path to the table. |
fields |
A vector of field names or column indices to retrieve. |
simplify |
If |
Details
This implementation may be faster than accessing the
@data
slot of an object created from rgdal::readOGR
in cases where there are a very large number of features. An
additional advantage of da_read
is that it can read
raster attribute tables and stand-alone tables stored in file
geodatabases, which is not supported by rgdal::readOGR
.
Value
a dataframe with columns corresponding to fields
.
Examples
## Not run:
arcpy$env$workspace = tempdir()
arcpy$env$scratchWorkspace = tempdir()
fc = arcpy$management$CopyFeatures(system.file("CA_Counties",
"CA_Counties_TIGER2016.shp", package = "arcpy"), "CA_Counties")
da_read(fc, c("COUNTYFP", "ALAND"))
## End(Not run)
[Package arcpy version 0.4-0 Index]