使用`st_centroid`返回点的质心。

huangapple go评论95阅读模式
英文:

Return centroid of points using st_centroid

问题

我想要一组点的质心。我期望st_centroid返回质心,但它似乎只返回原始点集。解决这个问题应该很容易找到,但在Stack Overflow上搜索时找不到答案。

如何让st_centroid返回质心 - 即一组点中心的单个点。

  1. library(dplyr)
  2. library(sf)
  3. df <- read.table(header=TRUE, text= "site lat long
  4. site1 41.21 -115.11
  5. site2 45.3 -112.31
  6. site3 41.15 -115.15
  7. site4 41.12 -115.19")
  8. df_sf <- st_as_sf(df, coords = c('long', 'lat'))
  9. st_centroid(df_sf)
英文:

I'm after the centroid of a group of points. I expected st_centroid to return the centroid, but it appears to just return the original set of points. It seems the solution to this should be easy to find, but cannot find answer in a good hunt around stack overflow.

How can I get st_centroid to return the centroid - therefore a single point in the centre of a cluster of points.

  1. library(dplyr)
  2. library(sf)
  3. df &lt;- read.table(header=TRUE, text= &quot;site lat long
  4. site1 41.21 -115.11
  5. site2 45.3 -112.31
  6. site3 41.15 -115.15
  7. site4 41.12 -115.19&quot;)
  8. df_sf &lt;- st_as_sf(df, coords = c(&#39;long&#39;, &#39;lat&#39;))
  9. st_centroid(df_sf)

答案1

得分: 3

我认为问题在于它假设每对坐标是不同的几何体,并试图找到每个点的质心,而实际上质心就是该点。如果你将所有的点集看作是一个单一的多点几何体,会怎样:

  1. library(dplyr)
  2. library(sf)
  3. library(sfheaders)
  4. df <- read.table(header=TRUE, text= "site lat long
  5. site1 41.21 -115.11
  6. site2 45.3 -112.31
  7. site3 41.15 -115.15
  8. site4 41.12 -115.19")
  9. sf_multipoint(df[,c("long", "lat")]) %>%
  10. st_centroid()
  11. #> Simple feature collection with 1 feature and 1 field
  12. #> Geometry type: POINT
  13. #> Dimension: XY
  14. #> Bounding box: xmin: -114.44 ymin: 42.195 xmax: -114.44 ymax: 42.195
  15. #> CRS: NA
  16. #> id geometry
  17. #> 1 1 POINT (-114.44 42.195)

如果只返回质心的坐标值,你可以这样做:

  1. sf_multipoint(df[,c("long", "lat")]) %>%
  2. st_centroid() %>%
  3. st_coordinates()
  4. #> X Y
  5. #> 1 -114.44 42.195

创建于2023-03-31,使用 reprex v2.0.2

英文:

I think the problem is that it assumes each coordinate pair is a different geometry and is trying to find the centroid of each point, which is just that point. What if you treated the entire set of points as a single multi-point geometry:

  1. library(dplyr)
  2. library(sf)
  3. library(sfheaders)
  4. df &lt;- read.table(header=TRUE, text= &quot;site lat long
  5. site1 41.21 -115.11
  6. site2 45.3 -112.31
  7. site3 41.15 -115.15
  8. site4 41.12 -115.19&quot;)
  9. sf_multipoint(df[,c(&quot;long&quot;, &quot;lat&quot;)]) %&gt;%
  10. st_centroid()
  11. #&gt; Simple feature collection with 1 feature and 1 field
  12. #&gt; Geometry type: POINT
  13. #&gt; Dimension: XY
  14. #&gt; Bounding box: xmin: -114.44 ymin: 42.195 xmax: -114.44 ymax: 42.195
  15. #&gt; CRS: NA
  16. #&gt; id geometry
  17. #&gt; 1 1 POINT (-114.44 42.195)

To just return the coordinate values of the centroid, you could do the following:

  1. sf_multipoint(df[,c(&quot;long&quot;, &quot;lat&quot;)]) %&gt;%
  2. st_centroid() %&gt;%
  3. st_coordinates()
  4. #&gt; X Y
  5. #&gt; 1 -114.44 42.195

<sup>Created on 2023-03-31 with reprex v2.0.2</sup>

答案2

得分: 1

只翻译代码部分:

  1. library(dplyr)
  2. library(sf)
  3. df <- read.table(header=TRUE, text= "site lat long
  4. site1 41.21 -115.11
  5. site2 45.3 -112.31
  6. site3 41.15 -115.15
  7. site4 41.12 -115.19")
  8. df_sf <- st_as_sf(df, coords = c('long', 'lat'))
  9. st_centroid(df_sf) # your original code; not quite what we want...
  10. # Simple feature collection with 4 features and 1 field
  11. # Geometry type: POINT
  12. # Dimension: XY
  13. # Bounding box: xmin: -115.19 ymin: 41.12 xmax: -112.31 ymax: 45.3
  14. # CRS: NA
  15. # site geometry
  16. # 1 site1 POINT (-115.11 41.21)
  17. # 2 site2 POINT (-112.31 45.3)
  18. # 3 site3 POINT (-115.15 41.15)
  19. # 4 site4 POINT (-115.19 41.12)
  20. df_mod <- df_sf %>%
  21. st_combine()
  22. st_centroid(df_mod) # would this fit your expectations better?
  23. # Geometry set for 1 feature
  24. # Geometry type: POINT
  25. # Dimension: XY
  26. # Bounding box: xmin: -114.44 ymin: 42.195 xmax: -114.44 ymax: 42.195
  27. # CRS: NA
  28. # POINT (-114.44 42.195)
英文:

Are you after 1 centroid of your whole dataset?

If so, consider combining all your points to one feature using a sf::st_combine() call before calculating the centroid.

Because an example is more than words:

  1. library(dplyr)
  2. library(sf)
  3. df &lt;- read.table(header=TRUE, text= &quot;site lat long
  4. site1 41.21 -115.11
  5. site2 45.3 -112.31
  6. site3 41.15 -115.15
  7. site4 41.12 -115.19&quot;)
  8. df_sf &lt;- st_as_sf(df, coords = c(&#39;long&#39;, &#39;lat&#39;))
  9. st_centroid(df_sf) # your original code; not quite what we want...
  10. # Simple feature collection with 4 features and 1 field
  11. # Geometry type: POINT
  12. # Dimension: XY
  13. # Bounding box: xmin: -115.19 ymin: 41.12 xmax: -112.31 ymax: 45.3
  14. # CRS: NA
  15. # site geometry
  16. # 1 site1 POINT (-115.11 41.21)
  17. # 2 site2 POINT (-112.31 45.3)
  18. # 3 site3 POINT (-115.15 41.15)
  19. # 4 site4 POINT (-115.19 41.12)
  20. df_mod &lt;- df_sf %&gt;%
  21. st_combine()
  22. st_centroid(df_mod) # would this fit your expectations better?
  23. # Geometry set for 1 feature
  24. # Geometry type: POINT
  25. # Dimension: XY
  26. # Bounding box: xmin: -114.44 ymin: 42.195 xmax: -114.44 ymax: 42.195
  27. # CRS: NA
  28. # POINT (-114.44 42.195)

huangapple
  • 本文由 发表于 2023年3月31日 21:55:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/75899357.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定