Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.1k views
in Technique[技术] by (71.8m points)

ggplot2 - How to plot a map in R Studio of Argentina`s states and write over the map

I wanna plot a map of Argentina that contains the limits between the different states (Provinces) of Argentina. After that, I want to write some things over special latitudes and longitudes in the map. Is there any way to do that? I only found ways to plot Argentina that do NOT contain the limits between provinces.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here's a tmap solution:

library(tmap)
library(sf)

# loading shapefile 
provinces <- st_read(dsn = "arg_adm_unhcr2017_shp/arg_admbnda_adm1_unhcr2017.shp") %>% st_as_sf()

tm_shape(provinces) +
    tm_fill(col = "gray") +
    tm_text("ADM1_ES", size = 1) +
tm_borders(lwd = 1, col = "black") 

The shapefile containing the province borders is available from: https://data.humdata.org/dataset/argentina-administrative-level-0-boundaries.

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...