-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDESCRIPTION
43 lines (43 loc) Β· 1.44 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
Package: fasterize
Title: Fast Polygon to Raster Conversion
Version: 1.1.0
Authors@R: c(
person("Noam", "Ross", , "[email protected]",
role = c("aut"),
comment=c("Original author", ORCID = "0000-0002-2136-0000")),
person("Michael", "Sumner",, "[email protected]", role = c("cre", "ctb"),
comment=c(ORCID = "0000-0002-2471-7511")),
person("Jeroen", "Ooms", role = "ctb"),
person("Antoine", "Stevens", role = "ctb"),
person("EcoHealth Alliance", role="cph"),
person("USAID PREDICT", role = "fnd"))
Description: Provides a drop-in replacement for rasterize() from the 'raster'
package that takes polygon vector or data frame objects, and is much faster.
There is support for the main options provided by the rasterize() function,
including setting the field used and background value, and options for
aggregating multi-layer rasters. Uses the scan line algorithm attributed to
Wylie et al. (1967) <doi:10.1145/1465611.1465619>.
License: MIT + file LICENSE
URL: https://github.com/ecohealthalliance/fasterize
BugReports: https://github.com/ecohealthalliance/fasterize/issues
RoxygenNote: 7.3.2
Suggests:
testthat,
microbenchmark,
knitr,
rmarkdown,
spelling,
geos
Depends:
R (>= 3.3.0)
Imports:
Rcpp,
raster (>= 2.8-3),
wk
LinkingTo:
Rcpp,
RcppArmadillo
Roxygen: list(markdown = TRUE)
Encoding: UTF-8
VignetteBuilder: knitr
Language: en-US