空间数据:计算点与最大点值的距离并绘图
Posted
技术标签:
【中文标题】空间数据:计算点与最大点值的距离并绘图【英文标题】:Spatial data: calculating the distance of points from the maximum point value and plotting 【发布时间】:2021-12-31 04:41:00 【问题描述】:我的问题与post 类似,其中计算了每个点之间的距离。
就我而言,我希望找到每个点到具有最高值的点的距离。我也想用lm()
绘制这种关系,但我正在努力使用空间数据对象来完成这两项任务。
我的数据不需要CRS,它是基于欧几里得距离(因为这些点在一个房间里)。
以下数据的模拟示例,其中列 variable
是有趣的。
> dput(dat)
structure(list(date.hour = structure(c(1551057840, 1551057840,
1551057840, 1551057840, 1551057840, 1551057840, 1551057840), tzone = "UTC", class = c("POSIXct",
"POSIXt")), id = c(2, 5, 7, 8, 9, 10, 11), variable = c(456,
27, 130, 116, 92, 141, 145), xy_coord = c("6.2 14.8", "8.2 8.9",
"4.2 8.9", "2.2 8.9", "8.2 3.5", "6.2 3.5", "4.2 3.5")), row.names = c(NA,
-7L), groups = structure(list(id = c(2, 5, 7, 8, 9, 10, 11),
date.hour = structure(c(1551057840, 1551057840, 1551057840,
1551057840, 1551057840, 1551057840, 1551057840), tzone = "UTC", class = c("POSIXct",
"POSIXt")), .rows = structure(list(1L, 2L, 3L, 4L, 5L, 6L,
7L), ptype = integer(0), class = c("vctrs_list_of", "vctrs_vctr",
"list"))), row.names = c(NA, -7L), class = c("tbl_df", "tbl",
"data.frame"), .drop = TRUE), class = c("grouped_df", "tbl_df",
"tbl", "data.frame"))
> dat
# A tibble: 7 x 4
# Groups: id, date.hour [7]
date.hour id variable xy_coord
<dttm> <dbl> <dbl> <chr>
1 2019-02-25 01:24:00 2 456 6.2 14.8
2 2019-02-25 01:24:00 5 27 8.2 8.9
3 2019-02-25 01:24:00 7 130 4.2 8.9
4 2019-02-25 01:24:00 8 116 2.2 8.9
5 2019-02-25 01:24:00 9 92 8.2 3.5
6 2019-02-25 01:24:00 10 141 6.2 3.5
7 2019-02-25 01:24:00 11 145 4.2 3.5
>
使用sp()
包将数据框转换为SpatialPointsDataFrame
:
#Split x and y to separate columns
dat$x <- sapply(strsplit(as.character(dat$xy_coord), " "), "[", 1); dat$x <- as.numeric(dat$x)
dat$y <- sapply(strsplit(as.character(dat$xy_coord), " "), "[", 2); dat$y <- as.numeric(dat$y)
#SpatialPointsDataFrame
coordinates(dat) <- ~x+y
这是我不知道采取什么步骤的点,但我想知道所有点到最高值的距离:
which.max(dat@data$variable)
然后绘制这个与基数plot()
的关系。
如果我的问题不清楚,请告诉我。
【问题讨论】:
“用 lm() 绘制这种关系”是什么意思?哪种关系? 绘制距离最大值点的影响。 不确定我的解释是否令人困惑,但我使用最大值作为自变量的代理。 因此,您想创建一个图,其中 x 值表示距协变量最高值的点的距离,y 值是多少?相同的协变量? Y 值 - 标记为“变量” - 不会改变。 【参考方案1】:我仍然不确定我是否理解您的问题,但我提出以下答案。
加载包
library(sf)
#> Linking to GEOS 3.9.1, GDAL 3.2.1, PROJ 7.2.1
library(tidyr)
加载数据
dat = structure(
list(
date.hour = structure(
c(
1551057840, 1551057840, 1551057840, 1551057840, 1551057840,
1551057840, 1551057840
),
tzone = "UTC",
class = c(
"POSIXct",
"POSIXt"
)
),
id = c(2, 5, 7, 8, 9, 10, 11),
variable = c(
456, 27, 130, 116, 92, 141, 145
),
xy_coord = c(
"6.2 14.8", "8.2 8.9", "4.2 8.9", "2.2 8.9", "8.2 3.5", "6.2 3.5",
"4.2 3.5"
)
),
row.names = c(NA,-7L),
groups = structure(
list(
id = c(2, 5, 7, 8, 9, 10, 11),
date.hour = structure(
c(
1551057840, 1551057840, 1551057840, 1551057840, 1551057840,
1551057840, 1551057840
),
tzone = "UTC",
class = c(
"POSIXct",
"POSIXt"
)
),
.rows = structure(
list(1L, 2L, 3L, 4L, 5L, 6L, 7L),
ptype = integer(0),
class = c(
"vctrs_list_of", "vctrs_vctr", "list"
)
)
),
row.names = c(NA, -7L),
class = c("tbl_df", "tbl", "data.frame"),
.drop = TRUE
),
class = c("grouped_df", "tbl_df", "tbl", "data.frame")
)
分离xy_coord
列,将列转换为数值并创建一个sf对象
dat_sf <- st_as_sf(
separate(dat, xy_coord, c("x", "y"), sep = " ", convert = TRUE),
coords = c("x", "y")
)
求变量的最大值
which.max(dat_sf[["variable"]])
#> [1] 1
计算所有距离
dat_sf[["distances"]] <- st_distance(dat_sf, dat_sf[1, ])
剧情
plot(variable ~ distances, data = dat_sf)
由reprex package (v2.0.1) 于 2021 年 11 月 22 日创建
您还可以删除第一个点(距离 = 0)。
【讨论】:
以上是关于空间数据:计算点与最大点值的距离并绘图的主要内容,如果未能解决你的问题,请参考以下文章