-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from scizmeli/tutorial
Tutorial
- Loading branch information
Showing
1 changed file
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
--- | ||
title: "geoSpectRal Use Cases" | ||
output: | ||
flexdashboard::flex_dashboard: | ||
theme: spacelab | ||
--- | ||
|
||
Frost Prediction {.storyboard data-icon="fa-list"} | ||
========================================= | ||
|
||
### The problem | ||
- Frost is a big problem for farmers | ||
- It easy to detect that frost is happening. But it is usually too late then. | ||
- It is harder to predict the frost before it happens. | ||
|
||
### 1. Data Import | ||
- Agrotics sensors | ||
- Dataset / Measured parameters | ||
- Importing | ||
- Database | ||
|
||
```{r} | ||
``` | ||
|
||
### 2. Visualization | ||
- Time-series graphs | ||
- Minutely-Hourly-Daily | ||
|
||
```{r} | ||
plot(1:10, 3*(1:10)) | ||
``` | ||
|
||
### 3. Pre-processing | ||
- Conversion to regular | ||
- Eliminating bad values | ||
|
||
```{r} | ||
plot(1:10, 3*(1:10)) | ||
``` | ||
|
||
### 4. Modeling | ||
- Frost Model | ||
- Prediction | ||
|
||
```{r} | ||
plot(1:10, 3*(1:10)) | ||
``` | ||
|
||
### 5. Validation | ||
- Comparison with measurements | ||
|
||
```{r} | ||
``` | ||
|
||
### 5. Reporting | ||
- Dashboard? | ||
|
||
```{r} | ||
``` | ||
|
||
### 6. Validation | ||
- Comparison with measurements | ||
|
||
```{r} | ||
``` | ||
|
||
### 7. Sharing the results | ||
- Excel | ||
- Txt | ||
- Gis | ||
|
||
```{r} | ||
``` | ||
|
||
Above Water Radiometry { .storyboard data-icon="fa-hashtag"} | ||
====================================== | ||
|
||
|
||
### The problem | ||
- Frost is a big problem for farmers | ||
- It easy to detect that frost is happening. But it is usually too late then. | ||
- It is harder to predict it. | ||
|
||
### 1. Data Import | ||
- Agrotics sensors | ||
- Dataset / Measured parameters | ||
- Importing | ||
- Database | ||
|
||
```{r} | ||
``` | ||
|
||
### 2. Visualization | ||
- Time-series graphs | ||
- Minutely-Hourly-Daily | ||
|
||
```{r} | ||
plot(1:10, 3*(1:10)) | ||
``` | ||
|
||
### 3. Pre-processing | ||
- Matching | ||
- Eliminating bad values | ||
|
||
```{r} | ||
plot(1:10, 3*(1:10)) | ||
``` | ||
|
||
### 4. Modeling | ||
- Frost Model | ||
- Prediction | ||
|
||
```{r} | ||
plot(1:10, 3*(1:10)) | ||
``` |