Skip to content

Commit

Permalink
Merge pull request #27 from R-ArcGIS/update-uids
Browse files Browse the repository at this point in the history
update UIDs
  • Loading branch information
JosiahParry authored Sep 18, 2024
2 parents 8fdde7f + 96b97fc commit 4bd23a8
Show file tree
Hide file tree
Showing 22 changed files with 59 additions and 10 deletions.
1 change: 1 addition & 0 deletions docs/auth/connecting-to-a-portal.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Connect to your Portal"
uid: authenticating-with-r
---

In order to create content, interact with non-public items, save geocoding results, or use POI data with the Places Service, you will need to authenticate through ArcGIS Online, ArcGIS Enterprise, or Platform.
Expand Down
1 change: 1 addition & 0 deletions docs/auth/index.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Overview
uid: auth-index
---

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:
Expand Down
1 change: 1 addition & 0 deletions docs/auth/storing-credentials.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Storing credentials
uid: storing-credentials
---

Authentication requires that you provide sensitive data to the R authentication R functions. These are used to verify your identity to the services that you are calling. These sensitive variables **should never be written down in your code**.
Expand Down
1 change: 1 addition & 0 deletions docs/editing/add-features.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Adding features
uid: editing-add-features
---

```{r, include = FALSE}
Expand Down
1 change: 1 addition & 0 deletions docs/editing/delete-features.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Deleting features
uid: editing-delete-features
---

```{r include=FALSE}
Expand Down
1 change: 1 addition & 0 deletions docs/editing/overview.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Editing layers
uid: editing-overview
---

Published feature layers often are living datasets. There may be new features that need to be added. Or, sometimes features may be need to be deleted as they are no longer present. Or maybe, the attributes of the feature have become obsolete and need to be updated.
Expand Down
5 changes: 3 additions & 2 deletions docs/editing/overwrite-features.qmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: "Overwrite Hosted Feature Layer"
freeze: auto
title: Truncate and append features
uid: editing-overwrite-features
freeze: true
---

```{r include = FALSE}
Expand Down
3 changes: 2 additions & 1 deletion docs/editing/update-features.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Updating features"
title: Updating features
uid: editing-update-features
---

```{r include = FALSE}
Expand Down
2 changes: 2 additions & 0 deletions docs/geocode/bulk-geocoding.qmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
title: "Bulk geocoding"
uid: geocoding-bulk
---


```{r include=FALSE}
knitr::opts_chunk$set(message = FALSE)
```
Expand Down
5 changes: 3 additions & 2 deletions docs/geocode/forward-geocoding.qmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
title: Forward Geocoding
---
title: Forward geocoding
uid: geocoding-forward
---

Forward geocoding is the process of taking an address or place information and identifying its location on the globe.

Expand Down
5 changes: 5 additions & 0 deletions docs/geocode/overview.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
---
title: Overview
uid: geocoding-overview
keywords:
- geocoding
description: Learn about geocoding with R and ArcGIS.
sidebar: 'Got documentation feedback? <a class="launch-link" href=" https://arcg.is/1H1aza">Take this short survey&nbsp;<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" style="display:inline-block;" ><path d="M1 1h8v1H2v12h12V7h1v8H1zm7.325 7.382L14 2.707V5h1V1h-4v1h2.293L7.618 7.675z"></path></svg></a>'
---

Addresses represent a physical place. They're meant to be interpreted by people and help guide navigation of the built environment. Addresses represent a geographical place but lack geographic data.
Expand Down
8 changes: 6 additions & 2 deletions docs/geocode/reverse-geocoding.qmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
---
title: "Reverse Geocoding"
title: Reverse geocoding
uid: geocoding-reverse
keywords:
- geocoding
description: Learn about geocoding with R and ArcGIS.
sidebar: 'Got documentation feedback? <a class="launch-link" href=" https://arcg.is/1H1aza">Take this short survey&nbsp;<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" style="display:inline-block;" ><path d="M1 1h8v1H2v12h12V7h1v8H1zm7.325 7.382L14 2.707V5h1V1h-4v1h2.293L7.618 7.675z"></path></svg></a>'
---

Often you may coordinates of locations but need their addresses as well. **Reverse geocoding** finds an address associated with a location on earth.

