From e23915c17563d725f95f1e90899da991a33c6001 Mon Sep 17 00:00:00 2001 From: Jeremy Fee <jmfee@usgs.gov> Date: Thu, 27 Feb 2020 19:07:50 -0700 Subject: [PATCH] Update measurement to be per residual, access for multiple measurements by type, and add more comments --- geomagio/residual/method.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 geomagio/residual/method.py diff --git a/geomagio/residual/method.py b/geomagio/residual/method.py new file mode 100644 index 000000000..c838b97aa --- /dev/null +++ b/geomagio/residual/method.py @@ -0,0 +1,4 @@ +def calculate_absolutes(reading: Reading) -> List[Absolute]: + """Use reading measurements and metadata to calculate absolutes. + """ + raise NotImplementedError("TODO: implement this") -- GitLab