Skip to content

Commit

Permalink
Merge pull request #25 from R-ArcGIS/copyedits
Browse files Browse the repository at this point in the history
Copyedits
  • Loading branch information
JosiahParry authored Sep 13, 2024
2 parents 84017cb + 3e6de03 commit 3e853f2
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 33 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ _site/
.quarto
./quarto/*
/.quarto/
.RData
.Rhistory
.Rproj
8 changes: 4 additions & 4 deletions docs/auth/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Overview
---

There a number of times when you will need to verify who you say you are when using ArcGIS location services. This is done through a process called **authentication**. Authentication is required when you want to
There a number of times when you will need to verify who you say you are when using ArcGIS location services. This is done through a process called **authentication**. Authentication is required when you want to:

- access private content
- publish your own layers
Expand All @@ -12,12 +12,12 @@ There a number of times when you will need to verify who you say you are when us

## Sign up for an account

To access certain content, services, or organizations, you will need to be signed in to eithe an ArcGIS Developer account, ArcGIS Online account, or ArcGIS Enterprise account. The type of account, user type, and role you need depends on the resource you need to access and the operations you wish to undertake.
To access certain content, services, or organizations, you will need to be signed in to either an ArcGIS Developer account, ArcGIS Online account, or ArcGIS Enterprise account. The type of account, user type, and role you need depends on the resource you need to access and the operations you wish to undertake.

If you do not have an account, select one of the options below:

- Get started for free with ArcGIS Platform
- Get a free trial of ArcGIS Online
- [Get started for free with ArcGIS Platform](https://www.esri.com/en-us/arcgis/products/arcgis-location-platform/overview)
- [Get a free trial of ArcGIS Online](https://www.esri.com/en-us/arcgis/products/arcgis-online/overview)

:::{.callout-tip}
To get an account for an existing ArcGIS organization contact your ArcGIS Online or ArcGIS Enterprise administrator.
Expand Down
23 changes: 0 additions & 23 deletions docs/get-started.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,6 @@ The R-ArcGIS Bridge R packages that interact with location services are containe
- [`{arcgisgeocode}`](https://github.com/R-ArcGIS/arcgisgeocode): geocode addresses and reverse geocode point data
- [`{arcgisplaces}`](https://github.com/R-ArcGIS/arcgisplaces): access rich point-of-interest data from the ArcGIS Places Service


## Install the R packages

To install the packages run:

```r
install.packages("arcgis")
```

Once the installation has finished you can load all of the packages using

```r
library(arcgis)
```

Or, you can install the packages individually as well by running:

```r
pkgs <- c("arcgisutils", "arcgislayers", "arcgisgeocode", "arcgisplaces")

install.packages(pkgs)
```

## Learn more

- Reading Data
Expand Down
14 changes: 14 additions & 0 deletions docs/installation.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ To install the `{arcgis}` location service metapackage, run the following from y
install.packages("arcgis")
```

Once the installation has finished you can load all of the packages using:

```r
library(arcgis)
```

Or, you can install the packages individually as well by running:

```r
pkgs <- c("arcgisutils", "arcgislayers", "arcgisgeocode", "arcgisplaces")

install.packages(pkgs, repos = c("https://r-arcgis.r-universe.dev", "https://cloud.r-project.org"))
```

# Installing `{arcgisbinding}`

**`arcgisbinding`** is an R package that enables communication between ArcGIS Pro
Expand Down
2 changes: 2 additions & 0 deletions docs/release-notes.qmd → docs/releases.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: Releases
uid: releases
freeze: true
---

- [`{arcgislayers}`](https://github.com/R-ArcGIS/arcgislayers/blob/main/NEWS.md)
Expand Down
4 changes: 3 additions & 1 deletion docs/system-requirements.qmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: System requirements
---
uid: system-requirements
freeze: true
---

# Operating System
The R-ArcGIS Bridge’s `{arcgis}` meta-package for location services supports Mac OS, Windows, and most Linux distributions.
Expand Down
9 changes: 4 additions & 5 deletions index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@

The R-ArcGIS Bridge is a collection of R packages designed to integrate the R language with the ArcGIS Ecosystem. The R-ArcGIS Bridge can be used to:

- Create R-based **geoprocessing tools**
- Create R-based geoprocessing tools
- Access and publish data on ArcGIS Online, Enterprise, or Platform
- Geocode addresses at scale
- Access detailed point of interest (POI) data

## Where to start

- Discover [key features]() of the R-ArcGIS Bridge
- Install the R packages
- Explore tutorials sample code

1. Discover key features of the R-ArcGIS Bridge.
2. Install the R packages.
3. Explore tutorials and sample code.

0 comments on commit 3e853f2

Please sign in to comment.