-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
142 lines (110 loc) · 4.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
fig.retina = 2,
dpi = 300,
out.width = "80%",
out.height = "80%"
)
```
# simulariatools <a href="https://www.simularia.it/simulariatools/"><img src="man/figures/logo.png" align="right" height="80" /></a>
<!-- badges: start -->
[![R-CMD-check](https://github.com/Simularia/simulariatools/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Simularia/simulariatools/actions/workflows/R-CMD-check.yaml)
[![CRAN status](https://www.r-pkg.org/badges/version/simulariatools)](https://CRAN.R-project.org/package=simulariatools)
[![CRAN downloads](https://cranlogs.r-pkg.org/badges/grand-total/simulariatools?color=brightgreen)](https://CRAN.R-project.org/package=simulariatools)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.165117.svg)](https://doi.org/10.5281/zenodo.596741)
<!-- badges: end -->
`simulariatools` is a free collection collection of functions and tools useful to pre and post process data for air quality modelling and assessment.
The package is developed and maintained by the people at [Simularia](https://www.simularia.it) and it is extensively used for their daily job.
If you use this package in your work, please consider citing it.
Refer to its [Zenodo DOI](https://doi.org/10.5281/zenodo.596741) to cite it.
## Table of Contents
- [Installation](#installation)
- [Brief examples](#brief_examples)
- [List of Functions](#list_of_functions)
- [Contact](#contact)
- [Contributors](#contributors)
- [License](https://github.com/Simularia/simulariatools/blob/master/LICENSE.md)
- [Changelog](https://github.com/Simularia/simulariatools/blob/master/NEWS.md)
## Installation
Install the released version of `simulariatools` from CRAN:
```{r eval=FALSE, include=TRUE}
install.packages("simulariatools")
```
Or install the development version from GitHub with:
```{r eval=FALSE, include=TRUE}
pak::pkg_install("Simularia/simulariatools")
```
Note: in order to use `importADSOBIN()` to import *ADSO/BIN* data files,
a working installation of *Python 3* is required.
For more information about *R* and *Python* interoperability, please refer to [`reticulate`](https://rstudio.github.io/reticulate/) documentation.
## Brief examples
### Contour plot
First, import air quality data from *NetCDF* or *ADSO/BIN* files with the appropriate
convenience function:
```{r echo=TRUE}
library(simulariatools)
mydata <- importRaster(file = "./development/conc_avg.nc",
k = 1000,
destaggering = TRUE,
variable = "nox",
verbose = TRUE)
```
A quick contour plot with default configuration can be easily obtained
by running *contourPlot2()* without any argument:
```{r}
contourPlot2(mydata)
```
The plot is customisable by using *contourPlot2()* arguments and by piping *ggplot2* instructions:
```{r echo=TRUE}
library(ggplot2)
contourPlot2(mydata,
domain = c(502000, 519000, 4943125, 4955125, 5, 5),
levels = c(-Inf, 0.5, 1, 1.5, 2, Inf),
legend = "NOx [ug/m3]") +
labs(x = NULL, y = NULL) +
theme_minimal()
```
Use `ggsave()` to save the last plot to file:
```{r eval=FALSE}
ggsave(filename = "~/path/to/myplot.png", width = 7, height = 6, dpi = 300)
```
Use `tile` optional argument to produce a plot without interpolation:
```{r echo=TRUE}
library(ggplot2)
contourPlot2(mydata,
tile = TRUE,
legend = "NOx [ug/m3]") +
labs(x = NULL, y = NULL) +
theme_minimal()
```
## List of functions
Available functions are listed below:
- `contpourPlot2()`
- `downloadBasemap()`
- `importRaster()`
- `importADSOBIN()`
- `importSurferGrd()`
- `plotAvgRad()`
- `plotAvgTemp()`
- `plotStabilityClass()`
- `removeOutliers()`
- `rollingMax()`
- `stabilityClass()`
- `vectorField()`
- `contourPlot()` (deprecated)
- `createBaseMap()` (deprecated)
Deprecated functions will be removed in the near future.
## Contact
Contact person:
Giuseppe Carlino
Simularia s.r.l.
g.carlino@simularia.it
## Contributors
Matteo Paolo Costa