-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* A `spatial` parameter of the `S2_query_granule()` and `S2_query_image()` is now a string and allows to choose between the `sp` package and the `sf` package spatial object representation. * All `S2_query_...()` functions always return a data frame even when query fetches no results. Returned data frame is guaranteed to have at least an `{objectType}Id` column (e.g. `granuleId` for granules, `regionId` for regions of interest, etc.). * The `S2_download()` can now display a progress bar.
- Loading branch information
Showing
17 changed files
with
359 additions
and
221 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: sentinel2 | ||
Title: Tools to access Sentinel-2 data pre-processed by IVFL, BOKU Vienna | ||
Version: 0.2.1 | ||
Version: 0.3.0 | ||
Authors@R: c( | ||
person("Sebastian", "Boeck", email = "[email protected]", role = c("aut", "cre")), | ||
person("Mateusz", "Zoltak", email = "[email protected]", role = c("ctb")) | ||
|
@@ -23,7 +23,8 @@ Suggests: | |
testthat, | ||
covr, | ||
knitr, | ||
rmarkdown | ||
rmarkdown, | ||
sf | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
|
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
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
Oops, something went wrong.