«zillow» 태그된 질문

3
점이 다각형 쉐이프 파일 내에 있는지 확인
Zillow는 미국 주요 도시의 다른 지역을위한 일련의 shapefile 을 가지고 있습니다. R을 사용하여 특정 건물이 특정 지역에 있는지 확인하고 싶었습니다. 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 …
19 r  rgdal  zillow 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.