writeOGR con un poligono spaziale semplificato da gSimplify


12

Sto usando gSimplify(pacchetto rgeos) per semplificare le geometrie di uno shapefile. La funzione funziona bene, ma ora non riesco a scrivere l'output in un nuovo shapefile. Ho provato alcuni modi:

writeOGR(simplyshape, file, driver="ESRI Shapefile", layer='test')

ottengo

obj deve essere SpatialPointsDataFrame, SpatialLinesDataFrame o SpatialPolygonsDataFrame

e con:

writePolyShape(simplyshape, file)

Ottengo:

Errore: is (x, "SpatialPolygonsDataFrame") non è VERO

Risposte:


8

Costruisci il tuo oggetto nella Spatial*DataFrameclasse appropriata (punti / linee / poligoni), ad es. Per SpatialPolygonsusare as(x, "SpatialPolygonsDataFrame" ):

R> l <- readWKT("LINESTRING(0 7,1 6,2 1,3 4,4 1,5 7,6 6,7 4,8 6,9 4)")
R> x1 <- gSimplify(p, tol=10)
R> class(x1)
[1] "SpatialPolygons"
attr(,"package")
[1] "sp"
R> x2 <- as(x, "SpatialPolygonsDataFrame")
R> class(x2)
[1] "SpatialPolygonsDataFrame"
attr(,"package")
[1] "sp"

5

Devi convertire la tua SpatialPolygonsclasse in una SpatialPolygonsDataFrameclasse. Per esempio:

require(rgdal)
require(rgeos)

# Read shapefile
shp = 'C:/temp/myshp.shp'
myshp = readOGR(shp, layer = basename(strsplit(shp, "\\.")[[1]])[1])

# Read shapefile attributes
df = data.frame(myshp)

# Simplify geometry using rgeos
simplified = gSimplify(myshp, tol = 1000, topologyPreserve=FALSE)

# Create a spatial polygon data frame (includes shp attributes)
spdf = SpatialPolygonsDataFrame(simplified, df)

# Write to shapefile
writeOGR(spdf, layer = 'myshp_simplified', 'C:/temp', driver="ESRI Shapefile")
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.