Skip to content

Releases: ropensci/rnaturalearth

rnaturalearth 1.0.1

15 Dec 12:01
Compare
Choose a tag to compare
v1.0.1

Increment version number to 1.0.1

rnaturalearth 1.0.0

12 Dec 16:34
Compare
Choose a tag to compare

Breaking changes

This is a breaking changes release that ends support to sp object in favour of more modern interfaces (sf and terra). Although that sp is still available on CRAN, it is no longer being actively developed (https://geocompx.org/post/2023/rgdal-retirement/). This is the main reason that motivated the choice to transition toward sf (the default) and terra.

Users can choose either get an sf or SpatVector using the returnclass argument:

ne_countries(returnclass = "sf")
ne_countries(returnclass = "sv")

Affected functions are ne_countries(), ne_coastline(), ne_states(), ne_load() and ne_download().

If changing the return type to sf creates too many problems to your existing code, you can still convert it back to sp :

countries <- ne_countries(returnclass = "sf")

rnaturalearth 0.3.3

06 Jun 13:18
Compare
Choose a tag to compare
  • Using lifecycle to indicate that support of sp object will be eventually droped. Users should now use ne_download(returnclass = "sf"), instead of ne_download(returnclass = "sp").
  • terra is now included in the Imports section.