Skip to content

Commit cb9eabe

Browse files
improve README
1 parent d0412e6 commit cb9eabe

File tree

2 files changed

+55
-26
lines changed

2 files changed

+55
-26
lines changed

README.Rmd

+16-6
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,16 @@ devtools::install_github("e-sensing/sits", dependencies = TRUE)
9494
library(sits)
9595
```
9696

97+
### Support for GPU
98+
99+
Classification using torch-based deep learning models in `sits` uses CUDA compatible NVIDIA GPUs if available, which provides up 10-fold speed-up compared to using CPUs only. Please see the [installation instructions](https://torch.mlverse.org/docs/articles/installation) for more information on how to install the required drivers.
100+
97101

98102
## Building Earth Observation Data Cubes
99103

100104
### Image Collections Accessible by `sits`
101105

102-
The `sits` package allows users to created data cubes from analysis-ready data (ARD) image collections available in cloud services. The collections accessible in `sits` `r packageVersion("sits")` are:
106+
Users create data cubes from analysis-ready data (ARD) image collections available in cloud services. The collections accessible in `sits` `r packageVersion("sits")` are:
103107

104108
1. Brazil Data Cube ([BDC](http://brazildatacube.org/en/home-page-2/#dataproducts)): Open data collections of Sentinel-2, Landsat-8 and CBERS-4 images.
105109
2. Microsoft Planetary Computer ([MPC](https://planetarycomputer.microsoft.com/catalog)): Open data collection of Sentinel-2/2A and Landsat-8
@@ -273,7 +277,9 @@ plot(label_cube,
273277

274278
## Additional information
275279

276-
For more information, please see the on-line book ["SITS: Data analysis and machine learning for data cubes using satellite image time series"](https://e-sensing.github.io/sitsbook/).
280+
Since version 1.4.2, `sits` support OBIA analysis of image time series, using an extension of R package `supercells`.
281+
282+
The package is described in detail in on-line book ["SITS: Data analysis and machine learning for data cubes using satellite image time series"](https://e-sensing.github.io/sitsbook/).
277283

278284

279285
### References
@@ -314,11 +320,15 @@ We thank the authors of these papers for making their code available to be used
314320

315321
- [12] Maja Schneider, Marco Körner, "[Re] Satellite Image Time Series Classification with Pixel-Set Encoders and Temporal Self-Attention." ReScience C 7 (2), 2021. <doi:10.5281/zenodo.4835356>.
316322

317-
#### R packages used in sits
323+
- [13] Jakub Nowosad, Tomasz Stepinski, "Extended SLIC superpixels algorithm for applications to non-imagery geospatial rasters". International Journal of Applied Earth Observation and Geoinformation, 112, 102935, 2022.
324+
325+
- [14] Martin Tennekes, “tmap: Thematic Maps in R.” Journal of Statistical Software, 84(6), 1–39, 2018.
326+
327+
### Acknowledgements for community support
318328

319-
The authors are thankful for the contributions of Marius Appel, Tim Appelhans, Henrik Bengtsson, Robert Hijmans, Edzer Pebesma, and Ron Wehrens, respectively chief developers of the packages `gdalcubes`, `leafem`, `data.table`, `terra/raster`, `sf`/`stars`, and `kohonen`. The `sits` package is also much indebted to the work of the RStudio team, including the `tidyverse`. We are indepted to Daniel Falbel for his and the `torch` packages. We thank Charlotte Pelletier and Hassan Fawaz for sharing the python code that has been reused for the TempCNN and ResNet machine learning models. We would like to thank Maja Schneider for sharing the python code that helped the implementation of the `sits_lighttae()` and `sits_tae()` model. We recognise the importance of the work by Chris Holmes and Mattias Mohr on the STAC specification and API.
329+
The authors are thankful for the contributions of Edzer Pebesma, Jakub Novosad. Marius Appel, Martin Tennekes, Robert Hijmans, Ron Wehrens, and Tim Appelhans, respectively chief developers of the packages `sf`/`stars`, `supercells`, `gdalcubes`, `tmap`, `terra`, `kohonen`, and `leafem`. The `sits` package is also much indebted to the work of the RStudio team, including the `tidyverse`. We are indepted to Daniel Falbel for his great work in the `torch` and `luz` packages. We thank Charlotte Pelletier and Hassan Fawaz for sharing the python code that has been reused for the TempCNN and ResNet machine learning models. We would like to thank Maja Schneider for sharing the python code that helped the implementation of the `sits_lighttae()` and `sits_tae()` model. We recognise the importance of the work by Chris Holmes and Mattias Mohr on the STAC specification and API.
320330

321-
## Acknowledgements for Financial and Material Support
331+
### Acknowledgements for Financial and Material Support
322332

323333
We acknowledge and thank the project funders that provided financial and material support:
324334

@@ -336,7 +346,7 @@ We acknowledge and thank the project funders that provided financial and materia
336346
funding from the European Union's Horizon Europe research and innovation programme
337347
under [grant agreement No. 101059548](https://cordis.europa.eu/project/id/101059548).
338348

339-
## How to contribute
349+
### How to contribute
340350

341351
The `sits` project is released with a [Contributor Code of Conduct](https://github.com/e-sensing/sits/blob/master/CODE_OF_CONDUCT.md).
342352
By contributing to this project, you agree to abide by its terms.

README.md

+39-20
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,21 @@ library(sits)
120120
#> Documentation avaliable in https://e-sensing.github.io/sitsbook/.
121121
```
122122

