-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
64 lines (42 loc) · 1.68 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
52
53
54
55
56
57
58
59
60
61
62
63
64
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# sits-gee example
<img src=".github/images/sits_sticker.png" alt="SITS icon" align="right" height="150" width="150"/>
<!-- badges: start -->
<!-- badges: end -->
Side-by-side examples of the sits and Google Earth Engine APIs.
## Getting started
To get started with the examples in this repository, first clone the repository:
```sh
git clone https://github.com/e-sensing/sitsgee-example.git
```
Next, open the `sitsgee-example` directory in the RStudio and install the
examples package:
```r
devtools::install(".")
```
If you want to use the development version of the [sits](https://github.com/e-sensing/sits)
R package to run the examples, you can install it using [devtools](https://devtools.r-lib.org/):
```r
devtools::install_github("e-sensing/sits@dev")
```
Now, you can run the examples! Happy analyzing with [sits](https://github.com/e-sensing/sits) and [GEE](https://earthengine.google.com/)!
## Repository structure
- `data/`: Includes datasets used in the examples.
- `scripts/`: Scripts for preprocessing data and running examples.
- `examples/`: Reproducible examples demonstrating the same operations in
`sits` and `GEE`.
## Contributing
Contributions are welcome! If you have an example that you'd like to share, please submit a pull request. Make sure your example is well-documented and includes all necessary data and scripts.
## License
This repository is licensed under the Creative Commons CC0 License. See the `LICENSE` file for more details.
## Contact
For questions or suggestions, please open an issue or contact the repository maintainers.
---