An open API service indexing awesome lists of open source software.

https://github.com/ccamara/alternative_trails_map


https://github.com/ccamara/alternative_trails_map

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# Alternative Trails

An open source prototype for a an online map.

## Installation

1. Clone this repo: `git clone git@github.com:ccamara/alternative_trails.git`
2. Install `renv` package if not already installed (`remotes::install_github("rstudio/renv")`).
3. Run `renv::restore()` to restore the state of your project from `renv.lock` file.

### Notes

This repo has been configured to use some best practices for reproducible science:

1. [`renv`](https://rstudio.github.io/renv/articles/renv.html) to manage isolated environments with required dependencies and versions [+info](https://rstudio.github.io/renv/).
2. Repo as a Package [+info](https://support.rstudio.com/hc/en-us/articles/200486488-Developing-Packages-with-RStudio)

## Troubleshooting

If facing issues installing packages from Windows, run this command. (more info [in `renv` documentation](https://rstudio.github.io/renv/articles/renv.html#downloads-1), [in this discussion](https://community.rstudio.com/t/cant-install-packages-with-renv/96696/6) and [this question in SO](https://stackoverflow.com/questions/67228070/renvrestore-always-fails-in-windows))

``` r
Sys.setenv(RENV_DOWNLOAD_METHOD = "wininet")
#Sys.setenv(RENV_DOWNLOAD_METHOD = "libcurl")
```