mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/SPATZ.git
synced 2025-06-11 02:26:00 +00:00
Fixed broken plotting after migration
This commit is contained in:
parent
b4c34e9582
commit
22d6280123
510
demo.ipynb
510
demo.ipynb
File diff suppressed because one or more lines are too long
@ -21,7 +21,7 @@ class WSEN_ISDS_ACC(Accelerometer):
|
|||||||
self.__noise = GaussianNoise(np.zeros(3), np.identity(3) * self.__variance)
|
self.__noise = GaussianNoise(np.zeros(3), np.identity(3) * self.__variance)
|
||||||
|
|
||||||
def _get_name(self) -> AnyStr:
|
def _get_name(self) -> AnyStr:
|
||||||
return 'WSEN_ISDS'
|
return 'WSEN_ISDS_ACC'
|
||||||
|
|
||||||
def _sensor_specific_effects(self, x: ArrayLike) -> ArrayLike:
|
def _sensor_specific_effects(self, x: ArrayLike) -> ArrayLike:
|
||||||
t = self._dataset.get_time()
|
t = self._dataset.get_time()
|
||||||
@ -43,7 +43,7 @@ class WSEN_ISDS_GYRO(Gyroscope):
|
|||||||
super().__init__(dataset, logger, offset, transforms)
|
super().__init__(dataset, logger, offset, transforms)
|
||||||
|
|
||||||
def _get_name(self) -> AnyStr:
|
def _get_name(self) -> AnyStr:
|
||||||
return 'WSEN_ISDS'
|
return 'WSEN_ISDS_GYRO'
|
||||||
|
|
||||||
def _sensor_specific_effects(self, x: ArrayLike) -> ArrayLike:
|
def _sensor_specific_effects(self, x: ArrayLike) -> ArrayLike:
|
||||||
# Convert to degrees per second.
|
# Convert to degrees per second.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user