Skip to content

Commit

Permalink
Version 1.3.9 (#355)
Browse files Browse the repository at this point in the history
## Bug fixes 
- Fix check errors due to `{rgdal}`  changes in version 1.6-17.
  • Loading branch information
ranghetti authored Oct 14, 2020
1 parent 56c9c08 commit d05824b
Show file tree
Hide file tree
Showing 102 changed files with 2,738 additions and 1,909 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: sen2r
Type: Package
Title: Find, Download and Process Sentinel-2 Data
Version: 1.3.8
Version: 1.3.9
Authors@R: c(person("Luigi", "Ranghetti",
email = "[email protected]",
role = c("aut", "cre"),
Expand Down
8 changes: 7 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 1.3.9

## Bug fixes
- Fix check errors due to `{rgdal}` changes in version 1.6-17.


# Version 1.3.8

## Minor changes
Expand Down Expand Up @@ -358,7 +364,7 @@ First stable release of package **sen2r**! See the announcement [here](https://l
* `tiles_intersects()`: when an extent is loaded, now only required tiles are automatically used, instead than all the overlapping ones.

### Update dependencies
* after [V8 major update](https://www.r-bloggers.com/a-major-upgrade-of-the-v8-package/), [Installation page](http://sen2r.ranghetti.info/articles/installation.html) was edited to refer to `v8` instead than to `v8-3.14`
* after [V8 major update](https://www.r-bloggers.com/2019/02/a-major-upgrade-of-the-v8-package/), [Installation page](http://sen2r.ranghetti.info/articles/installation.html) was edited to refer to `v8` instead than to `v8-3.14`

### Bug fixing:
* Fix bug in SciHub login
Expand Down
2 changes: 1 addition & 1 deletion R/st_crs2.R
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ st_crs2.character <- function(x, ...) {
},
error = function(e) {tryCatch(
# x: path of a text file with WKT -> crs
suppressWarnings(sf::st_crs(readLines(x))),
suppressWarnings(sf::st_crs(paste(readLines(x), collapse=""))),
error = function(e) {tryCatch(
# x: path of a raster file -> stars proxy
gdal_crs(x),
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sen2r v. 1.3.8
# sen2r v. 1.3.9

## Test environments
* [local installation] Ubuntu 18.04, 64 bit, R 3.6.3
Expand Down
4 changes: 2 additions & 2 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/CODE-OF-CONDUCT.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

116 changes: 58 additions & 58 deletions docs/LICENSE.html

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions docs/articles/docker.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions docs/articles/docker_files/header-attrs-2.4/header-attrs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Pandoc 2.9 adds attributes on both header and div. We remove the former (to
// be compatible with the behavior of Pandoc < 2.8).
document.addEventListener('DOMContentLoaded', function(e) {
var hs = document.querySelectorAll("div.section[class*='level'] > :first-child");
var i, h, a;
for (i = 0; i < hs.length; i++) {
h = hs[i];
if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6
a = h.attributes;
while (a.length > 0) h.removeAttribute(a[0].name);
}
});
4 changes: 2 additions & 2 deletions docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d05824b

Please sign in to comment.