Added a few metrics for measuring performance

This commit is contained in:
dario
2023-12-14 23:29:58 +01:00
parent 33e5eba3a6
commit 4a93fd4ee6
5 changed files with 49 additions and 7 deletions

View File

@@ -14,4 +14,6 @@ class Erinome_I(GPS):
def _sensor_specific_effects(self, x: ArrayLike) -> ArrayLike:
# TODO: What's the GPS module's behavior?
# TODO: Only return measurements every second
return x

View File

@@ -16,7 +16,7 @@ class GPS(Sensor):
"""GPS Module which provides the following information:
- Longitude (in °)
- Latitiude (in °)
- Altitude (in °)
- Altitude (in m)
"""
super().__init__(dataset, logger, transforms)