123+
### Support for GPU
124+
125+
Classification using torch-based deep learning models in `sits` uses
126+
CUDA compatible NVIDIA GPUs if available, which provides up 10-fold
127+
speed-up compared to using CPUs only. Please see the [installation
128+
instructions](https://torch.mlverse.org/docs/articles/installation) for
129+
more information on how to install the required drivers.
130+
123131
## Building Earth Observation Data Cubes
124132

125133
### Image Collections Accessible by `sits`
126134

127-
The `sits` package allows users to created data cubes from
128-
analysis-ready data (ARD) image collections available in cloud services.
129-
The collections accessible in `sits` 1.4.2 are:
135+
Users create data cubes from analysis-ready data (ARD) image collections
136+
available in cloud services. The collections accessible in `sits` 1.4.2
137+
are:
130138

131139
1. Brazil Data Cube
132140
([BDC](http://brazildatacube.org/en/home-page-2/#dataproducts)):
@@ -381,7 +389,10 @@ Land use and Land cover in Sinop, MT, Brazil in 2018
381389

382390
## Additional information
383391

384-
For more information, please see the on-line book [“SITS: Data analysis
392+
Since version 1.4.2, `sits` support OBIA analysis of image time series,
393+
using an extension of R package `supercells`.
394+
395+
The package is described in detail in on-line book [“SITS: Data analysis
385396
and machine learning for data cubes using satellite image time
386397
series”](https://e-sensing.github.io/sitsbook/).
387398

@@ -458,23 +469,31 @@ be used in connection with sits.
458469
Self-Attention.” ReScience C 7 (2), 2021.
459470
<doi:10.5281/zenodo.4835356>.
460471

461-
#### R packages used in sits
472+
- \[13\] Jakub Nowosad, Tomasz Stepinski, “Extended SLIC superpixels
473+
algorithm for applications to non-imagery geospatial rasters”.
474+
International Journal of Applied Earth Observation and Geoinformation,
475+
112, 102935, 2022.
476+
477+
- \[14\] Martin Tennekes, “tmap: Thematic Maps in R.” Journal of
478+
Statistical Software, 84(6), 1–39, 2018.
479+
480+
### Acknowledgements for community support
462481

463-
The authors are thankful for the contributions of Marius Appel, Tim
464-
Appelhans, Henrik Bengtsson, Robert Hijmans, Edzer Pebesma, and Ron
465-
Wehrens, respectively chief developers of the packages `gdalcubes`,
466-
`leafem`, `data.table`, `terra/raster`, `sf`/`stars`, and `kohonen`. The
467-
`sits` package is also much indebted to the work of the RStudio team,
468-
including the `tidyverse`. We are indepted to Daniel Falbel for his and
469-
the `torch` packages. We thank Charlotte Pelletier and Hassan Fawaz for
470-
sharing the python code that has been reused for the TempCNN and ResNet
471-
machine learning models. We would like to thank Maja Schneider for
472-
sharing the python code that helped the implementation of the
473-
`sits_lighttae()` and `sits_tae()` model. We recognise the importance of
474-
the work by Chris Holmes and Mattias Mohr on the STAC specification and
475-
API.
482+
The authors are thankful for the contributions of Edzer Pebesma, Jakub
483+
Novosad. Marius Appel, Martin Tennekes, Robert Hijmans, Ron Wehrens, and
484+
Tim Appelhans, respectively chief developers of the packages
485+
`sf`/`stars`, `supercells`, `gdalcubes`, `tmap`, `terra`, `kohonen`, and
486+
`leafem`. The `sits` package is also much indebted to the work of the
487+
RStudio team, including the `tidyverse`. We are indepted to Daniel
488+
Falbel for his great work in the `torch` and `luz` packages. We thank
489+
Charlotte Pelletier and Hassan Fawaz for sharing the python code that
490+
has been reused for the TempCNN and ResNet machine learning models. We
491+
would like to thank Maja Schneider for sharing the python code that
492+
helped the implementation of the `sits_lighttae()` and `sits_tae()`
493+
model. We recognise the importance of the work by Chris Holmes and
494+
Mattias Mohr on the STAC specification and API.
476495

477-
## Acknowledgements for Financial and Material Support
496+
### Acknowledgements for Financial and Material Support
478497

479498
We acknowledge and thank the project funders that provided financial and
480499
material support:
@@ -507,7 +526,7 @@ material support:
507526
and innovation programme under [grant agreement
508527
No. 101059548](https://cordis.europa.eu/project/id/101059548).
509528

510-
## How to contribute
529+
### How to contribute
511530

512531
The `sits` project is released with a [Contributor Code of
513532
Conduct](https://github.com/e-sensing/sits/blob/master/CODE_OF_CONDUCT.md).

0 commit comments

Comments
 (0)