Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...