Skip to content

Commit cc48616

Browse files
committed
update readme to install arcgis instead of arcgislayers. closes #135
1 parent b61a676 commit cc48616

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ The goal of `{arcgislayers}` is to provide an R interface to the ArcGIS REST API
2626

2727
## Installation
2828

29-
You can install the development version of arcgis like so:
29+
arcgislayers requires arcgisutils for authorization. It is recommend you install and use the metapackage `{arcgis}`. You can install the development version of arcgis like so:
3030

3131
``` r
32-
pak::pkg_install("R-ArcGIS/arcgislayers", dependencies = TRUE)
32+
remotes::install_github("r-arcgis/arcgis", dependencies = TRUE)
3333
```
3434

3535
## Basic usage

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ REST API
1616

1717
## Installation
1818

19-
You can install the development version of arcgis like so:
19+
arcgislayers requires arcgisutils for authorization. It is recommend you
20+
install and use the metapackage `{arcgis}`. You can install the
21+
development version of arcgis like so:
2022

2123
``` r
22-
pak::pkg_install("R-ArcGIS/arcgislayers", dependencies = TRUE)
24+
remotes::install_github("r-arcgis/arcgis", dependencies = TRUE)
2325
```
2426

2527
## Basic usage
2628

2729
``` r
2830
library(arcgis)
2931
#> Attaching core arcgis packages:
30-
#> - {arcgisutils} v0.1.0
32+
#> - {arcgisutils} v0.1.1.9001
3133
#> - {arcgislayers} v0.1.0
3234
```
3335

@@ -49,7 +51,7 @@ furl <- "https://services.arcgis.com/P3ePLMYs2RVChkJx/ArcGIS/rest/services/USA_C
4951
county_fl <- arc_open(furl)
5052

5153
county_fl
52-
#> <FeatureLayer <3143 features, 12 fields>>
54+
#> <FeatureLayer>
5355
#> Name: USA Counties - Generalized
5456
#> Geometry Type: esriGeometryPolygon
5557
#> CRS: 4326

0 commit comments

Comments
 (0)