Recent Releases of rnaturalearthdata
rnaturalearthdata - rnaturalearthdata 1.0.0
Breaking changes
This release introduces breaking changes by discontinuing support for the sp object in favor of sf. Although the sp object 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 prompted the decision to transition to sf.
Here is the list of affected objects that are now returned as Spatial Feature (sf):
| coastline110 | world coastlines from Natural Earth | | ----------------- | ------------------------------------------------- | | coastline50 | world coastlines from Natural Earth | | countries110 | world country polygons from Natural Earth | | countries50 | world country polygons from Natural Earth | | mapunits110 | world mapunit polygons from Natural Earth | | mapunits50 | world mapunit polygons from Natural Earth | | sovereignty110 | world sovereignty polygons from Natural Earth | | sovereignty50 | world sovereignty polygons from Natural Earth | | states50 | state (admin level 1) polygons from Natural Earth | | tinycountries110 | tiny countries points from Natural Earth | | tinycountries50 | tiny countries points from Natural Earth |
If changing the return type to sf causes too many issues with your existing code, you can still convert it back to sp.
```
- R
Published by PMassicotte over 2 years ago