# Fichiers
library(maptools) #autre possibilité
geol <-readShapePoly("cal.shp")
library(rgdal)
geol = readOGR(dsn=".", layer="cal")
library(PBSmapping)
geol = importShapefile("cal.shp")
library(shapefiles)
geol <- read.shapefile("cal")
....
# PostGIS
geol = readOGR("PG:dbname=test", "cal")
[il existe des paquets permettant de se connecter directement à PostgreSQL ou des
paquets permettant de se connecter par ODBC mais ils ne gèrent pas la géométrie]
# Grass GIS
library(spgrass6)
G <- gmeta6()
geol = readVECT6("cal", ignore.stderr=TRUE, plugin=NULL)
[il existe des paquets pour se connecter à ArcGIS ou Oracle mais je ne dispose pas
de ces logiciels]