-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
147 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: fasterize | ||
Title: Fast Polygon to Raster Conversion | ||
Version: 1.0.4.9002 | ||
Version: 1.0.5 | ||
Authors@R: c( | ||
person("Noam", "Ross", , "[email protected]", | ||
role = c("aut"), | ||
|
@@ -20,15 +20,15 @@ Description: Provides a drop-in replacement for rasterize() from the 'raster' | |
License: MIT + file LICENSE | ||
URL: https://github.com/ecohealthalliance/fasterize | ||
BugReports: https://github.com/ecohealthalliance/fasterize/issues | ||
RoxygenNote: 7.2.1 | ||
SystemRequirements: C++11 | ||
RoxygenNote: 7.2.3 | ||
Suggests: | ||
testthat, | ||
microbenchmark, | ||
knitr, | ||
rmarkdown, | ||
sf, | ||
spelling | ||
spelling, | ||
geos | ||
Depends: | ||
R (>= 3.3.0) | ||
Imports: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Generated by using Rcpp::compileAttributes() -> do not edit by hand | ||
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 | ||
|
||
fasterize <- function(sf, raster, field = NULL, fun = "last", background = NA_real_, by = NULL) { | ||
.Call('_fasterize_fasterize', PACKAGE = 'fasterize', sf, raster, field, fun, background, by) | ||
fasterize_cpp <- function(sf, raster, field = NULL, fun = "last", background = NA_real_, by = NULL) { | ||
.Call('_fasterize_fasterize_cpp', PACKAGE = 'fasterize', sf, raster, field, fun, background, by) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
## R CMD check results | ||
|
||
0 errors | 0 warnings | 0 notes | ||
# fasterize 1.0.5 | ||
|
||
* Submitted by new maintainer, Michael Sumner ([email protected]), change from Noam Ross ([email protected]) as advised by email. | ||
|
||
* Fixes CRAN warnings on bitwise operator and unused LazyData. | ||
|
||
* Fixes implicit type warnings found with clang. | ||
* Fixes for roxygen namespace documentation and remove specific C++11 requirement. | ||
|
||
|
||
|
||
Thanks! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
R version 3.4.1 (2017-06-30) -- "Single Candle" | ||
Copyright (C) 2017 The R Foundation for Statistical Computing | ||
Platform: x86_64-apple-darwin15.6.0 (64-bit) | ||
|
||
R is free software and comes with ABSOLUTELY NO WARRANTY. | ||
You are welcome to redistribute it under certain conditions. | ||
Type 'license()' or 'licence()' for distribution details. | ||
|
||
R is a collaborative project with many contributors. | ||
Type 'contributors()' for more information and | ||
'citation()' on how to cite R or R packages in publications. | ||
|
||
Type 'demo()' for some demos, 'help()' for on-line help, or | ||
'help.start()' for an HTML browser interface to help. | ||
Type 'q()' to quit R. | ||
|
||
> if(requireNamespace('spelling', quietly = TRUE)) | ||
+ spelling::spell_check_test(vignettes = TRUE, error = FALSE, | ||
+ skip_on_cran = TRUE) | ||
All Done! | ||
> | ||
> proc.time() | ||
user system elapsed | ||
0.372 0.039 0.408 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters