用传单绘制特定国家的地图

Oml*_*ere 5 maps r geospatial leaflet r-leaflet

我想使用leaflet带有R的包来绘制特定国家的地图,例如意大利,西班牙等。

我检查了该函数的基本示例,setView()并尝试为 latitude 和 longitutde arg 提供两个值的向量:

m <- leaflet() %>%
  addTiles() %>%  # Add default OpenStreetMap map tiles
  setView(lng=c(46.00,48.00), lat=c(2.00,6.00), zoom = 4)
m  # Print the map (map is not centered on a country, it's just a test)
Run Code Online (Sandbox Code Playgroud)

但是我将永远无法在我的屏幕上显示特定国家/地区,例如此功能的结果:

library(maps)
map('italy', fill = TRUE, col = 1:10)
Run Code Online (Sandbox Code Playgroud)

最后,我只想通过在我的地图上(有纬度和经度)对它们进行地理定位来绘制一些点

是否可能或该包maps是否足以完成此任务(即使我没有找到放大的方法)?

Jan*_*uGe 5

maps包将 shapefile 数据作为顶点传送。Afaik 没有像这样的东西包含在传单中。因此,您将不得不在其他地方获取数据。这是我的建议:

# Get an Italy shapefile
download.file(url = 'http://biogeo.ucdavis.edu/data/diva/adm/ITA_adm.zip', 
              destfile = 'italy.zip')
unzip(zipfile = 'italy.zip')

# Load libraries
library(sp)
library(rgdal)
italy <- readOGR('ITA_adm0.shp')

library(leaflet)
leaflet(italy) %>%
  addPolygons() %>%
  addTiles()
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

添加在:

您可以maps使用以下代码查看保存在包中的构成意大利的顶点。

library(maps)
italy <- map('italy', fill = TRUE, col = 1:10)
italy_coords <- cbind(italy$x, italy$y)
plot(italy_coords)
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明


Cre*_*nES 5

您可以只使用从maps. 当然,可以使用任何其他合适的来源,就像@JanLauGe提到的那样。

获得特定国家/地区的多边形后,您可以将它们转换为SpatialPolygonsDataFrame. 如果只想显示感兴趣的区域,也可以创建蒙版。

当然,之后您可以使用标准的 Leaflet 方法轻松添加任何点或标记,例如addCircleMarkers( lng, lat ).

library(ggmap)
library(leaflet)
library(magrittr)
library(maps)
library(maptools)
library(raster)
library(rgeos)
library(sp)

country   <- 'italy';
zoomLevel <- 6;

# Get the map ( class is map )
ita.map <- map( country, fill = TRUE, col = 1, plot = F );

# Get the geo center for lazyness
ita.center <- geocode( "italy" );

# Extract the names from ita.map.
# e.g. "Trapani:I. Le Egadi:I. Marettimo" -> "Trapani"
# note: any other solution is fine, because we don't really need them, but they
# can be useful later
ita.map.ids <- sapply( strsplit( ita.map$names, ':' ), function(x) x[1] );
# Convert our map object to SpatialPolygons
ita.sp <- map2SpatialPolygons( ita.map, IDs=ita.map.ids,
    proj4string=CRS("+proj=longlat +datum=WGS84"))

# Note: if you only need a unified polygon, it can be achieved by fortify
# ita.sp.df <- fortify( ita.sp );

# Finally convert our SpatialPolygons to SpatialPolygonsDataFrame
tmp.id.df <- data.frame( ID = names(ita.sp) );
rownames( tmp.id.df ) <- names( ita.sp );
ita.spdf <- SpatialPolygonsDataFrame( ita.sp, tmp.id.df );

# Visualize
l.ita.map <- leaflet( ita.spdf ) %>% 
    setView(lng = ita.center$lon, lat = ita.center$lat, zoom = zoomLevel ) %>%
    addTiles() %>%
    addPolygons( data = ita.spdf, weight = 1, fillColor = "blue", fillOpacity = 0.5 );

l.ita.map
Run Code Online (Sandbox Code Playgroud)

来自 ploygons 的意大利地图

####### Alternatively if a mask if needed #######

# Get a plane of the world
wld.sp <- rasterToPolygons( raster(ncol = 1, nrow = 1, crs = proj4string(ita.sp) ) );
# Cut our country polygon from the plane to get our target mask
ita.sp.mask <- gDifference( wld.sp, ita.sp );

# Convert our ita.sp.mask (SpatialPolygons) to SpatialPolygonsDataFrame
tmp.id.df <- data.frame( ID = "1" );
rownames( tmp.id.df ) <- names( ita.sp.mask );
ita.mask.spdf <- SpatialPolygonsDataFrame( ita.sp.mask, tmp.id.df );

# Coordinates of Rome
ita.rome.center <- geocode( "Rome, italy" );

# Visualize
l.ita.mask.map <- leaflet( ita.mask.spdf ) %>% 
    setView( lng = ita.center$lon, lat = ita.center$lat, zoom = zoomLevel ) %>%
    addTiles() %>%
    addPolygons( data = ita.mask.spdf, fillColor = "white", fillOpacity = 1.0, color = "black", weight = 1 ) %>%
addCircleMarkers(lng = ita.rome.center$lon, lat = ita.rome.center$lat );

l.ita.mask.map;
Run Code Online (Sandbox Code Playgroud)

来自 ploygons 的意大利蒙面地图

感谢@fdetsch建议