-
Notifications
You must be signed in to change notification settings - Fork 2
/
DESCRIPTION
84 lines (84 loc) · 2.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Package: roads
Title: Road Network Projection
Version: 1.2.0.9000
Authors@R:
c(person(given = "Sarah",
family = "Endicott",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-9644-5343")),
person(given = "Kyle",
family = "Lochhead",
role = c("aut"),
email = "[email protected]"),
person(given = "Josie",
family = "Hughes",
role = c("aut"),
email = "[email protected]"),
person(given = "Patrick",
family = "Kirby",
role = c("aut")),
person(given="Her Majesty the Queen in Right of Canada as represented by the Minister of the Environment",
role = c("cph"),
comment = "Copyright holder for included functions buildSimList, getLandingsFromTarget, pathsToLines, plotRoads, projectRoads, rasterizeLine, rasterToLineSegments"),
person(given = "Province of British Columbia", role = c("cph"),
comment = "Copyright holder for included functions getGraph, lcpList, mstList, shortestPaths, getClosestRoad, buildSnapRoads"))
Date: 2024-06-26
URL: https://github.com/LandSciTech/roads,
https://landscitech.github.io/roads/
Description: Iterative least cost path and minimum spanning tree methods for projecting
forest road networks. The methods connect a set of target points to an existing
road network using 'igraph' <https://igraph.org> to identify least cost routes.
The cost of constructing a road segment between adjacent pixels is determined
by a user supplied weight raster and a weight function; options include the
average of adjacent weight raster values, and a function of the elevation
differences between adjacent cells that penalizes steep grades. These road
network projection methods are intended for integration into R workflows and
modelling frameworks used for forecasting forest change, and can be applied
over multiple time-steps without rebuilding a graph at each time-step.
License: Apache License (>= 2)
Encoding: UTF-8
LazyData: true
Imports:
dplyr,
igraph (>= 2.0.3),
data.table,
sf,
units,
rlang,
methods,
tidyselect,
terra
RoxygenNote: 7.3.2
Suggests:
testthat (>= 2.1.0),
knitr,
rmarkdown,
viridis,
bench,
gdistance
VignetteBuilder: knitr
Depends: R (>= 2.10)
Collate:
'CLUSexample.R'
'buildSimList.R'
'buildSnapRoads.R'
'demoScen.R'
'getClosestRoad.R'
'getDistFromSource.R'
'getGraph.R'
'weightFunctions.R'
'getLandingsFromTarget.R'
'lcpList.R'
'mstList.R'
'pathsToLines.R'
'projectRoads.R'
'rasterToLineSegments.R'
'shortestPaths.R'
'plotRoads.R'
'rasterizeLine.R'
'prepExData.R'
'roads-package.R'
'dem_example.R'
BugReports: https://github.com/LandSciTech/roads/issues
Roxygen: list(markdown = TRUE)