我试图弄清楚如何计算河流横截面的面积。
对于横截面,我在5 m宽的河流上每25厘米处有一个深度。
x_profile <- seq(0, 500, 25)
y_profile = c(50, 73, 64, 59, 60, 64, 82, 78, 79, 76, 72, 68, 63, 65, 62, 61, 56, 50, 44, 39, 25)
如果有人对如何完成此操作有任何建议,请多多关照。
最佳答案
我们可以使用sf
包创建一个显示横截面的多边形,然后计算面积。请注意,要创建多边形,在创建矩阵c(0, 0)
时,有必要再提供三个点,即c(500, 0)
,c(0, 0)
和m
。
x_profile <- seq(0, 500, 25)
y_profile <- c(50, 73, 64, 59, 60, 64, 82, 78, 79, 76, 72,
68, 63, 65, 62, 61, 56, 50, 44, 39, 25)
library(sf)
# Create matrix with coordinates
m <- matrix(c(0, x_profile, 500, 0, 0, -y_profile, 0, 0),
byrow = FALSE, ncol = 2)
# Create a polygon
poly <- st_polygon(list(m))
# View the polygon
plot(poly)
# Calcualte the area
st_area(poly)
31312.5
关于r - 计算不同高度的横截面面积,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46643184/