- ArcGIS 10.3.1 or later or ArcGIS Pro 1.1 or later (don't have it? try a 60 day trial)
- R Statistical Computing Software, 3.3.2 or later (What is R?)
- 32-bit version required for ArcMap, 64-bit version required for ArcGIS Pro (Note: the installer installs both by default).
- 64-bit version can be used with ArcMap by installing Background Geoprocessing and configuring scripts to run in the background. NOTE: Background geoprocessing only allows using the bridge from ArcGIS, not from within R itself.
For most users, the easiest way to install is using the installation toolbox which will install and configure the bridge for ArcGIS 10.3.1+ and Pro 1.1+. Alternatively, downloading the release can be manually installed into R, as shown in this screencast.
tool_exec <- function (in_params, out_params)
{
value0 <- in_params[[1]]
print(value0)
# ...
return (out_params)
}
tool_exec(in_params, out_params)
main functionin_params
list of all input parameters. You can get parameter value by indexin_params[[1]]
or by parameter namein_params$param1
output_params
list of all output and derived parameters.
> library(arcgisbinding)
> arc.check_product()
> d <- arc.open("c:/mydb.gdb/points")
- The arcgisbinding vignette providesan overview of what the bridge does, and how to use it effectively.
- The arcgisbinding manual provides details on each of the functions included within the package.
> git clone https://github.com/R-ArcGIS/r-bridge.git`
> cd r-bridge\buid\
> build.bat pro desktop
- Rtools 3.3
- (optional) Visual Studio 2017 Update 2. Get free Visual Studio Community
- MiKTeX 2.9, to build package PDF
Check out the R-ArcGIS Website for related projects and extensions built on this library.
This package depends on the R Statistical Computing Software:
Copyright (C) 2015 The R Foundation for Statistical Computing R is free software and comes with ABSOLUTELY NO WARRANTY. See the COPYRIGHTS file for details.