diff --git a/DESCRIPTION b/DESCRIPTION index d6f89152b..e5bebc052 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: sits Type: Package -Version: 0.15.0 +Version: 0.15.0-1 Title: Satellite Image Time Series Analysis for Remote Sensing Data Cubes Authors@R: c(person('Rolf', 'Simoes', role = c('aut'), email = 'rolf.simoes@inpe.br'), person('Gilberto', 'Camara', role = c('aut', 'cre'), email = 'gilberto.camara@inpe.br'), diff --git a/NEWS.md b/NEWS.md index 813f8d63f..3e63fdfcd 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,6 +4,10 @@ We are preparing to release the package on CRAN and are making relevant changes # What's new in SITS version 0.15.0 +### New features in SITS version 0.15.0-1 +* Fix bug in `sits_plot` +* Fix bug in `sits_timeline` for cubes that do not have the same temporal extent. + ### New features in SITS version 0.15.0 * Support for regularization of collections in DEAFRICA and USGS improvement diff --git a/README.md b/README.md index 1be92a5ef..27f715c17 100644 --- a/README.md +++ b/README.md @@ -164,11 +164,11 @@ as in the following example. ``` r library(sits) -#> Using configuration file: /Library/Frameworks/R.framework/Versions/4.1-arm64/Resources/library/sits/extdata/config.yml +#> Using configuration file: /home/sits/R/x86_64-pc-linux-gnu-library/4.1/sits/extdata/config.yml #> To provide additional configurations, create an YAML file and inform its path to environment variable 'SITS_CONFIG_USER_FILE'. #> Using raster package: terra #> SITS - satellite image time series analysis. -#> Loaded sits v0.15.0. +#> Loaded sits v0.15.0-1. #> See ?sits for help, citation("sits") for use in publication. #> See demo(package = "sits") for examples. # create a cube from a local file diff --git a/man/figures/README-unnamed-chunk-10-1.png b/man/figures/README-unnamed-chunk-10-1.png index d40705e99..f41a4eb24 100644 Binary files a/man/figures/README-unnamed-chunk-10-1.png and b/man/figures/README-unnamed-chunk-10-1.png differ diff --git a/man/figures/README-unnamed-chunk-11-1.png b/man/figures/README-unnamed-chunk-11-1.png index ae360f818..e557c9031 100644 Binary files a/man/figures/README-unnamed-chunk-11-1.png and b/man/figures/README-unnamed-chunk-11-1.png differ diff --git a/man/figures/README-unnamed-chunk-6-1.png b/man/figures/README-unnamed-chunk-6-1.png index 949bb7a56..b53310d2d 100644 Binary files a/man/figures/README-unnamed-chunk-6-1.png and b/man/figures/README-unnamed-chunk-6-1.png differ diff --git a/man/figures/README-unnamed-chunk-9-1.png b/man/figures/README-unnamed-chunk-9-1.png index 9926363af..2264cca63 100644 Binary files a/man/figures/README-unnamed-chunk-9-1.png and b/man/figures/README-unnamed-chunk-9-1.png differ diff --git a/man/plot.raster_cube.Rd b/man/plot.raster_cube.Rd index 7e24e6a35..1f34d60a8 100644 --- a/man/plot.raster_cube.Rd +++ b/man/plot.raster_cube.Rd @@ -4,7 +4,7 @@ \alias{plot.raster_cube} \title{Generic interface for RGB plotting of data cube} \usage{ -\method{plot}{raster_cube}(x, ..., band = NULL, red, green, blue, time = 1, roi = NULL) +\method{plot}{raster_cube}(x, ..., band = NULL, red, green, blue, tile = 1, time = 1, roi = NULL) } \arguments{ \item{x}{object of class "raster_cube" or "classified image"} @@ -19,6 +19,8 @@ \item{blue}{band for blue color.} +\item{tile}{tile number to be plotted} + \item{time}{temporal instances to be plotted.} \item{roi}{sf object giving a region of interest.}