Spatial line start and end point in R

拈花ヽ惹草 提交于 2020-06-01 06:41:10

问题


I am attempting to use the sp package to access the start and end points of a linestring, similar to what ST_StartPoint and ST_EndPoint would produce using psql.

No matter how I try to access the line, I get errors or NULL value:

> onetrip@lines[[1]][1]
Error in onetrip@lines[[1]][1] : object of type 'S4' is not subsettable

> onetrip@lines@Lines@coords
    Error: trying to get slot "Lines" from an object of a basic class ("list") with no slots

> onetrip@lines$Lines
NULL

The only solution that works is verbose and requires conversion to SpatialLines, and I can only easily get the first point:

test = as(onetrip, "SpatialLines")@lines[[1]]
> test@Lines[[1]]@coords[1,]
[1] -122.42258   37.79494

Both the str() below and a simple plot(onetrip) show that my dataframe is not empty.

What is the workaround here - how would one return the start and endpoints of a linestring in sp?

I have subset the first record of a larger SpatialLinesDataFrame:

> str(onetrip)
Formal class 'SpatialLinesDataFrame' [package "sp"] with 4 slots
  ..@ data       :'data.frame': 1 obs. of  6 variables:
  .. ..$ start_time : Factor w/ 23272 levels "2018/02/01 00:12:40",..: 23160
  .. ..$ finish_time: Factor w/ 23288 levels "1969/12/31 17:00:23",..: 23288
  .. ..$ distance   : num 2.74
  .. ..$ duration   : int 40196
  .. ..$ route_id   : int 5844736
  .. ..$ vehicle_id    : int 17972
  ..@ lines      :List of 1
  .. ..$ :Formal class 'Lines' [package "sp"] with 2 slots
  .. .. .. ..@ Lines:List of 1
  .. .. .. .. ..$ :Formal class 'Line' [package "sp"] with 1 slot
  .. .. .. .. .. .. ..@ coords: num [1:3114, 1:2] -122 -122 -122 -122 -122 ...
  .. .. .. ..@ ID   : chr "0"
  ..@ bbox       : num [1:2, 1:2] -122.4 37.8 -122.4 37.8
  .. ..- attr(*, "dimnames")=List of 2
  .. .. ..$ : chr [1:2] "x" "y"
  .. .. ..$ : chr [1:2] "min" "max"
  ..@ proj4string:Formal class 'CRS' [package "sp"] with 1 slot
  .. .. ..@ projargs: chr "+proj=longlat +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +no_defs"

回答1:


Since you tagged question with sf as well, I'll provide a solution in sf. Note you can transform your sp object to sf using

library(sf)
st_as_sf(sp_obj)

Create linestring

line <- st_as_sfc(c("LINESTRING(0 0 , 0.5 1 , 1 1 , 1 0.3)")) %>% 
  st_sf(ID = "poly1")   

Convert each vertex to point

pt <- st_cast(line, "POINT")

Start and end are simply the first and last row of the data.frame

start <- pt[1,]
end <- pt[nrow(pt),]

plot - green is start point, red is end point

library(ggplot2)
ggplot() +
  geom_sf(data = line) +
  geom_sf(data = start, color = 'green') +
  geom_sf(data = end, color = 'red') +
  coord_sf(datum = NULL)




回答2:


Always provide some example data:

library(raster)
lns <- spLines(rbind(c(-180,-20), c(-140,55), c(10, 0), c(-140,-60)))

Here are two solutions.

You can do:

crds <- coordinates(as(lns, 'SpatialPoints'))
pts <- crds[c(1, nrow(crds)), ]

Or do:

pts <- geom(lns)[c(1, nrow(g)), c('x', 'y')]

And to look at it

plot(lns)
points(pts, col=c('red', 'blue'), pch=20, cex=2)



回答3:


In sf a LINESTRING is a matrix.

Unlist the geometry of an sf object and convert to matrix, then fetch whichever rows you want

library(sf)

sfc_line <- st_as_sfc(c("LINESTRING(0 0 , 0.5 1 , 1 1 , 1 0.3)"))

sf_line <- st_sf(geometry = sfc_line)

m <- matrix( unlist( st_geometry(sfc_line) ), ncol = 2)
m[c(1, nrow(m)), ]
#      [,1] [,2]
# [1,]    0  0.0
# [2,]    1  0.3


来源:https://stackoverflow.com/questions/49887283/spatial-line-start-and-end-point-in-r

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!