Skip to content

Commit

Permalink
Excluded flow charts from README
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinRoth committed Feb 3, 2017
1 parent c75af26 commit 07df891
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 44 deletions.
40 changes: 0 additions & 40 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,46 +29,6 @@ library(htmlwidgets)
library(webshot)
```

```{r, InputAndOutputGraph, include=FALSE}
graph <- DiagrammeR::mermaid('
graph TB
B("Station data (homogenized Precip)") --> A(Input)
C("Gridded data (EOBS,Radar)") --> A
D("Irregular data (Earthquakes)") --> A
A --> |Processing|E(Output)
E --> F(Data.table)
E --> G(Raster?)
')
saveWidget(graph, 'tmp.html', selfcontained=FALSE)
webshot('tmp.html',
file = 'inst/img/input_output.png')
```
<img src="inst/img/input_output.png" align="middle">

```{r, CreateExampleGraph, include=FALSE}
graph <- DiagrammeR::mermaid("
graph TB
A(Get File Information) --> B[Dimensions exceeding]
B --> |yes|C(Cut Dimensions)
B --> |no|D(Generate root name)
C --> D
D --> E[Avaiblable on disk]
E --> |yes|F(Load disk file)
E --> |no|G(Download data)
G --> H(Transform data)
H --> I(Save on disk)
I --> J(Return data and exit)
F --> J
")
saveWidget(graph, 'tmp.html', selfcontained=FALSE)
webshot('tmp.html',
file = 'inst/img/example_graph.png')
```

<img src="inst/img/example_graph.png" align="middle">

A package to access KNMI data within R.

Please, if there are any issues of any kind, file an issue [here](https://github.com/MartinRoth/knmiR/issues).
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ knmiR

[![Project Status: WIP - Initial development is in progress, but there has not yet been a stable, usable release suitable for the public.](https://www.repostatus.org/badges/latest/wip.svg)](https://www.repostatus.org/#wip) [![Build Status](https://travis-ci.org/MartinRoth/knmiR.png?branch=master)](https://travis-ci.org/MartinRoth/knmiR) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/MartinRoth/knmiR?branch=master&svg=true)](https://ci.appveyor.com/project/MartinRoth/knmiR) [![Coverage Status](https://img.shields.io/codecov/c/github/MartinRoth/knmiR/master.svg)](https://codecov.io/github/MartinRoth/knmiR?branch=master)

<img src="inst/img/input_output.png" align="middle">

<img src="inst/img/example_graph.png" align="middle">

A package to access KNMI data within R.

Please, if there are any issues of any kind, file an issue [here](https://github.com/MartinRoth/knmiR/issues).
Expand Down

0 comments on commit 07df891

Please sign in to comment.