https://github.com/brazil-data-cube/odc-sits
R Client for the Open Data Cube ecosystem.
https://github.com/brazil-data-cube/odc-sits
datacube odc sits
Last synced: about 1 year ago
JSON representation
R Client for the Open Data Cube ecosystem.
- Host: GitHub
- URL: https://github.com/brazil-data-cube/odc-sits
- Owner: brazil-data-cube
- License: mit
- Created: 2021-04-20T01:24:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-07-11T01:37:36.000Z (almost 5 years ago)
- Last Synced: 2024-01-24T19:07:59.221Z (over 2 years ago)
- Topics: datacube, odc, sits
- Language: R
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
out.width = "100%",
fig.path = "inst/extdata/img/README-"
)
library(tibble)
```
## odc-sits - SITS-based R Client Library for Open Data Cube
[](https://github.com/brazil-data-cube/odc-sits/blob/master/LICENSE)
[](https://www.tidyverse.org/lifecycle/#experimental)
[](https://discord.com/channels/689541907621085198#)
[Open Data Cube](https://www.opendatacube.org/) is a system designed to manage Spatio-temporal Earth Observation Data Cubes.
The `odc-sits` package is an experimental R Client for the Open Data Cube ecosystem. The Data Cube representation performed by `odc-sits` is based on the [SITS package](https://github.com/e-sensing/sits). This pairing gives the possibility of using ODC data products in Satellite Image Time Series Classification.
## Installation
To install the development version of `odc-sits`, run the following commands:
``` {R, eval=FALSE}
# load necessary libraries
library(devtools)
devtools::install_github("brazil-data-cube/odc-sits")
```
Importing `odc-sits` package:
``` {R, echo=TRUE, warning=FALSE, message=FALSE}
library(odcsits)
```
## Usage
`odc-sits` implements the following WLTS operations:
```{R, echo=FALSE}
tribble(
~"Operation", ~"`odc-sits` functions",
"`List ODC Products Available`", "`odc_products`",
"`Search ODC Datasets`", "`odc_search`",
"`Create a ODC Data Cube`", "`odc_cube`"
) %>% as.data.frame() %>% knitr::kable(format = "markdown")
```