plotair 0.2.0__py3-none-any.whl → 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- plotair/__init__.py +1 -1
- plotair/config.toml +13 -12
- plotair/main.py +403 -371
- plotair-0.3.0.dist-info/METADATA +143 -0
- plotair-0.3.0.dist-info/RECORD +8 -0
- plotair-0.2.0.dist-info/METADATA +0 -97
- plotair-0.2.0.dist-info/RECORD +0 -8
- {plotair-0.2.0.dist-info → plotair-0.3.0.dist-info}/WHEEL +0 -0
- {plotair-0.2.0.dist-info → plotair-0.3.0.dist-info}/entry_points.txt +0 -0
- {plotair-0.2.0.dist-info → plotair-0.3.0.dist-info}/licenses/LICENSE +0 -0
plotair/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.
|
|
1
|
+
__version__ = "0.3.0"
|
plotair/config.toml
CHANGED
|
@@ -2,32 +2,33 @@
|
|
|
2
2
|
max_missing_samples = 4
|
|
3
3
|
|
|
4
4
|
[plot]
|
|
5
|
-
size = [
|
|
5
|
+
size = [15, 10]
|
|
6
6
|
font_family = 'Noto Sans' # Set to '' to use default system font
|
|
7
|
-
font_scale = 1.
|
|
7
|
+
font_scale = 1.8
|
|
8
8
|
grid2_opacity = 0.7 # 0 is fully transparent and 1 is fully opaque
|
|
9
9
|
grid1_line_style = '-' # Options: '-', '--', ':' and '-.'
|
|
10
10
|
grid2_line_style = '--'
|
|
11
|
+
default_line_style = '-'
|
|
11
12
|
limit_zone_opacity = 0.075
|
|
12
13
|
limit_line_opacity = 0.7
|
|
13
|
-
limit_line_width = 1
|
|
14
14
|
limit_line_style = '--'
|
|
15
|
-
"pm2.5_line_width" = 1.5
|
|
16
15
|
"pm2.5_line_style" = '-'
|
|
17
|
-
"pm10_line_width" = 1.5
|
|
18
16
|
"pm10_line_style" = '-.'
|
|
19
17
|
date_rotation = 30
|
|
20
18
|
|
|
21
19
|
# Options: 'best', 'upper right', 'upper left', 'lower left', 'lower right',
|
|
22
20
|
# 'center left', 'center right', 'lower center', 'upper center', 'center'
|
|
23
|
-
legend_location = '
|
|
21
|
+
legend_location = 'upper left'
|
|
24
22
|
|
|
25
23
|
[axis_ranges]
|
|
26
24
|
co2 = [0, 2000]
|
|
27
|
-
|
|
25
|
+
humidity = [0, 80]
|
|
26
|
+
temp = [0, 80]
|
|
28
27
|
tvoc = [0, 500]
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
co = [0, 6]
|
|
29
|
+
form = [0, 50]
|
|
30
|
+
"pm2.5" = [0, 70]
|
|
31
|
+
"pm10" = [0, 70]
|
|
31
32
|
|
|
32
33
|
[labels]
|
|
33
34
|
co2 = 'CO₂ (ppm)'
|
|
@@ -35,8 +36,8 @@ temp = 'Température (°C)'
|
|
|
35
36
|
humidity = 'Humidité (%)'
|
|
36
37
|
tvoc = 'COVT (ppb)'
|
|
37
38
|
tvoc_limit = 'Limite LEED, WELL et LBC'
|
|
38
|
-
co = 'Monoxyde de carbone (ppm
|
|
39
|
-
co_limit = 'Limite
|
|
39
|
+
co = 'Monoxyde de carbone (ppm)'
|
|
40
|
+
co_limit = 'Limite Environnement Canada'
|
|
40
41
|
form = 'Formaldéhyde (ppb)'
|
|
41
42
|
form_limit = 'Limite anomalie légère BBI'
|
|
42
43
|
"pm2.5" = 'PM2.5 (µg/m³)'
|
|
@@ -47,7 +48,7 @@ form_limit = 'Limite anomalie légère BBI'
|
|
|
47
48
|
[limits]
|
|
48
49
|
humidity = [40, 60]
|
|
49
50
|
tvoc = 218 # ppb
|
|
50
|
-
co =
|
|
51
|
+
co = 5 # ppm
|
|
51
52
|
form = 16 # ppb
|
|
52
53
|
"pm2.5" = 10
|
|
53
54
|
"pm10" = 50
|