SpatialLines
让我们假设一个长度类的线段len
。这条特定的线从左上角开始。
library(sp)
x <- structure(list(x = c(-7.23437435517476, 6.35937810318614, -5.86718660792582,
7.96094089282062), y = c(7.08139459814975, 6.8633712983227, -7.61337581019376,
-6.2180266913006)), .Names = c("x", "y"))
xline <- SpatialLines(list(Lines(Line(x), ID = 1)))
#len <- LineLength(as.matrix(data.frame(x)))
len <- LineLength(as.matrix(data.frame(coordinates(xline))))
plot(0,0, xlim = c(-10, 10), ylim = c(-10, 10), type = "n")
lines(xline)
我想在这条线上找到一个点,它findme
距离线的起点有一个单位。例如,如果我要从起点开始沿着直线寻找一个 10 个单位的点,我会在第一段和第二段之间的节点附近找到一个点。欢迎您对更强大的解决方案提出意见。
我尝试使用spsample
(见下文)找到它,但这种方法(太)不可靠,不适用于线的后半部分。
# very approximate method, not very suitable
findme <- 11 # 11, 12 and 13 give same result
segs <- 1/(findme/xline.length)
xsam <- spsample(x = xline, n = segs, type = "regular", offset = 0)
points(xsam)