From 97e601f8414dc0f7b6ec8a3796f560e63d3e3e87 Mon Sep 17 00:00:00 2001
From: "E. Joshua Rigler" <erigler@usgs.gov>
Date: Sat, 16 Apr 2022 10:53:39 -0600
Subject: [PATCH] Add GUA to geomagio/Metadata.py

GUA is transitioning to an ObsRIO data logger, which requires a
metadata entry in Metadata.py. We do not know actual calibration
values for the GUA Narod mag, and cannot retrieve them currently
due to ongoing communication issues, so we'll use Narod default
calibration parameters.

This commit applies strictly to GUA. Additional commits are
forthcoming that relate to the test FGE+ObsRIO system that will
also be deployed soon.
---
 geomagio/Metadata.py | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/geomagio/Metadata.py b/geomagio/Metadata.py
index dec19252..74c2b347 100644
--- a/geomagio/Metadata.py
+++ b/geomagio/Metadata.py
@@ -321,6 +321,29 @@ _INSTRUMENT_METADATA = [
             },
         },
     },
+    {
+        "network": "NT",
+        "station": "GUA",
+        "start_time": None,
+        "end_time": None,
+        "instrument": {
+            "type": "Narod",
+            "channels": {
+                "U": [
+                    {"channel": "U_Volt", "offset": 0, "scale": 100},
+                    {"channel": "U_Bin", "offset": 0, "scale": 500},
+                ],
+                "V": [
+                    {"channel": "V_Volt", "offset": 0, "scale": 100},
+                    {"channel": "V_Bin", "offset": 0, "scale": 500},
+                ],
+                "W": [
+                    {"channel": "W_Volt", "offset": 0, "scale": 100},
+                    {"channel": "W_Bin", "offset": 0, "scale": 500},
+                ],
+            },
+        },
+    },
     {
         "network": "NT",
         "station": "HON",
-- 
GitLab