From 1c88cdf65f9488e9ec0dd84b24edd4c450fd85e1 Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Wed, 10 Feb 2021 16:34:11 -0700 Subject: [PATCH] Refactor calculate matrix --- geomagio/adjusted/transform/QRFactorization.py | 1 - geomagio/adjusted/transform/Rescale3D.py | 1 - geomagio/adjusted/transform/ShearYZ.py | 1 - geomagio/adjusted/transform/Transform.py | 1 - geomagio/adjusted/transform/TranslateOrigins.py | 1 - geomagio/adjusted/transform/ZRotationHScale.py | 1 - geomagio/adjusted/transform/ZRotationHScaleZBaseline.py | 1 - geomagio/adjusted/transform/ZRotationShear.py | 1 - 8 files changed, 8 deletions(-) diff --git a/geomagio/adjusted/transform/QRFactorization.py b/geomagio/adjusted/transform/QRFactorization.py index 598000e1a..8159b070d 100644 --- a/geomagio/adjusted/transform/QRFactorization.py +++ b/geomagio/adjusted/transform/QRFactorization.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq diff --git a/geomagio/adjusted/transform/Rescale3D.py b/geomagio/adjusted/transform/Rescale3D.py index 331b940a9..40154b5ed 100644 --- a/geomagio/adjusted/transform/Rescale3D.py +++ b/geomagio/adjusted/transform/Rescale3D.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq diff --git a/geomagio/adjusted/transform/ShearYZ.py b/geomagio/adjusted/transform/ShearYZ.py index afe3377a6..7dcc771c5 100644 --- a/geomagio/adjusted/transform/ShearYZ.py +++ b/geomagio/adjusted/transform/ShearYZ.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq diff --git a/geomagio/adjusted/transform/Transform.py b/geomagio/adjusted/transform/Transform.py index 42d6b0210..2263290ac 100644 --- a/geomagio/adjusted/transform/Transform.py +++ b/geomagio/adjusted/transform/Transform.py @@ -1,5 +1,4 @@ import numpy as np -from obspy import UTCDateTime from pydantic import BaseModel from typing import List, Optional, Tuple diff --git a/geomagio/adjusted/transform/TranslateOrigins.py b/geomagio/adjusted/transform/TranslateOrigins.py index c10d16f4e..9ba7ae0c4 100644 --- a/geomagio/adjusted/transform/TranslateOrigins.py +++ b/geomagio/adjusted/transform/TranslateOrigins.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq diff --git a/geomagio/adjusted/transform/ZRotationHScale.py b/geomagio/adjusted/transform/ZRotationHScale.py index 1dc772428..aa3901ef9 100644 --- a/geomagio/adjusted/transform/ZRotationHScale.py +++ b/geomagio/adjusted/transform/ZRotationHScale.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq diff --git a/geomagio/adjusted/transform/ZRotationHScaleZBaseline.py b/geomagio/adjusted/transform/ZRotationHScaleZBaseline.py index cb72a6ed5..f9998589f 100644 --- a/geomagio/adjusted/transform/ZRotationHScaleZBaseline.py +++ b/geomagio/adjusted/transform/ZRotationHScaleZBaseline.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq diff --git a/geomagio/adjusted/transform/ZRotationShear.py b/geomagio/adjusted/transform/ZRotationShear.py index cb7adb3af..b0f55783c 100644 --- a/geomagio/adjusted/transform/ZRotationShear.py +++ b/geomagio/adjusted/transform/ZRotationShear.py @@ -1,5 +1,4 @@ import numpy as np -import scipy.linalg as spl from typing import List, Optional, Tuple from .LeastSq import LeastSq -- GitLab