Skip to content
Snippets Groups Projects
Commit 6233530e authored by Geels, Brendan Ryan's avatar Geels, Brendan Ryan :tophat:
Browse files

Initial BRW FGE metadata

parent 4597989e
No related branches found
No related tags found
1 merge request!266Initial BRW FGE metadata
...@@ -166,23 +166,31 @@ _INSTRUMENT_METADATA = [ ...@@ -166,23 +166,31 @@ _INSTRUMENT_METADATA = [
{ {
"network": "NT", "network": "NT",
"station": "BRW", "station": "BRW",
"start_time": None, "start_time": UTCDateTime("2023-10-23T19:00:00.000Z"),
"end_time": None, "end_time": None,
"instrument": { "instrument": {
"type": "Narod", "type": "FGE",
"channels": { "channels": {
"U": [ # each channel maps to a list of components to calculate nT
{"channel": "U_Volt", "offset": 0, "scale": 100}, # TODO: calculate these lists based on "FGE" type
{"channel": "U_Bin", "offset": 0, "scale": 506}, "U": [{"channel": "U_Volt", "offset": 9217, "scale": 5797.3}],
], "V": [{"channel": "V_Volt", "offset": 0, "scale": 5777.6}],
"V": [ "W": [{"channel": "W_Volt", "offset": 56442, "scale": 5895.6}],
{"channel": "V_Volt", "offset": 0, "scale": 100}, },
{"channel": "V_Bin", "offset": 0, "scale": 505.6}, "electronics": {
], "serial": "????",
"W": [ # these scale values are calculated manually.
{"channel": "W_Volt", "offset": 0, "scale": 100}, "x-scale": 5797.3, # nT/V
{"channel": "W_Bin", "offset": 0, "scale": 506}, "y-scale": 5777.6, # nT/V
], "z-scale": 5895.6, # nT/V
"temperature-scale": 0.01, # V/K
},
"sensor": {
"serial": "????",
# these constants combine with instrument setting for offset
"x-constant": None, # nT/mA
"y-constant": None, # nT/mA
"z-constant": None, # nT/mA
}, },
}, },
}, },
...@@ -1007,4 +1015,27 @@ _INSTRUMENT_METADATA = [ ...@@ -1007,4 +1015,27 @@ _INSTRUMENT_METADATA = [
}, },
}, },
}, },
{
"network": "NT",
"station": "BRW",
"start_time": None,
"end_time": UTCDateTime("2023-10-23T20:00:00.000Z"),
"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},
],
},
},
},
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment