gpt4 book ai didi

r - 从坐标获取近似大陆

转载 作者:行者123 更新时间:2023-12-05 07:32:13 24 4
gpt4 key购买 nike

我有一些坐标,我想获取它们所属的大陆。

coords <- data.frame(lat=29.51974, long=-94.88704)

但是,有时由于一些测量误差,坐标会有点偏差。例如,上面给定的坐标位于加尔维斯顿湾,因此并不总是标记为“北美”。

一些类似的答案使用rworldmap,比如here ,但是大陆的边界非常精确,因此大陆被遗漏了。其他一些版本,比如使用google API,here为给定的例子做工作,但对于其他一些更远的例子(深入海洋几英里)就不是那么多了。

我找到的 matlab 答案 here看起来很完美。我考虑导出由 matlab 代码生成的 shapefile 并将其导入 R,但我没有 Matlab。

我的问题是:是否有一种方法可以在 R 中使用宽边界将坐标标记为属于大陆,如给定的 here (与上述 matlab 解决方案的链接相同)。

最佳答案

您可以打开 matlab example进入 R 列表并使用 maps::map.where()(注意我手动关闭了多边形)

NAm=data.frame(lat=c(90,       90,  78.13,   57.5,  15,  15,  1.25,  1.25,  51,  60,    60, 90),
lon=c(-168.75 ,-10 ,-10 ,-37.5 ,-30 ,-75 ,-82.5 ,-105 ,-180 ,-180 ,-168.75, -168.75))

NAm2 = data.frame(lat=c(51, 51, 60, 51),
lon=c(166.6, 180, 180, 166.6))

SAm = data.frame(lat=c(1.25, 1.25, 15, 15, -60, -60, 1.25),
lon=c(-105, -82.5, -75, -30, -30, -105, -105))

europe=data.frame(lat=c(90, 90, 42.5, 42.5, 40.79, 41, 40.55, 40.40, 40.05, 39.17, 35.46,
33, 38, 35.42, 28.25, 15, 57.5, 78.13, 90),
lon=c(-10, 77.5, 48.8, 30, 28.81, 29, 27.31, 26.75, 26.36, 25.19, 27.91,
27.5, 10, -10, -13, -30, -37.5, -10, -10))

africa=data.frame(lat=c(15, 28.25 ,35.42 ,38 ,33 ,31.74 ,29.54 ,27.78 ,11.3 ,12.5 ,-60 ,-60, 15),
lon=c(-30 ,-13 ,-10 ,10 ,27.5 ,34.58 ,34.92 ,34.46 ,44.3 ,52 ,75 ,-30, -30))

australia=data.frame(lat=c(-11.88, -10.27, -10 ,-30 ,-52.5 ,-31.88, -11.88),
lon=c(110, 140 ,145 ,161.25 ,142.5 ,110, 110))

asia=data.frame(lat=c(90 ,42.5 ,42.5 ,40.79 ,41 ,40.55 ,40.4 ,40.05 ,39.17 ,35.46 ,33 ,
31.74 ,29.54 ,27.78 ,11.3 ,12.5 ,-60 ,-60 ,-31.88 ,-11.88 ,-10.27 ,33.13 ,51 ,60 ,90, 90),
lon=c(77.5 ,48.8 ,30 ,28.81 ,29 ,27.31 ,26.75 ,26.36 ,25.19 ,27.91 ,27.5 ,
34.58 ,34.92 ,34.46 ,44.3 ,52 ,75 ,110 ,110 ,110 ,140 ,140 ,166.6 ,180 ,180, 77.5))

asia2=data.frame(lat=c(90 ,90 ,60 ,60, 90),
lon=c(-180 ,-168.75 ,-168.75 ,-180, -180))

antarctica=data.frame(lat=c(-60, -60, -90, -90, -60),
lon=c(-180, 180, 180, -180, -180))

continents=list(
y=c(NAm$lat, NA, NAm2$lat, NA, SAm$lat, NA, europe$lat,NA,africa$lat,NA,
australia$lat,NA,asia$lat,NA,asia2$lat,NA,antarctica$lat),
x=c(NAm$lon, NA, NAm2$lon, NA, SAm$lon, NA,europe$lon,NA,africa$lon,NA,
australia$lon,NA,asia$lon,NA,asia2$lon,NA,antarctica$lon),
names=c("North America", "North America:2", "South America", "Europe",
"Africa","Australia","Asia","Asia:2","Antarctica"))
class(continents) <- "map"

这样,您就可以使用 map 包了:

maps::map.where(continents, x=-94.88704, y=29.51974)

关于r - 从坐标获取近似大陆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51394892/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com