- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 shapefile 代表一个大陆。它有很多多边形(因为多层)。
我想计算不同变量的表面积/平方公里,并将结果放在一列中,即:
每个国家的总平方公里(NAME 变量):它会给我每个国家多边形的平方公里。Total squarekm per AEZ(AEZ 变量):它会给我每个 AEZ 区域的平方公里
等等
我是在 Arcmap 中完成的,但不知道如何在 R 中获得相同的结果。
我尝试使用 Areapolygons,但它不起作用。
> dput(PRIO[2:6,9,12:14, c(1,2)]) structure(list(NAME = c("毛里塔尼亚", "毛里塔尼亚", "毛里塔尼亚", "毛里塔尼亚”,“毛里塔尼亚”),几何=结构(列表(结构(列表(列表(结构(c(-8.15539750263898,-8.5,-8.5,-8.20444499999996,-8.15539750263898,27,27,27.1964674367602,27.02702),27.02706) .Dim = c(5L, 2L)))), class = c("XY", "MULTIPOLYGON", "sfg")), structure(list(list(structure(c(-8.5, -8.66722299999986, -8.66722299999986, -8.66722299999986, -8.66717809129804, -8.5, -8.5, 26.5, 26.5, 26.8330540000001, 26.9663889999999, 27, 27, 26.5), .Dim = c(7L, 2Lc))), 类 =ONGM(IP))), ", "sfg")), structure(list(list(structure(c(-8, -8, -8.5, -8.5, -8.15539750263898, -8.13111099999998, -8, 26.9105346374803, 26.5, 26.5, 27, 27, 26.98638010000 , 26.9105346374803), .Dim = c(7L, 2L)))), class = c("XY", "MULTIPOLYGON", "sfg")), 结构(列表(列表(结构(c(-7.50000000000003, -7.50000000000003 , -8, -8, -7.71194499999996, -7.69361099999992, -7.500000000 00003,26.6209884313231,26.5,26.5,26.9105346374803,26.74388900001,26.734164999999,26.6209884313231)列表(列表(结构(c(-7.29302525734133,-7.50000000000003,-7.50000000000003,-7.29302525734133,26.5,26.5,26.6209884313231,26.5),.Dim2 = c(4L),.Dim2 = c(4L), “MULTIPOLYGON”,“sfg”))),class = c(“sfc_MULTIPOLYGON”,“sfc”),精度 = 0,bbox = 结构(c(xmin = -8.66722299999986,ymin = 26.5,xmax = -7.29302525734133,ymax = 27.1964674367602), class = "bbox"), crs = structure(list(input = "WGS 84", wkt = "GEOGCRS[\"WGS 84\",\n DATUM[\"World Geodetic System 1984\",\n ELLIPSOID[\"WGS 84\",6378137,298.257223563,\n LENGTHUNIT[\"meter\",1]]],\n PRIMEM[\"Greenwich\",0,\n ANGLEUNIT[\"degree\", 0.0174532925199433]],\n CS[ellipsoidal,2],\n AXIS[\"latitude\",north,\n ORDER[1],\n ANGLEUNIT[\"degree\",0.0174532925199433]],\n AXI S[\"longitude\",east,\n ORDER[2],\n ANGLEUNIT[\"degree\",0.0174532925199433]],\n ID[\"EPSG\",4326]]"), class = "crs"), n_empty = 0L)), row.names = c(NA, -5L), sf_column = "几何", agr = structure(c(NAME = NA_integer_), .Label = c("常数", "聚合", "identity"), class = "factor"), class = c("sf", "tbl_df", "tbl", "data.frame"))
谢谢!
最佳答案
在 R 中加载您的多边形,确保它具有合适的坐标系,然后使用 st_area()
,它返回您的多边形中每个多边形(行)的面积。
library(sf)
# Load multipolygon
nc = st_read(system.file("shape/nc.shp", package="sf"))
# Check coordinate system
st_crs(nc)
#> Coordinate Reference System:
#> User input: NAD27
#> wkt:
#> GEOGCRS["NAD27",
#> DATUM["North American Datum 1927",
#> ELLIPSOID["Clarke 1866",6378206.4,294.978698213898,
#> LENGTHUNIT["metre",1]]],
#> PRIMEM["Greenwich",0,
#> ANGLEUNIT["degree",0.0174532925199433]],
#> CS[ellipsoidal,2],
#> AXIS["latitude",north,
#> ORDER[1],
#> ANGLEUNIT["degree",0.0174532925199433]],
#> AXIS["longitude",east,
#> ORDER[2],
#> ANGLEUNIT["degree",0.0174532925199433]],
#> ID["EPSG",4267]]
plot(nc$geometry)
nrow(nc)
#> [1] 100
st_area(nc)
#> Units: [m^2]
#> [1] 1137107793 610916077 1423145355 694378925 1520366979 967504822
#> [7] 615794941 903423919 1179065710 1232475139 1136017416 1524295167
#> [13] 1426763054 1085709751 718024778 1893655681 524303669 1986581059
#> [19] 812132036 626215554 439637846 640597398 863142124 1276325061
#> [25] 1083947009 1697657775 1109799786 1800353048 1036247721 770426970
#> [31] 1422972995 585145178 1311460371 1224942117 800163805 1186288078
#> [37] 2194374294 1179004039 1550151186 690514844 665066784 1457728244
#> [43] 1340416729 1005633561 988219530 1163804357 2019609428 1810365923
#> [49] 944348527 1350014516 1685059736 1068120639 1691385005 2082034143
#> [55] 1447025244 943796075 2045470574 1420873777 707648814 653349704
#> [61] 1471057561 1436128964 1550970115 1186032312 788508058 1265459073
#> [67] 1829451696 1447903974 918204712 1312725482 1043733633 961860879
#> [73] 781909574 1046090580 986760532 917758923 601335294 1321974824
#> [79] 2438120829 833576485 1210382282 1738664778 1228776807 1648541762
#> [85] 1400697543 995179656 1678005426 2072031752 1228366621 519232890
#> [91] 1785013769 808690576 1978885855 2439935278 1264198838 2289052992
#> [97] 2181566551 2450830549 430798470 2166454052
Created on 2021-10-12 by the reprex package (v2.0.1)
编辑:计算数据组内的面积
library(dplyr)
library(sf)
# I've loaded the data in your question as `df`
#
# I'll show how to calculate total areas for your group NAME,
# like you say in your question, but since there's only one
# unique value in your example data, I'll also make a dummy
# grouping variable to show the difference:
# Define dummy groups
df$id <- c(1,1,2,2,3)
# First, calculate the area of each polygon in your multipolygon
df$area <- st_area(df)
# Group by NAME and calculate a total area for each group.
# We expect this to return one area value, because there is only one group.
df %>% group_by(NAME) %>% summarize(st_union(geometry), area_NAME = sum(area))
#> Simple feature collection with 1 feature and 2 fields
#> Geometry type: POLYGON
#> Dimension: XY
#> Bounding box: xmin: -8.667223 ymin: 26.5 xmax: -7.293025 ymax: 27.19647
#> Geodetic CRS: WGS 84
#> # A tibble: 1 x 3
#> NAME `st_union(geometry)` area_NAME
#> <chr> <POLYGON [°]> [m^2]
#> 1 Mauritania ((-7.5 26.62099, -7.693611 26.73416, -7.711945 26.74389~ 5.59e9
# Now group by the dummy variable and calculate a total area for each group.
# In this case, we have three groups (1,2,3), so we expect three area values.
df %>% group_by(id) %>% summarize(st_union(geometry), area_id = sum(area))
#> Simple feature collection with 3 features and 2 fields
#> Geometry type: GEOMETRY
#> Dimension: XY
#> Bounding box: xmin: -8.667223 ymin: 26.5 xmax: -7.293025 ymax: 27.19647
#> Geodetic CRS: WGS 84
#> # A tibble: 3 x 3
#> id `st_union(geometry)` area_id
#> <dbl> <GEOMETRY [°]> [m^2]
#> 1 1 MULTIPOLYGON (((-8.204445 27.0275, -8.5 27.19647, -8.5 27, -8~ 1.30e9
#> 2 2 POLYGON ((-7.693611 26.73416, -7.711945 26.74389, -8 26.91053~ 4.15e9
#> 3 3 POLYGON ((-7.5 26.62099, -7.5 26.5, -7.293025 26.5, -7.5 26.6~ 1.39e8
Created on 2021-10-12 by the reprex package (v2.0.1)
Edit2:合并分组数据到原始数据
> df2 <- df %>% group_by(id) %>% summarize(st_union(geometry), area_id = sum(area))
> merge(df, st_drop_geometry(df2), by = "id", all.x = TRUE)
Simple feature collection with 5 features and 4 fields
Geometry type: MULTIPOLYGON
Dimension: XY
Bounding box: xmin: -8.667223 ymin: 26.5 xmax: -7.293025 ymax: 27.19647
Geodetic CRS: WGS 84
id NAME area area_id
1 1 Mauritania 371871356 [m^2] 1295023668 [m^2]
2 1 Mauritania 923152312 [m^2] 1295023668 [m^2]
3 2 Mauritania 2683469487 [m^2] 4153042391 [m^2]
4 2 Mauritania 1469572903 [m^2] 4153042391 [m^2]
5 3 Mauritania 138546017 [m^2] 138546017 [m^2]
geometry
1 MULTIPOLYGON (((-8.155398 2...
2 MULTIPOLYGON (((-8.5 26.5, ...
3 MULTIPOLYGON (((-8 26.91053...
4 MULTIPOLYGON (((-7.5 26.620...
5 MULTIPOLYGON (((-7.293025 2...
关于r - 计算r中shapefile中变量的表面积,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69539592/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!