我的 R-markdown 文件中的错误消息 (post-knit)

Error message in my R-markdown file (post-knit)

我正在使用 markdown 文件在 R 中构建传单地图,在编写文档后,我的 rmd 文件中收到此错误消息:

## although coordinates are longitude/latitude, st_union assumes that they are planar

你能帮帮我吗?我相信我试图显示的是我的一些表格,像这样不断出错。

谢谢:)

来自here

Most (but not all) of the geometry calculating routines used by sf come from the GEOS library. This library considers coordinates in a two-dimensional, flat, Euclidian space. For longitude latitude data, this is not the case.

这似乎与您传递给 st_union()

的参数有关