我是一个有空间数据的完整新手。我有以下代码成功绘制有界地图。我想补充一下,data.frame存储点。 我提前道歉,因为无法从OpenStreetMap文档中找到这个...下面的代码:
library(OpenStreetMap)
stores <- data.frame(name=c("Commercial","Union","Bedford"),
longitude=c(-70.25042295455933,-70.26050806045532,-70.27726650238037),
latitude=c(43.657471302616806,43.65663299041943,43.66091757424481))
lat <- c(43.68093,43.64278)
lon <- c(-70.29548,-70.24097)
portland <- openmap(c(lat[1],lon[1]),c(lat[2],lon[2]),zoom=15,'osm')
plot(portland,raster=TRUE)
#can't figure out what to put here.
我怀疑商店的格式不适合空间数据。
答案 0 :(得分:12)
我不知道OpenStreetMap
包。但我提供了一个仍然绘制OpenStreet Map的替代方案,但使用ggmap
包来获取和绘制地图。 get_map
函数可以从各种来源获取地图:osm,google,stamen和cloudmade;使用source
设置。此外,源具有不同的样式,设置为maptype
。地图的边界在位置矢量中给出。或者,位置矢量可以给地图的中心设置适当的缩放级别。地图使用ggplot2
绘制,因此可以将点和标签添加到地图中,就好像它们被添加到任何ggplot对象一样。要运行以下命令,需要安装ggmap
和ggplot2
个包。
library(ggmap)
stores <- data.frame(name=c("Commercial","Union","Bedford"),
longitude=c(-70.25042295455933,-70.26050806045532,-70.27726650238037),
latitude=c(43.657471302616806,43.65663299041943,43.66091757424481))
location = c(-70.2954, 43.64278, -70.2350, 43.68093)
# Fetch the map
portland = get_map(location = location, source = "osm")
# Draw the map
portlandMap = ggmap(portland)
# Add the points layer
portlandMap = portlandMap + geom_point(data = stores, aes(x = longitude, y = latitude), size = 5)
# Add the labels
portlandMap + geom_text(data = stores, aes(label = name, x = longitude+.001, y = latitude), hjust = 0)
结果是:
标签可能会在后台丢失。在这种情况下,这样的事情可能是合适的。它使用code from here为文本提供大纲。
portlandMap = ggmap(portland) + geom_point(data = stores, aes(x = longitude, y = latitude), size = 5)
theta <- seq(pi/16, 2*pi, length.out=32)
xo <- diff(location[c(1,3)])/250
yo <- diff(location[c(2,4)])/250
for(i in theta) {
portlandMap <- portlandMap + geom_text(data = stores,
aes_(x = stores$longitude + .001 + cos(i) * xo,
y = stores$latitude + sin(i) * yo,
label = stores$name),
size = 5, colour = 'black', hjust = 0)
}
portlandMap +
geom_text(data = stores, aes(x = longitude + .001, y = latitude, label=name),
size = 5, colour = 'white', hjust = 0)
答案 1 :(得分:0)
由于google startend要求使用其api的账单信息,因此这是仅使用OpenStreetMaps的解决方案。
样本数据
library( OpenStreetMap )
library( ggplot2 )
stores <- data.frame(name=c("Commercial","Union","Bedford"),
longitude=c(-70.25042295455933,-70.26050806045532,-70.27726650238037),
latitude=c(43.657471302616806,43.65663299041943,43.66091757424481))
lat <- c(43.68093,43.64278)
lon <- c(-70.29548,-70.24097)
portland <- OpenStreetMap::openmap( c( lat[1], lon[1] ), c( lat[2], lon[2] ),zoom = 15, 'osm')
OSM映射位于墨卡托中,而商店坐标为经纬度,因此:
方法1:将地图转换为latlon
方法2:将坐标转换或转换为墨卡托
方法1-将地图转换为latlon
autoplot( OpenStreetMap::openproj( portland ) ) +
geom_point( data = stores, aes( x = longitude, y = latitude, size = 5 ) ) +
geom_text( data = stores, aes( x = longitude + .001, y = latitude, label = name ), hjust = 0 ) +
theme( legend.position = "none" )
方法2-将点转换为墨卡托
stores2 <- as.data.frame(
OpenStreetMap::projectMercator( lat = stores$latitude,
long = stores$longitude )
)
stores2 <- cbind( stores, stores2)
autoplot( portland ) +
geom_point( data = stores2, aes( x = x, y = y, size = 5 ) ) +
geom_text( data = stores2, aes( x = x + 100, y = y, label = name ), hjust = 0 ) +
theme( legend.position = "none" )