Skip to content

Commit

Permalink
v
Browse files Browse the repository at this point in the history
  • Loading branch information
rhijmans committed Dec 15, 2023
1 parent e536db7 commit 7be2717
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: terra
Type: Package
Title: Spatial Data Analysis
Version: 1.7-65
Date: 2023-12-14
Version: 1.7-67
Date: 2023-12-15
Depends: R (>= 3.5.0)
Suggests: parallel, tinytest, ncdf4, sf (>= 0.9-8), deldir, XML, leaflet, htmlwidgets
LinkingTo: Rcpp
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# version 1.7-67





# version 1.7-65

Released 2023-12-15

## bug fixes

- `flip` with argument `direction="vertical"` filed in some cases with large rasters processed in chunks [0b714b0](https://github.com/rspatial/terra/commit/0b714b038b101011ce27391133a7a1f9a91821cc) by Dulci on [stackoveflow](
Expand Down
4 changes: 1 addition & 3 deletions R/extract.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ extractCells <- function(x, y, raw=FALSE) {


use_layer <- function(e, y, layer, nl) {
# if (is.null(layer)) {
# temporarily, for inlabru
if (is.null(layer) || (nl == 1)) {
if (is.null(layer)) {
return(e)
}
layer <- getLyrNrs(layer, colnames(e)[-1], nrow(y))
Expand Down
1 change: 0 additions & 1 deletion src/Makevars.ucrt
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ winlibs:

clean:
rm -f $(SHLIB) $(OBJECTS)

.PHONY: all winlibs clean

0 comments on commit 7be2717

Please sign in to comment.