From f941e16046f9bbca5f28913e6b9a09ab2e09e432 Mon Sep 17 00:00:00 2001 From: "E. Joshua Rigler" <erigler@usgs.gov> Date: Sat, 9 May 2020 09:27:03 -0600 Subject: [PATCH] BRT calibrated values; add FDT to Metadata.py Turns out we had calibration values for the BRW/BRT sensor in the PCDCP system, so I used these instead of the default Narold values. Also, @bgeels said FDT is ready to go online, so we added an entry for that. FRD was using default Narod calibration values in PCDCP, so we just kept those. --- geomagio/Metadata.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/geomagio/Metadata.py b/geomagio/Metadata.py index d193aab6..ded8a141 100644 --- a/geomagio/Metadata.py +++ b/geomagio/Metadata.py @@ -65,6 +65,29 @@ _INSTRUMENT_METADATA = [ "station": "BRT", "start_time": None, "end_time": None, + "instrument": { + "type": "Narod", + "channels": { + "U": [ + {"channel": "U_Volt", "offset": 0, "scale": 100}, + {"channel": "U_Bin", "offset": 0, "scale": 506}, + ], + "V": [ + {"channel": "V_Volt", "offset": 0, "scale": 100}, + {"channel": "V_Bin", "offset": 0, "scale": 505.6}, + ], + "W": [ + {"channel": "W_Volt", "offset": 0, "scale": 100}, + {"channel": "W_Bin", "offset": 0, "scale": 506}, + ], + }, + }, + }, + { + "network": "NT", + "station": "FDT", + "start_time": None, + "end_time": None, "instrument": { "type": "Narod", "channels": { -- GitLab