https://github.com/ccamara/alternative_trails_map
https://github.com/ccamara/alternative_trails_map
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ccamara/alternative_trails_map
- Owner: ccamara
- License: gpl-3.0
- Created: 2022-03-24T08:20:12.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-21T14:36:42.000Z (over 3 years ago)
- Last Synced: 2025-04-07T04:31:49.463Z (about 1 year ago)
- Language: HTML
- Size: 54.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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")
```