Hi all
I am wondering if anyone has any advice, I am running R-ArcGIS Bridge with the reticulate and arcgisbinding package in RStudio / R-GUI, and I am experiencing some strange behavior when executing certain arcpy tools. Most tools work fine, and I do not think I have a problem with the bridge/reticulate install.
library(reticulate)
py_discover_config()
arcpy <- import("arcpy")
arcpy$CheckOutExtension("Spatial")
arcpy$env$overwriteOutput = TRUE
library(arcgisbinding)
arc.check_product()For example:
The below works fine in RStudio, the buffer distance inherits the units from the input, in case of WGS84, its in degrees.
arcpy$analysis$Buffer('INPUT.shp', 'BUFFEROUT.shp', 1, "", "", "", "", "")