Use `arcgisgeocode::reverse_geocode()` to perform reverse geocoding. Using this fuction you can
Expand Down
1 change: 1 addition & 0 deletions docs/geoprocessing/creating-gp-tools.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Making Geoprocessing Tools"
uid: creating-gp-tools
---

The basic anatomy of an R-based GP script tool is like so:
Expand Down
1 change: 1 addition & 0 deletions docs/geoprocessing/overview.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Overview
uid: geoprocessing-overview
---

Much like a Python geoprocessing (GP) [script tool](https://pro.arcgis.com/en/pro-app/latest/help/analysis/geoprocessing/basics/create-a-python-script-tool.htm), you can also create R-based GP script tools and toolboxes utilizing the power of R.
Expand Down
10 changes: 8 additions & 2 deletions docs/get-started.qmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
---
title: "Get started"
---
title: Get started
uid: get-started
uids:
- r-arcgis-bridge-get-started
description: Learn how to develop with the R-ArcGIS Bridge and ArcGIS location services.
keywords: [guide, tutorials, apps, r-arcgis bridge]
sidebar: 'Got documentation feedback? <a class="launch-link" href=" https://arcg.is/1H1aza">Take this short survey&nbsp;<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" style="display:inline-block;" ><path d="M1 1h8v1H2v12h12V7h1v8H1zm7.325 7.382L14 2.707V5h1V1h-4v1h2.293L7.618 7.675z"></path></svg></a>'
---

The R-ArcGIS Bridge supports working with both ArcGIS Pro as well as ArcGIS location services.

Expand Down
1 change: 1 addition & 0 deletions docs/installation.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Install and set up"
uid: installation
---

Before installing, we recommend that you have the newest version of R installed. At minimum, we sugest you use R version 4.3 or higher.
Expand Down
1 change: 1 addition & 0 deletions docs/layers/overview.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Overview
uid: layers-overview
---

Layers represent represent a data service hosted by ArcGIS Online, ArcGIS Enterprise, Platform, or even an ArcGIS Hub site. Layers are how you will interact with your remotely hosted data.
Expand Down
2 changes: 2 additions & 0 deletions docs/layers/publishing.qmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: "Publishing from R"
uid: publishing-from-r
subtitle: "Create Hosted ArcGIS Online or Enterprise Feature Services from R"
freeze: true
---

In addition to consuming data as an R user, you may also want to publish data as a hosted feature service. In this tutorial, you will learn how to publish an `sf` object <!-- or a `data.frame`--> to ArcGIS Online or Enterprise.
Expand Down
2 changes: 1 addition & 1 deletion docs/layers/read-layers.qmd
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: "Reading Feature Services"
uid: reading-feature-services
freeze: true
---

ArcGIS Online and Enterprise web services can easily be read into R using`{arcgislayers}`. Supported service types include:

- [FeatureServer](https://developers.arcgis.com/rest/services-reference/enterprise/feature-service.htm)
Expand Down
1 change: 1 addition & 0 deletions docs/layers/read-rasters.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Reading Image Services"
uid: reading-image-services
freeze: true
---

Expand Down
1 change: 1 addition & 0 deletions docs/places/overview.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Overview
uid: places-overview
---


Expand Down
15 changes: 15 additions & 0 deletions index.qmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
---
title: R-ArcGIS Bridge
uid: index
uids:
- r-arcgis-bridge-index
description: Learn how to develop with Esri-Leaflet and ArcGIS location services.
keywords: [guide, tutorials, apps, esri leaflet]
svgs:
- "./shared/images/get-started.svg"
- "./shared/images/arcgis-location-services.svg"
- "./shared/images/apis-and-sdks.svg"
- "./shared/images/tutorials.svg"
- "./shared/images/arcgis-platform.svg"
sidebar: 'Got documentation feedback? <a class="launch-link" href=" https://arcg.is/1H1aza">Take this short survey&nbsp;<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" style="display:inline-block;" ><path d="M1 1h8v1H2v12h12V7h1v8H1zm7.325 7.382L14 2.707V5h1V1h-4v1h2.293L7.618 7.675z"></path></svg></a>'
---
# R-ArcGIS Bridge

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:
Expand Down

0 comments on commit 4bd23a8

Please sign in to comment.