Metadata-Version: 2.4
Name: si-dyno-reader
Version: 0.0.3
Summary: Package to read SI Dyno Data
Project-URL: Homepage, https://github.com/lukzimmermann/SiDynoReader
Project-URL: Issues, https://github.com/lukzimmermann/SiDynoReader/issues
Author-email: Lukas Zimmermann <lukas.zimmermann@schoggipopcorn.ch>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# SiDynoReader

This package can be used to read CSV files. It creates an object which makes the data in the CSV file easily accessible. In addition, various metrics such as mean value or standard deviation can be retrieved. Another feature is the recognition of measuring points which are defined by means of a special channel.

## How to install
This code is available as a pip package. The package can be installed with the following command:
```bash
pip install si-dyno-reader
```

## Supported CSV format
CSV are supported, which are separated by a tab. Furthermore, the channel name is expected in the first line and the unit of the corresponding channel in the second. The following is an example:

```csv
Time	Throttle	Power	Test_State
s	    %	        kW	       -
500.0	0.0         0.00    0
500.5	0.5	        0.08    50
501.0	1.0	        0.20	100
```

## How to use

The following sections show how this package can be used together with ```Matplotlib``` for visualization

### Load the CSV File

The path to the ```csv``` which is to be loaded is specified in the constructor:

```python
data = DynoDataSet(“data/demoData-00001.001”)
```

The following additional parameters are available:
- ```test_state_channel_name: str```: Allows you to define a custom Test_State channel. The channel name ```Test_State``` is the default value.
- ```test_state_threshold: float```: This can be used to define the value at which the following data should be recognized as a measuring point. Default is ```50.0```.
- ```time_channel_name: str```: This defines the channel name which represents the time. By default, ```Time``` is defined.
- ```time_to_zero: bool```: By default, this parameter is defined as ```True```. If you want the data in the time channel to remain unchanged, this can be achieved here with the parameter value ```False```.

### CSV-Metadata
The following functions and properties return various metadata of the data set:

```python
print(f"Project: {data.project}")
print(f"Dyno: {data.dyno}")
print(f"TestId: {data.test_id}")

Project: 001
Dyno: demoData
TestId: 00002
```

The following function can be used to query all channels:
```python
print(data.get_channels())

['Time', 'Throttle', 'Power', 'Test_State']
```

Um den Namen und die Einheit eines Kanals abzufragen, kann folgender Befehl genutzt werden. Der Kanalname ist dabei case insensitiv. Diese Funktion ist für Achsbeschriftungen nützlich.
```python
print(data.get_description("power"))

Power [kW]
```

### Get data
To retrieve data using ```get_data```, there are four different options depending on the given parameters.

A channel name must always be specified. This is case insensitive. If only a channel name is specified, a list of all data is obtained. If ```time_range``` is also specified, only the data in a certain time range is obtained. In the example below, this is all data between ```10s``` and ```15s```.
If the parameter ```metric``` is defined, the corresponding metric is returned. You can choose between the following:
- ```MEAN```
- ```MEDIAN```
- ```MIN```
- ```MAX```
- ```RANGE```
- ```VARIANCE```
- ```STD_DEV```

If a time range is defined for the metric, the metric is only calculated over the defined period.

```python
print(data.get_data("Power")[:5])

print(data.get_data(channel_name="Time",
                    time_range=[10,15]))

print(data.get_data(channel_name="Time",
                    metric=MetricType.MEDIAN))

print(data.get_data(channel_name="Time",
                    time_range=[10,15],
                    metric=MetricType.MEAN))

[0.0, 0.0875, 0.175, 0.2625, 0.35]
[10.  10.5 11.  11.5 12.  12.5 13.  13.5 14.  14.5]
50.0
12.25
```

### MeasurePoints and TestState
If measuring points are defined using a specific channel, metrics are automatically created for them. This means, for example, that the average value for a measuring point can be queried. The following graphic visualizes how the measuring points are created. The green area represents a measuring point. In the left graphic, the threshold is defined at ```50.0```. This means that a measuring point is created as soon as the value of the test channel exceeds the threshold of ```50.0``` here.

![TestState](https://raw.githubusercontent.com/lukzimmermann/SiDynoReader/refs/heads/main/doc/img/test_state.png)

The use of the function for measuring points is shown below. If no metric type is specified, the average value of the individual measuring points is returned by default. If a different metric type is required, this can also be defined. 
```Python
print(data.get_measure_point("Throttle"))
print(data.get_measure_point("Throttle", metric=MetricType.MIN))

[13.5, 39.5, 65.5, 91.5]
[7.0, 33.0, 59.0, 85.0]
```

If all data of a measuring point is required, for example for a box plot, this can be achieved with the following function:
```Python
print(data.get_measure_point_data("Throttle"))

[[7.0, 7.5, ...], [33.0, 33.5, ...], [59.0, 59.5, ...], [85.0, 85.5, ...]]
```


