From 84a35ee7488d5645d99a4f55d90f06a5e73655ca Mon Sep 17 00:00:00 2001 From: Jeremy Fee <jmfee@usgs.gov> Date: Wed, 29 Apr 2020 08:33:08 -0600 Subject: [PATCH] Add ordinates to web absolutes factory --- geomagio/residual/WebAbsolutesFactory.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/geomagio/residual/WebAbsolutesFactory.py b/geomagio/residual/WebAbsolutesFactory.py index 0a9e16732..120734293 100644 --- a/geomagio/residual/WebAbsolutesFactory.py +++ b/geomagio/residual/WebAbsolutesFactory.py @@ -67,6 +67,10 @@ class WebAbsolutesFactory(object): angle=data["angle"], residual=0, time=data["time"] and UTCDateTime(data["time"]) or None, + h=data["h"], + e=data["e"], + z=data["z"], + f=data["f"], ) def _parse_metadata(self, data: Mapping) -> Dict: -- GitLab