-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from R-ArcGIS/add-new-pages
Add release notes and system requirements
- Loading branch information
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: Releases | ||
--- | ||
|
||
- [`{arcgislayers}`](https://github.com/R-ArcGIS/arcgislayers/blob/main/NEWS.md) | ||
- [`{arcgisutils}`](https://github.com/R-ArcGIS/arcgisutils/blob/main/NEWS.md) | ||
- [`{arcgisgeocode}`](https://github.com/R-ArcGIS/arcgisgeocode/blob/main/NEWS.md) | ||
- [`{arcgisplaces}`](https://github.com/R-ArcGIS/arcgisplaces/blob/main/NEWS.md) | ||
- [`{arcgis}`](https://github.com/R-ArcGIS/arcgis) | ||
- [`{arcgisbinding}`](https://github.com/R-ArcGIS/r-bridge) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: System requirements | ||
--- | ||
|
||
# Operating System | ||
The R-ArcGIS Bridge’s `{arcgis}` meta-package for location services supports Mac OS, Windows, and most Linux distributions. | ||
In order to use the `{arcgisbinding}` package, you must have ArcGIS Pro ≥ 3.1 installed and licensed on a 64-bit Windows machine. | ||
|
||
# R Version | ||
The minimum of version of R supported is 4.1.0. However, we recommend updating your R version whenever possible to keep up with enhancements, features, and any security updates. | ||
|
||
# Dependencies | ||
The `{arcgis}` meta-package consists of many smaller R packages, each of these with different R package dependencies. However, all of them share a dependency on `{arcgisutils}`. | ||
|
||
`{arcgisutils}` is built in part using Rust via [extendr](https://extendr.github.io/). We recommend installing a binary from the [R-universe](https://r-arcgis.r-universe.dev/) or CRAN. | ||
```{r eval = FALSE} | ||
install.packages("arcgis", repos = "https://r-arcgis.r-universe.dev") | ||
``` | ||
If you need to install from source, `rustc` must be available with a minimum version of 1.69. We encourage using the most recent version of `rustc`. | ||
|
||
:::{.callout-tip} | ||
We recommend installing Rust via [`rustup`](https://rustup.rs/). If you are on Windows, you must add the Windows GNU target via `rustup target add x86_64-pc-windows-gnu`. | ||
::: |