2017-04-17 8 views
3

.shp 파일을 통해 얻은 메트로 지역에 대한 폴리곤 정보 (구역)가 포함 된 sf 개체가 있습니다. 주어진 위도/경도 쌍에 대해, 그것이 속해있는 선거구를 결정하고 싶습니다. 내가 sf::st_contains()을 활용할 수 있다고 생각하지만 올바른 형식으로 위도/경도를 얻는 데 문제가 있습니다.sf를 통해 포인트가 속하는 폴리곤을 찾는 방법

+0

내가 사용하는 행운을 발견했습니다'SP : point.in.polygon' (단지 sp''와하지 sf''로하지만). – r2evans

+0

예제 데이터를 제공하면 – SymbolixAU

+0

도 도움이 될 것입니다. 두 개의'sf' 객체에'sf :: st_join()'을 사용하십시오. 폴리곤의 점을 얻기 위해'join' 함수를'st_within'으로 지정할 수 있으며'sf' 객체도 반환합니다. – SymbolixAU

답변

0

등/위도에 st_point()을 사용하면 다른 sf 기능과 함께 사용할 수 있습니다.

예 :

find_precinct <- function(precincts, point) { 
    precincts %>% 
    filter(st_contains(geometry, point) == 1) %>% 
    `[[`("WARDS_PREC") 
} 


ggmap::geocode("nicollet mall, st paul") %>% 
    rowwise() %>% 
    mutate(point = c(lon, lat) %>% 
      st_point() %>% 
      list(), 
     precinct = find_precinct(msvc_precincts, point) 
     ) 
+1

'행 방향'이 아닌 벡터화 된 방식으로 수행 할 수있는 방법은 무엇입니까? – RoyalTS

1

늦은 응답, 자신은 대답을 찾고 있었다. 이와 함께 종료

:

library(sf) 
library(tidyverse) 

nc = st_read(system.file("shape/nc.shp", package="sf"), 
      stringsAsFactors = FALSE) 
d <- 
    data_frame(lon = runif(1e3, -84.5, -75.5), 
      lat = runif(1e3, 34, 36.6), 
      somevariable = rnorm(1e3, 1000, 100)) 

geo_inside <- function(lon, lat, map, variable) { 

    variable <- enquo(variable) 
    # slow if lots of lons and lats or big sf - needs improvement 
    pt <- 
    tibble::data_frame(x = lon, 
         y = lat) %>% 
    st_as_sf(coords = c("x", "y"), crs = st_crs(map)) 
    pt %>% st_join(map) %>% pull(!!variable) 

} 

d <- 
    d %>% 
    mutate(county = geo_inside(lon, lat, nc, NAME)) 

glimpse(d) 
Observations: 1,000 
Variables: 4 
$ lon   <dbl> -79.68728, -79.06104, -83.92082, -76.36866, -75.8635... 
$ lat   <dbl> 36.11349, 35.67239, 35.08802, 35.78083, 36.55786, 34... 
$ somevariable <dbl> 910.9803, 1010.6816, 919.3937, 924.0845, 1154.0975, ... 
$ county  <chr> "Guilford", "Chatham", "Cherokee", "Tyrrell", NA, NA... 

d %>% 
    ggplot() + 
    geom_sf(data = nc) + 
    geom_point(aes(lon, lat, colour = county)) + 
    theme(legend.position = "none") 

하지만 속도에 만족하지만, 일을 할 것 없습니다.

Einar

0

"벡터화"될 수 있습니다.

library(sf) 
library(tidyverse) 

싱가포르 Shape 파일 : 재활용 센터

singapore <- st_read("~/data/master-plan-2014-subzone-boundary-no-sea-shp/MP14_SUBZONE_NO_SEA_PL.shp", quiet=TRUE, stringsAsFactors=FALSE) 
singapore <- st_transform(singapore, 4326) 

CSV : 간단한 기능에

centers <- read_csv("~/data/recycl.csv") 
glimpse(centers) 
## Observations: 407 
## Variables: 10 
## $ lng    <dbl> 104.0055, 103.7677, 103.7456, 103.7361, 103.8106, 103.962... 
## $ lat    <dbl> 1.316764, 1.296245, 1.319204, 1.380412, 1.286512, 1.33355... 
## $ inc_crc   <chr> "F8907D68D7EB64A1", "ED1F74DC805CEC8B", "F48D575631DCFECB... 
## $ name   <chr> "RENEW (Recycling Nation's Electronic Waste)", "RENEW (Re... 
## $ block_house_num <chr> "10", "84", "698", "3", "2", "1", "1", "1", "357", "50", ... 
## $ bldg_name  <chr> "Changi Water Reclamation Plant", "Clementi Woods", "Comm... 
## $ floor   <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, N... 
## $ post_code  <int> 498785, 126811, 608784, 689814, 159047, 486036, 39393, 55... 
## $ street   <chr> "Changi East Close", "West Coast Road , Clementi Woods Co... 
## $ unit   <chr> "(Lobby)", "#B1-01 (Management Office)", "(School foyer)"... 

차례 ^^ 대상 :

map2(centers$lng, centers$lat, ~st_point(c(.x, .y))) %>% 
    st_sfc(crs = 4326) %>% 
    st_sf(centers[,-(1:2)], .) -> centers_sf 

이를 여기 예제 행렬보다 더 빠를 가능성이 높습니다. 영업 이익하지만 난 다른 사람이 재미 벤치마킹을 드리겠습니다가 :

bind_cols(
    centers, 
    singapore[as.numeric(st_within(centers_sf, singapore)),] 
) %>% 
    select(lng, lat, inc_crc, subzone_name=SUBZONE_N) %>% 
    mutate(subzone_name = str_to_title(subzone_name)) 
## # A tibble: 407 x 4 
##   lng  lat   inc_crc    subzone_name 
##  <dbl> <dbl>   <chr>      <chr> 
## 1 104.0055 1.316764 F8907D68D7EB64A1    Changi Airport 
## 2 103.7677 1.296245 ED1F74DC805CEC8B    Clementi Woods 
## 3 103.7456 1.319204 F48D575631DCFECB    Teban Gardens 
## 4 103.7361 1.380412 1F910E0086FD4798     Peng Siang 
## 5 103.8106 1.286512 55A0B9E7CBD34AFE    Alexandra Hill 
## 6 103.9624 1.333555 C664D09D9CD5325F      Xilin 
## 7 103.8542 1.292778 411F79EAAECFE609     City Hall 
## 8 103.8712 1.375876 F4516742CFD4228E Serangoon North Ind Estate 
## 9 103.8175 1.293319 B05B32DF52D922E7   Alexandra North 
## 10 103.9199 1.335878 58E9EAF06206C772   Bedok Reservoir 
## # ... with 397 more rows