-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
49 lines (33 loc) · 1.67 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# arcgis
<!-- badges: start -->
[![R-CMD-check](https://github.com/R-ArcGIS/arcgis/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/R-ArcGIS/arcgis/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->
**NOTE**: under active development! We'd love to hear from you on how you would like to use locations services R packages. Please [start a discussion](https://github.com/R-ArcGIS/arcgis/discussions) and we'll get back to you there!
arcgis is a meta-package that loads ArcGIS location services packages. As of this writing, it includes the packages [`{arcgislayers}`](https://github.com/R-ArcGIS/arcgislayers), and [`{arcgisutils}`](https://github.com/R-ArcGIS/arcgisutils).
- `arcgislayers` is the workhorse package that interacts with feature services and image servers
- `arcgisutils` is a developer oriented package that is used for crafting requests to be used by other location service packages such as `arcgislayers`
Please refer to [`arcgislayers`](https://r.esri.com/arcgislayers/) package site for examples.
## Installation
You can install the development version of arcgis from [GitHub](https://github.com/) with:
``` r
# install.packages("remotes")
remotes::install_github("R-ArcGIS/arcgis")
```
## Example
```{r example}
library(arcgis)
health_rankings_url <- "https://services.arcgis.com/P3ePLMYs2RVChkJx/arcgis/rest/services/2022_County_Health_Rankings/FeatureServer"
arc_open(health_rankings_url)
```