Überprüfen, ob Punkte in das Polygon-Shapefile fallen


19

In Zillow gibt es eine Reihe von Shapefiles für verschiedene Stadtteile großer US-amerikanischer Städte. Ich wollte mit R überprüfen, ob in bestimmten Stadtteilen bestimmte Gebäude vorhanden sind:

library(rgeos)
library(sp)
library(rgdal)

df <- data.frame(Latitude =c(47.591351, 47.62212,47.595152),
                 Longitude = c(-122.332271,-122.353985,-122.331639),
                 names = c("Safeco Field", "Key Arena", "Century Link"))
coordinates(df) <- ~ Latitude + Longitude

wa.map <- readOGR("ZillowNeighborhoods-WA.shp", layer="ZillowNeighborhoods-WA")

sodo <- wa.map[wa.map$CITY == "Seattle"  & wa.map$NAME == "Industrial District", ]

Ich kann ohne Probleme plotten

plot(sodo)
points(df$Latitude ~ df$Longitude, col = "red", cex = 1)

Bildbeschreibung hier eingeben

Ich proj4stimme die Zeichenfolge aus dem Shapefile mit meinem data.frame überein

CRSobj <- CRS("+proj=longlat +datum=NAD83 +no_defs +ellps=GRS80 +towgs84=0,0,0 ")
df@proj4string <- CRSobj

over(df, sodo)

Dies gibt mir nur eine Reihe von NAWerten. Ich habe diese Antwort ausprobiert

spp <- SpatialPoints(df)
spp@proj4string <- CRSobj
over(spp, sodo)

bekomme aber trotzdem nur NAwerte. Irgendwelche Ideen, was ich sonst noch versuchen sollte?

Antworten:


20

Der Raum data.frameist nicht richtig geformt. Das könnte funktionieren:

library(rgeos)
library(sp)
library(rgdal)

wa.map <- readOGR("ZillowNeighborhoods-WA.shp", layer="ZillowNeighborhoods-WA")

sodo <- wa.map[wa.map$CITY == "Seattle"  & wa.map$NAME == "Industrial District", ]

# Don't use df as name, it is an R function
# Better to set longitudes as the first column and latitudes as the second
dat <- data.frame(Longitude = c(-122.332271,-122.353985,-122.331639),
                  Latitude =c(47.591351, 47.62212,47.595152),
                  names = c("Safeco Field", "Key Arena", "Century Link"))
# Assignment modified according
coordinates(dat) <- ~ Longitude + Latitude
# Set the projection of the SpatialPointsDataFrame using the projection of the shapefile
proj4string(dat) <- proj4string(sodo)

over(dat, sodo)
#  STATE COUNTY    CITY                NAME REGIONID
#1    WA   King Seattle Industrial District   271892
#2  <NA>   <NA>    <NA>                <NA>       NA
#3  <NA>   <NA>    <NA>                <NA>       NA

over(sodo, dat)
#           names
#122 Safeco Field

7

Ich habe gerade das Gleiche getan. Pascals Antwort deckt es fast ab, aber Sie benötigen möglicherweise zwei zusätzliche Schritte wie unten.

#After you create your list of latlongs you must set the proj4string to longlat
proj4string(dat) <- CRS("+proj=longlat")

#Before you re-set the proj4string to the one from sodo you must actually convert #your coordinates to the new projection
dat <- spTransform(dat, proj4string(sodo))

Mir ist nicht klar, in welchen Fällen diese zusätzlichen Schritte erforderlich sind. Für mich war die Lösung der Antwort von user32309 gut genug.
Djhurio

3
Es hängt davon ab, in welchem ​​Format Ihre Daten vorliegen. Wenn es sich um Projektion A handelt und Sie nur erklären möchten, dass Sie proj4string verwenden, sollten Sie gut sein. Wenn es sich jedoch in Projektion B befindet und Sie tatsächlich eine Konvertierung in Projektion A durchführen müssen, müssen Sie spTransform verwenden.
John Curry

2

Ich habe eine ähnliche Herangehensweise an die akzeptierte Antwort in diesem Beitrag gewählt, war aber nie wirklich zufrieden damit, also habe ich nach Alternativen gesucht und die sf- Bibliothek gefunden.

Und mit dieser Bibliothek können Sie dann Code wie folgt schreiben:

library(sf)
# Shapefile from ABS: 
# https://www.abs.gov.au/AUSSTATS/abs@.nsf/DetailsPage/1270.0.55.004July%202016?OpenDocument
map = read_sf("data/ABS/shapes/SUA_2016_AUST.shp")

pnts_sf <- st_as_sf(pnts, coords = c('y', 'x'), crs = st_crs(map))

pnts <- pnts_sf %>% mutate(
  intersection = as.integer(st_intersects(geometry, map))
  , area = if_else(is.na(intersection), '', map$SUA_NAME16[intersection])
) 

pnts

Ausgabe:

         geometry intersection area    
*     <POINT [°]>        <int> <chr>   
1 (138.62 -34.92)           79 Adelaide
2 (138.58 -34.93)           79 Adelaide
3 (138.52 -34.95)           79 Adelaide
4 (152.71 -27.63)           60 Brisbane
5 (153.01 -27.57)           60 Brisbane
6  (150.73 -33.9)           31 Sydney  
7 (150.99 -33.92)           31 Sydney 

Ich habe diesen Code in einem anderen Beitrag gepostet, bei dem es sich um eine ähnliche Frage handelt: Identifizieren Sie den Punkt , der ein Polygon enthält, mit dem Paket R sf

Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.