Skip to content

Commit 8a88835

Browse files
authored
Merge pull request #36 from R-ArcGIS/update-editing
Minor updates
2 parents 3991f51 + 51ff3d9 commit 8a88835

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/auth/storing-credentials.qmd

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,15 @@ ARCGIS_SECRET=your-super-secret-key
5959

6060
# used for publishing and Username/Password auth
6161
ARCGIS_USER=your-user-name
62+
ARCGIS_PASSWORD=your-password
6263

6364
# used for API Key auth
6465
ARCGIS_API_KEY=your-developer-api-key
6566

6667
# specify if not using ArcGIS Online
6768
ARCGIS_HOST=https://your-portal.com/
6869
```
70+
71+
:::{.callout-warning}
72+
Be sure to omit the trailing `/home` from the URL you enter for the ARCGIS_HOST environment variable.
73+
:::

docs/editing/add-features.qmd

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,7 @@ Capabilities: Create,Delete,Query,Update,Editing
116116
We can see that the `FeatureLayer` now has 101 features as opposed to the original 100. To sanity check, we can query `nc` to see how the value comes back.
117117

118118
```{r}
119-
nc_avgs <- nc |>
120-
filter(NAME == "Total") |>
121-
collect()
122-
119+
nc_avgs <- arc_select(nc, where = 'NAME = "Total"')
123120
nc_avgs
124121
```
125122
```

0 commit comments

Comments
 (0)