从 R + sf 中的 GPS 点创建线段

Posted

技术标签:

【中文标题】从 R + sf 中的 GPS 点创建线段【英文标题】:Create line segments from GPS points in R + sf 【发布时间】:2020-10-29 15:40:27 【问题描述】:

我有动物运动的时间戳 GPS 坐标作为一个简单的特征集合(8068 个特征),几何类型点。我需要将这些点转换为 8067 线段。解决方案是从带有分组的点创建线 #321:https://github.com/r-spatial/sf/issues/321 需要一个分组字段来将点连接到多条线。但是,对于 GPS 数据,点是连续的并且没有组字段。

ArcGIS 有一个解决方案,XY TO Line:https://pro.arcgis.com/en/pro-app/tool-reference/data-management/xy-to-line.htm。是否有与此功能等效的 R?

【问题讨论】:

您可能需要检查 sftrack 和其他 R 包的轨迹。 【参考方案1】:

sftraj 步骤说明准确地描述了我的目标:https://mablab.org/post/sftraj-model/: 这个解决方案也很有帮助:Plotting lines between two sf POINT features in r

library(readr)
library(sf)
library(tidyverse)

# Read-in GPS data. Data is in ascending order by date.
gps <- read_csv("X:/gps_xyt_data.csv")

# Create a unique ID column starting at 1 
gps <- tibble::rowid_to_column(gps, "KeyID")

# Create a second unique ID column starting at 0
gps$JoinID <- gps$KeyID - 1

# Select coordinates and KeyId 
start_xy <- gps %>% select(start_x = utm_e, start_y = utm_n, KeyID)

# Select coordinates and JoinID  
end_xy <- gps %>% select(end_x = utm_e, end_y = utm_n, JoinID) 

# Inner join to have start/end coordinate pairs for each record 
start_end_xy <- inner_join(start_xy, end_xy, by = c("KeyID" = "JoinID"))

# Select for start geometries and convert to sf object
pnts_start <- start_end_xy %>% st_as_sf( coords = c("start_x", "start_y"), crs = 26911)

# Select for end geometries and convert to sf object
pnts_end <- start_end_xy %>% st_as_sf(coords = c("end_x", "end_y"), crs = 26911)

# Combine start and end geometries
cbind(pnts_start,pnts_end) -> points_ready 

# Generate line segments via union of paired geometries
line_segments <- as.data.frame(st_sfc(mapply(function(a,b)st_cast(st_union(a,b),"LINESTRING"), points_ready$geometry, points_ready$geometry.1, SIMPLIFY=FALSE)))

# Add a unique ID to line segments
line_segments <- tibble::rowid_to_column(trj_lines, "KeyID")

# Join the attribute data to line segments
line_segments <- inner_join(line_segments, gps, by = c("KeyID" = "KeyID"))

【讨论】:

【参考方案2】:

稍微简洁的 tidyverse 解决方案:

source_file <- 'INSERT_FILENAME_HERE'

empty <- st_as_sfc("POINT(EMPTY)", crs = 4326)

sf::st_read(source_file) %>% 
  # great circle distances
  st_set_crs(4326) %>% 
  mutate(
    geometry_lagged = lag(geometry, default = empty)
  ) %>%
  # drop the NA row created by lagging
  slice(-1) %>% 
  mutate(
    line = st_sfc(purrr::map2(
      .x = geometry, 
      .y = geometry_lagged, 
      .f = ~st_union(c(.x, .y)) %>% st_cast("LINESTRING")
    ))) -> track_lines

【讨论】:

以上是关于从 R + sf 中的 GPS 点创建线段的主要内容,如果未能解决你的问题,请参考以下文章

从 R sf 中的多边形中删除孔

在R中的多个点之间的图中添加多个线段

[IOI2018]werewolf狼人——kruskal重构树+可持久化线段树

找到点所在的状态,`sf` r

android中的gps示例包括跟踪功能

R语言 折线图