Skip to content

Commit

Permalink
Import functions and constants directly in Fourati estimator.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayitzin committed Feb 21, 2022
1 parent e071e05 commit 9b11e27
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ahrs/filters/fourati.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,12 @@

import numpy as np
from ..common.orientation import q_prod, q_conj, am2q
from ..common.mathfuncs import *
from ..common.constants import MUNICH_LONGITUDE
from ..common.constants import MUNICH_LATITUDE
from ..common.constants import MUNICH_HEIGHT
from ..common.mathfuncs import cosd
from ..common.mathfuncs import sind
from ..common.mathfuncs import skew

# Reference Observations in Munich, Germany
from ..utils.wmm import WMM
Expand Down Expand Up @@ -288,7 +293,7 @@ def _compute_all(self):
Returns
-------
Q : array
Q : numpy.ndarray
M-by-4 Array with all estimated quaternions, where M is the number
of samples.
Expand Down

0 comments on commit 9b11e27

Please sign in to comment.