R-ArcGIS / arcgislayers

ArcGIS Location Services
http://r.esri.com/arcgislayers/
Apache License 2.0
39 stars 9 forks source link

Fix README to include `arcgis` installation #135

Closed jadeynryan closed 8 months ago

jadeynryan commented 8 months ago

The current pak install code in the README does not also install the arcgis metapackage. So the Basic usage section errors when trying to attach the arcgis package.

I propose the following revision:

Installation

You can install the development version of arcgislayers and the arcgis metapackage like so:

pak::pkg_install(
  c("R-ArcGIS/arcgis", "R-ArcGIS/arcgislayers"),
  dependencies = TRUE
)

Or change library(arcgis) to library(arcgislayers) in the Basic usage section.