ropensci / rnaturalearth

An R package to hold and facilitate interaction with natural earth map data :earth_africa:
http://ropensci.github.io/rnaturalearth/
Other
214 stars 24 forks source link

South Sudan data missing #56

Closed mesfind closed 1 year ago

mesfind commented 2 years ago

ssudan_sf <- ne_states(country = "South Sudan", returnclass = "sf")

Error in ne_states(country = "South Sudan", returnclass = "sf") : No such country (South Sudan) in the data

PMassicotte commented 1 year ago

@mesfind Is this data available here: https://www.naturalearthdata.com/

mps9506 commented 1 year ago

South Sudan is in the following dataset:

south_sudan <- ne_countries(type = "countries", returnclass = "sf") |> 
  filter(admin == "South Sudan")