-
Notifications
You must be signed in to change notification settings - Fork 5
/
README.Rmd
47 lines (35 loc) · 1.47 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# RSAGA
<!-- badges: start -->
[![Travis build status](https://travis-ci.org/r-spatial/RSAGA.svg?branch=master)](https://travis-ci.org/r-spatial/RSAGA)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
<!-- badges: end -->
# Introduction
Latest RSAGA version with support for SAGA GIS 2.3 LTS - 8.4.1
Provides access to geocomputing and terrain analysis
functions of the geographical information system (GIS) ['SAGA' (System for
Automated Geoscientific Analyses)](http://saga-gis.org/en/index.html) from within R by running the command
line version of SAGA. This package furthermore provides several R functions
for handling ASCII grids, including a flexible framework for applying local
functions (including predict methods of fitted models) and focal functions to
multiple grids. SAGA GIS is available under GPLv2 / LGPLv2 licence from
http://sourceforge.net/projects/saga-gis/.
## Installation
You can install RSAGA from CRAN with:
```{r cran-installation, eval=FALSE}
install.packages("RSAGA", dependencies = TRUE)
```
Or you can get the latest version from GitHub with:
```{r gh-installation-dep, eval = FALSE}
devtools::install_github("r-spatial/RSAGA", dependencies = TRUE)
```