Skip to content
Prev 14086 / 29559 Next

Building Windows binary of rgdal package to include PGeo driver for reading ESRI personal geodatabases.

Dear Professor Bivand,

That's phenomenally helpful. 

For the record, after installing R-devel (soon to be R-2.15.0) from http://cran.r-project.org/bin/windows/base/rdevel.html, the following steps were the only ones needed to read data from an ESRI personal geodatabase into an R SpatialPointsDataFrame. (The table to be read is named "TelemetryPoints", and is stored in the personal geodatabase at "C://temp/example.mdb"):

install.packages("rgdal") 
library(rgdal)
ogrDrivers()      # Confirming that the PGeo driver was indeed installed
SPDF <- readOGR("C://temp/example.mdb", "Telemetry points") 

Thanks so much for your help,

Josh O'Brien

P.S. Not sure I yet have the hang of properly quoting the context from previous emails in the thread.