RPyGeo-package {RPyGeo} | R Documentation |
Provide access to (virtually any) ArcGIS Geoprocessing tool from within R by running Python geoprocessing scripts without writing Python code or touching ArcGIS.
Package: | RPyGeo |
Type: | Package |
Version: | 0.9-0 |
Date: | 2007-09-18 |
License: | GPL |
The function rpygeo.geoprocessor
is the core function of this package.
It creates and runs a Python script that executes your ArcGIS/Python
geoprocessing command from within R.
This function can be used to define more convenient wrappers for frequently
used geoprocessing tools. Some are already implemented, for example
rpygeo.Slope.sa and rpygeo.EucDistance.sa, more are to be added in future
releases.
Alexander Brenning <brenning@uwaterloo.ca>
## Not run: rpygeo.geoprocessor("Slope_sa('dem','slope')", "Aspect_sa('dem','aspect')", "Hillshade_sa('dem','hshd')") ## End(Not run) ## Not run: rpygeo.Slope.sa("dem","slope")