GY-63_MS5611/libraries/AverageAngle/README.md

101 lines
3.4 KiB
Markdown
Raw Normal View History

2021-01-29 06:31:58 -05:00
[![Arduino CI](https://github.com/RobTillaart/AverageAngle/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
2021-12-13 14:51:57 -05:00
[![Arduino-lint](https://github.com/RobTillaart/AverageAngle/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/AverageAngle/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/AverageAngle/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/AverageAngle/actions/workflows/jsoncheck.yml)
2021-01-29 06:31:58 -05:00
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/AverageAngle/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/AverageAngle.svg?maxAge=3600)](https://github.com/RobTillaart/AverageAngle/releases)
2021-12-13 14:51:57 -05:00
2020-11-27 05:10:47 -05:00
# AverageAngle
2021-01-29 06:31:58 -05:00
2021-12-13 14:51:57 -05:00
Arduino library to calculate correctly the average of multiple angles.
2020-11-27 05:10:47 -05:00
2021-10-18 15:44:20 -04:00
2020-11-27 05:10:47 -05:00
## Description
2022-10-29 07:59:29 -04:00
AverageAngle is a class to calculate the average of angles.
2020-11-27 05:10:47 -05:00
This is especially useful when angles are around 0 degrees,
e.g. from a compass sensor or the resultant of a track.
Example, the average angle of 359 and 1 is 0, not 179 (most of the time)
2021-12-13 14:51:57 -05:00
Furthermore the AverageAngle can also include the **length (weight)** of the angle as if it is a vector.
Default this length is set to 1 so all angles are by default of equal weight.
2020-11-27 05:10:47 -05:00
2021-12-13 14:51:57 -05:00
Example: The average angle of 359 (length = 2) and 1 (length = 1) is 359.something not zero.
2020-11-27 05:10:47 -05:00
2021-12-13 14:51:57 -05:00
See also **runningAngle** class.
2021-01-29 06:31:58 -05:00
2021-10-18 15:44:20 -04:00
2022-10-29 07:59:29 -04:00
#### AngleType
- **enum AngleType { DEGREES, RADIANS, GRADIANS }** idem. 100 GRADIANS == 90 DEGREES.
| value | name |
|:-------:|:-----------|
| 0 | DEGREES |
| 1 | RADIANS |
| 2 | GRADIANS |
2021-01-29 06:31:58 -05:00
## Interface
- **AverageAngle(AngleType type = DEGREES)** constructor defaults to degrees.
2021-12-13 14:51:57 -05:00
- **uint32_t add(float alpha, float length = 1.0)** add a new angle, optional with length.
**add()** returns the number of elements (count).
2021-10-18 15:44:20 -04:00
- **void reset()** clears internal buffers.
- **uint32_t count()** the amount of angles added.
2022-10-29 07:59:29 -04:00
- **float getAverage()** returns the average.
- **float getTotalLength()** the length of the resulting 'angle' when we see them as vectors.
2021-10-18 15:44:20 -04:00
- **float getAverageLength()** returns the average length of the angles added.
2022-10-29 07:59:29 -04:00
- **AngleType type()** returns DEGREES, RADIANS or GRADIANS.
2021-10-18 15:44:20 -04:00
- **void setType(AngleType type)** changes type DEGREES, RADIANS or GRADIANS.
## Gradians
2022-10-29 07:59:29 -04:00
Gradians a.k.a. **gon**, is a less often used unit for angles.
2021-12-13 14:51:57 -05:00
There are 100 gradians in a right angle. A full circle = 400 gradians.
2021-10-18 15:44:20 -04:00
https://en.wikipedia.org/wiki/Gradian
2021-01-29 06:31:58 -05:00
2020-11-27 05:10:47 -05:00
## Operation
If you want to average 5 compass readings you can just add the angles and
do not use the length parameter.
2021-12-13 14:51:57 -05:00
```cpp
2020-11-27 05:10:47 -05:00
AA.reset();
for (int i = 0; i < 5; i++)
{
AA.add(compass.readHeading());
2021-10-18 15:44:20 -04:00
delay(100); // e.g. compass read needs some time
2020-11-27 05:10:47 -05:00
}
Serial.println(AA.getAverage());
```
2021-10-18 15:44:20 -04:00
If you want to average a track, e.g. 5 steps North, 3 steps west etc,
you need to include the length of each step.
2021-12-13 14:51:57 -05:00
```cpp
2020-11-27 05:10:47 -05:00
AA.reset();
2021-10-18 15:44:20 -04:00
AA.add(90, 5); // 5 steps north
AA.add(180, 3); // 3 steps west
2020-11-27 05:10:47 -05:00
Serial.println(AA.getAverage());
Serial.println(AA.getTotalLength());
```
2021-10-18 15:44:20 -04:00
## Future
2022-10-29 07:59:29 -04:00
- Improve documentation.
2021-10-18 15:44:20 -04:00
- check if other units exist to support.
2022-10-29 07:59:29 -04:00
- add a USER AngleType, in which the user can map 0..360 degrees to any number.
- float userFactor = 1.0; (default)
- can even be negative?
- use cases? e.g 0..4 quadrant?
- performance measurements
-
2021-10-18 15:44:20 -04:00
2020-11-27 05:10:47 -05:00