-
Notifications
You must be signed in to change notification settings - Fork 6
/
DESCRIPTION
59 lines (59 loc) · 2.29 KB
/
DESCRIPTION
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
48
49
50
51
52
53
54
55
56
57
58
59
Package: slopes
Title: Calculate Slopes of Roads, Rivers and Trajectories
Version: 1.0.1
Authors@R: c(
person("Robin", "Lovelace", email = "[email protected]", role = c("aut","cre"),
comment = c(ORCID = "0000-0001-5679-6536")),
person("Rosa", "Félix", email = "[email protected]", role = c("aut"),
comment = c(ORCID = "0000-0002-5642-6006")),
person("Joey", "Talbot", email = "[email protected]", role = c("aut"),
comment = c(ORCID = "0000-0002-6520-4560")),
person("Dan", "Olner", role = c("rev"), comment = "Dan reviewed the package for rOpenSci, see https://github.com/ropensci/software-review/issues/420#issuecomment-857662657 "),
person("Andy", "Teucher", role = c("rev"), comment = "Andy reviewed the package for rOpenSci, see https://github.com/ropensci/software-review/issues/420#issuecomment-858231647 ")
)
Description: Functions and example data to support research into the
slope (also known as longitudinal gradient or steepness)
of linear geographic entities such as roads <doi:10.1038/s41597-019-0147-x>
and rivers <doi:10.1016/j.jhydrol.2018.06.066>.
The package was initially developed to calculate the steepness of street segments
but can be used to calculate steepness of any linear feature that can be
represented as LINESTRING geometries in the 'sf' class system.
The package takes two main types of input data for slope calculation: vector geographic
objects representing linear features, and raster geographic objects with elevation values
(which can be downloaded using functionality in the package)
representing a continuous terrain surface.
Where no raster object is provided the package attempts to download elevation
data using the 'ceramic' package.
License: GPL-3
URL: https://github.com/ropensci/slopes/, https://docs.ropensci.org/slopes/
BugReports: https://github.com/ropensci/slopes/issues
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Imports:
sf,
raster,
methods,
pbapply,
geodist,
colorspace
Depends:
R (>= 2.10)
Suggests:
terra,
knitr,
rmarkdown,
ceramic,
bookdown,
covr,
testthat,
osmextract,
stplanr,
dplyr,
tmap,
leaflet,
bench
Config/Needs/website: generics
VignetteBuilder: knitr
Config/testthat/edition: 3