一组点与多边形之间的距离,其中sf为R

时间:2017-09-14 08:46:57

标签: r spatial sf

我在地图上有一个点数据帧,感兴趣的区域被描述为点的多边形。我想计算每个点与多边形之间的距离,理想情况是使用sf包。

library("tidyverse")
library("sf")

# area of interest
area <- 
  "POLYGON ((121863.900623145 486546.136633659, 121830.369032584 486624.24942906, 121742.202408334 486680.476675484, 121626.493982203 486692.384434804, 121415.359596921 486693.816446951, 121116.219703244 486773.748535465, 120965.69439283 486674.642759986, 121168.798757601 486495.217550029, 121542.879304342 486414.780364836, 121870.487595417 486512.71203006, 121863.900623145 486546.136633659))"

# convert to sf and project on a projected coord system
area <- st_as_sfc(area, crs = 7415L)

# points with long/lat coords
pnts <- 
  data.frame(
    id = 1:3, 
    long = c(4.85558, 4.89904, 4.91073),
    lat = c(52.39707, 52.36612, 52.36255)
    )

# convert to sf with the same crs
pnts_sf <- st_as_sf(pnts, crs = 7415L, coords = c("long", "lat"))

# check if crs are equal
all.equal(st_crs(pnts_sf),st_crs(area))

我想知道为什么以下方法没有给我正确答案。

1.仅使用st_distance有趣的工作,错误的答案

st_distance(pnts_sf, area)

2.在变异电话中 - 所有错误答案

pnts_sf %>% 
  mutate(
    distance = st_distance(area, by_element = TRUE),
    distance2 = st_distance(area, by_element = FALSE),
    distance3 = st_distance(geometry, area, by_element = TRUE)
  )

然而,这种方法似乎有效并且给出了正确的距离。

3. map超长/拉 - 正常工作

pnts_geoms <- 
  map2(
    pnts$long, 
    pnts$lat, 
    ~ st_sfc(st_point(c(.x, .y)) , crs = 4326L) 
  ) %>% 
  map(st_transform, crs = 7415L)

map_dbl(pnts_geoms, st_distance, y = area)

我是空间数据的新手,我正在尝试学习sf包,所以我想知道这里出了什么问题。据我所知,前两种方法最终以某种方式考虑了这些要点作为一个整体&#34; (其中一个点在区域多边形内,所以我猜这是为什么其中一个错误的答案是0)。第三种方法是考虑一个时间点,这是我的意图 任何想法如何才能使mutate调用工作?

我在R 3.4.1与

> packageVersion("dplyr")
[1] ‘0.7.3’
> packageVersion("sf")
[1] ‘0.5.5’

1 个答案:

答案 0 :(得分:3)

事实证明,整个混乱是由于我的一个小小的愚蠢疏忽造成的。这是细分:

  • points数据框来自与area多边形不同的来源(!)。
  • 监督这一点我一直试图将它们设置为crs 7415这是一个合法但不正确的举动,最终导致了错误的答案。
  • 正确的方法是将它们转换为sf中的crs对象,将它们转换为area对象所在的对象,然后继续计算距离。

全部放在一起:

# this part was wrong, crs was supposed to be the one they were
# originally coded in
pnts_sf <- st_as_sf(pnts, crs = 4326L, coords = c("long", "lat"))

# then apply the transfromation to another crs
pnts_sf <- st_transform(crs = 7415L)

st_distance(pnts_sf, area)

--------------------------
Units: m
          [,1]
[1,] 3998.5701
[2,]    0.0000
[3,]  751.8097