计算不同高度的横截面积

时间:2017-10-09 09:33:56

标签: r area integral

我正在试图弄清楚如何计算河流横断面的面积。

对于横截面,我在5米宽的河流上每隔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)

如果有人对如何做到这一点有一些建议,我们非常感谢。

1 个答案:

答案 0 :(得分:5)

我们可以使用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)

enter image description here

# Calcualte the area
st_area(poly)
31312.5