-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
52 lines (37 loc) · 1.56 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
eval = FALSE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# cubeview - Interactively Explore 3D Raster Data Cubes
<!-- badges: start -->
[](https://github.com/r-spatial/cubeview/actions/workflows/R-CMD-check.yaml)
[](https://cran.r-project.org/web/checks/check_results_cubeview.html)


[](https://cran.r-project.org/package=cubeview)
<!-- badges: end -->
`cubeview` enables interactive 3D exploration of raster data cubes.
## Installation
You can install the released version of cubeview from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("cubeview")
```
## Example
``` r
library(raster)
kili_data <- system.file("extdata", "kiliNDVI.tif", package = "cubeview")
kiliNDVI <- stack(kili_data)
cubeview(kiliNDVI)
```

### Code of Conduct
Please note that the 'cubeview' project is released with a [Contributor Code of Conduct](https://github.com/r-spatial/cubeview/blob/master/CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.