Newer
Older
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
### Description
SOHStationViewer is a tool to visualize State-of-Health packets from raw data recorded by different type of dataloggers.
### Directory Structure
````
sohstationviewer/
model/
lib/
view/
lib/
ui/
controller/
lib/
tests/
````
### Directory Description
#### sohstationviewer/
All codes for running sohstationviewer.
#### model/
Codes for reading data from raw files and reading setting data from config files.
**lib/** Core codes to be used for reading data.
#### view/
Codes for Graphical User Interface (GUI).
**lib/** Core GUI like plotting widget, common used GUI like log/message/error forms.
**ui/** ui files from QtDesigner.
#### controller/
Codes for logical processes.
**lib/** Core codes to be used for logical processes.
#### tests/
Unittest files for the codes. (GUI will not be included)