diff --git a/geomagio/Metadata.py b/geomagio/Metadata.py deleted file mode 100644 index 2ce56f5e60c66eb1fccc5de4d6a94d3c6d74d6e2..0000000000000000000000000000000000000000 --- a/geomagio/Metadata.py +++ /dev/null @@ -1,1394 +0,0 @@ -"""Simulate metadata service until it is implemented. -""" - -from obspy import UTCDateTime - - -def get_instrument(observatory, start_time=None, end_time=None, metadata=None): - """Get instrument metadata - - Args: - observatory: observatory code - start_time: start time to match, or None to match any. - end_time: end time to match, or None to match any. - metadata: use custom list, defaults to _INSTRUMENT_METADATA - Returns: - list of matching metadata - """ - metadata = metadata or _INSTRUMENT_METADATA - return [ - m - for m in metadata - if m["station"] == observatory - and (end_time is None or m["start_time"] is None or m["start_time"] < end_time) - and (start_time is None or m["end_time"] is None or m["end_time"] > start_time) - ] - - -""" -To make this list easier to maintain: - - List NT network stations first, then other networks in alphabetical order - - Within networks, alphabetize by station, then start_time. - - When updating a metadata object, copy/paste the current one to the end of the list and update the endtime appropriately. - - Then update the existing object with the new information. -""" -_INSTRUMENT_METADATA = [ - { - "network": "NT", - "station": "BDT", - "start_time": None, - "end_time": UTCDateTime("2023-09-22T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 20613, "scale": 966.7624}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 944.1253}], - "W": [{"channel": "W_Volt", "offset": 47450, "scale": 975.5875}], - }, - "electronics": { - "serial": "E574", - # these scale values are calculated manually. - "x-scale": 966.7624, # nT/V - "y-scale": 944.1253, # nT/V - "z-scale": 975.5875, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0449", - # these constants combine with instrument setting for offset - "x-constant": 37027, # nT/mA - "y-constant": 36160, # nT/mA - "z-constant": 37365, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "BDT", - "start_time": UTCDateTime("2023-09-22T00:00:00.000Z"), - "end_time": UTCDateTime("2024-03-07T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 20729.5, "scale": 966.7624}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 944.1253}], - "W": [{"channel": "W_Volt", "offset": 47042.5, "scale": 975.5875}], - }, - "electronics": { - "serial": "E574", - # these scale values are calculated manually. - "x-scale": 966.7624, # nT/V - "y-scale": 944.1253, # nT/V - "z-scale": 975.5875, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0449", - # these constants combine with instrument setting for offset - "x-constant": 37027, # nT/mA - "y-constant": 36160, # nT/mA - "z-constant": 37365, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "BDT", - "start_time": UTCDateTime("2024-03-07T00:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 20724.67, "scale": 966.7624}], - "V": [{"channel": "V_Volt", "offset": -13.59, "scale": 944.1253}], - "W": [{"channel": "W_Volt", "offset": 47048.96, "scale": 975.5875}], - }, - "electronics": { - "serial": "E574", - # these scale values are calculated manually. - "x-scale": 966.7624, # nT/V - "y-scale": 944.1253, # nT/V - "z-scale": 975.5875, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0449", - # these constants combine with instrument setting for offset - "x-constant": 37027, # nT/mA - "y-constant": 36160, # nT/mA - "z-constant": 37365, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "BOU", - "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": "BXX", - "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": "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": "BRW", - "start_time": UTCDateTime("2023-10-24T22:45:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 9214, "scale": 5797.3}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 5777.6}], - "W": [{"channel": "W_Volt", "offset": 37172, "scale": 5895.6}], - }, - "electronics": { - "serial": "????", - # these scale values are calculated manually. - "x-scale": 5797.3, # nT/V - "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 - }, - }, - }, - { - "network": "NT", - "station": "BSL", - "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": "CMO", - "start_time": UTCDateTime("2023-10-27T16:20:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 12620, "scale": 967.7}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 969.7}], - "W": [{"channel": "W_Volt", "offset": 54907, "scale": 973.4}], - }, - "electronics": { - "serial": "E0568", - # these scale values are used to convert voltage - "x-scale": 967.7, # nT/V - "y-scale": 969.7, # nT/V - "z-scale": 973.4, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0443", - # these constants combine with instrument setting for offset - "x-constant": 37062, # nT/mA - "y-constant": 37141, # nT/mA - "z-constant": 37281, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "CMT", - "start_time": UTCDateTime("2023-10-26T21:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "Narod", - "channels": { - "U": [ - {"channel": "U_Volt", "offset": 0, "scale": 99.4}, - {"channel": "U_Bin", "offset": 0, "scale": 502.5}, - ], - "V": [ - {"channel": "V_Volt", "offset": 0, "scale": 101.5}, - {"channel": "V_Bin", "offset": 0, "scale": 512.5}, - ], - "W": [ - {"channel": "W_Volt", "offset": 0, "scale": 100.98}, - {"channel": "W_Bin", "offset": 0, "scale": 509.15}, - ], - }, - }, - }, - { - "network": "NT", - "station": "DED", - "start_time": None, - "end_time": None, - "instrument": { - "type": "Narod", - "channels": { - "U": [ - {"channel": "U_Volt", "offset": 0, "scale": 100}, - {"channel": "U_Bin", "offset": 0, "scale": 508.20}, - ], - "V": [ - {"channel": "V_Volt", "offset": 0, "scale": 100}, - {"channel": "V_Bin", "offset": 0, "scale": 508.40}, - ], - "W": [ - {"channel": "W_Volt", "offset": 0, "scale": 100}, - {"channel": "W_Bin", "offset": 0, "scale": 508.03}, - ], - }, - }, - }, - { - "network": "NT", - "station": "FDT", - "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": "FRD", - "start_time": None, - "end_time": UTCDateTime("2023-08-23T00:00:00.000Z"), - "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": "FRD", - "start_time": UTCDateTime("2023-08-23T00:00:00.000Z"), - "end_time": UTCDateTime("2023-08-30T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 21639, "scale": 978.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 971.0}], - "W": [{"channel": "W_Volt", "offset": 45573, "scale": 966.7}], - }, - "electronics": { - "serial": "E570", - # these scale values are used to convert voltage - "x-scale": 978.4, # nT/V - "y-scale": 971.0, # nT/V - "z-scale": 966.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0445", - # these constants combine with instrument setting for offset - "x-constant": 37474, # nT/mA - "y-constant": 37191, # nT/mA - "z-constant": 37025, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "FRD", - "start_time": UTCDateTime("2023-08-30T00:00:00.000Z"), - "end_time": UTCDateTime("2024-04-04T17:30:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 21639, "scale": 978.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 971.0}], - "W": [{"channel": "W_Volt", "offset": 45573, "scale": 966.7}], - }, - "electronics": { - "serial": "E570", - # these scale values are used to convert voltage - "x-scale": 978.4, # nT/V - "y-scale": 971.0, # nT/V - "z-scale": 966.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0445", - # these constants combine with instrument setting for offset - "x-constant": 37474, # nT/mA - "y-constant": 37191, # nT/mA - "z-constant": 37025, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "FRD", - "start_time": UTCDateTime("2024-04-04T17:30:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 21777, "scale": 978.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 971.0}], - "W": [{"channel": "W_Volt", "offset": 45426, "scale": 966.7}], - }, - "electronics": { - "serial": "E570", - # these scale values are used to convert voltage - "x-scale": 978.4, # nT/V - "y-scale": 971.0, # nT/V - "z-scale": 966.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0445", - # these constants combine with instrument setting for offset - "x-constant": 37474, # nT/mA - "y-constant": 37191, # nT/mA - "z-constant": 37025, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "FRN", - "start_time": None, - "end_time": None, - "instrument": { - "type": "Narod", - "channels": { - "U": [ - {"channel": "U_Volt", "offset": 0, "scale": 98.48}, - {"channel": "U_Bin", "offset": 0, "scale": 497.50}, - ], - "V": [ - {"channel": "V_Volt", "offset": 0, "scale": 100.60}, - {"channel": "V_Bin", "offset": 0, "scale": 506}, - ], - "W": [ - {"channel": "W_Volt", "offset": 0, "scale": 99}, - {"channel": "W_Bin", "offset": 0, "scale": 501}, - ], - }, - }, - }, - { - "network": "NT", - "station": "GUA", - "start_time": None, - "end_time": UTCDateTime("2024-02-26T03:00:00.000Z"), - "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": "GUA", - "start_time": UTCDateTime("2024-02-26T03:00:00.000Z"), - "end_time": UTCDateTime("2024-03-07T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 35975, "scale": 314.28}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 310.48}], - "W": [{"channel": "W_Volt", "offset": 7750, "scale": 317.5}], - }, - "electronics": { - "serial": "E0542", - # these scale values are used to convert voltage - "x-scale": 314.28, # V/nT - "y-scale": 310.48, # V/nT - "z-scale": 317.5, # V/nT - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0420", - # these constants combine with instrument setting for offset - "x-constant": 37085, # nT/mA - "y-constant": 36637, # nT/mA - "z-constant": 37465, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "GUA", - "start_time": UTCDateTime("2024-03-07T00:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 35976, "scale": 314.28}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 310.48}], - "W": [{"channel": "W_Volt", "offset": 7745, "scale": 317.5}], - }, - "electronics": { - "serial": "E0542", - # these scale values are used to convert voltage - "x-scale": 314.28, # V/nT - "y-scale": 310.48, # V/nT - "z-scale": 317.5, # V/nT - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0420", - # these constants combine with instrument setting for offset - "x-constant": 37085, # nT/mA - "y-constant": 36637, # nT/mA - "z-constant": 37465, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "GUT", - "start_time": None, - "end_time": UTCDateTime("2023-09-22T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 35989, "scale": 314.28}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 310.48}], - "W": [{"channel": "W_Volt", "offset": 7654, "scale": 317.5}], - }, - "electronics": { - "serial": "E0542", - # these scale values are used to convert voltage - "x-scale": 314.28, # V/nT - "y-scale": 310.48, # V/nT - "z-scale": 317.5, # V/nT - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0420", - # these constants combine with instrument setting for offset - "x-constant": 37085, # nT/mA - "y-constant": 36637, # nT/mA - "z-constant": 37465, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "GUT", - "start_time": UTCDateTime("2023-09-22T00:00:00.000Z"), - "end_time": UTCDateTime("2024-02-26T03:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 35975, "scale": 314.28}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 310.48}], - "W": [{"channel": "W_Volt", "offset": 7750, "scale": 317.5}], - }, - "electronics": { - "serial": "E0542", - # these scale values are used to convert voltage - "x-scale": 314.28, # V/nT - "y-scale": 310.48, # V/nT - "z-scale": 317.5, # V/nT - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0420", - # these constants combine with instrument setting for offset - "x-constant": 37085, # nT/mA - "y-constant": 36637, # nT/mA - "z-constant": 37465, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "GUT", - "start_time": UTCDateTime("2024-02-26T03:00:00.000Z"), - "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", - "start_time": None, - "end_time": UTCDateTime("2024-02-20T20:30:00.000Z"), - "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", - "start_time": UTCDateTime("2024-02-20T20:30:00.000Z"), - "end_time": UTCDateTime("2024-03-07T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 27126, "scale": 315.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 315.0}], - "W": [{"channel": "W_Volt", "offset": 21107.5, "scale": 311.7}], - }, - # this info should get updated when available - "electronics": { - "serial": "E558", - # these scale values are used to convert voltage - # these are calculated using Ohm's law, given scaling resistor value, and given nT/mA values. - "x-scale": 315.4, # nT/V - "y-scale": 315.0, # nT/V - "z-scale": 311.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0428", - # these constants combine with instrument setting for offset - "x-constant": 37220, # nT/mA - "y-constant": 37175, # nT/mA - "z-constant": 36775, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "HON", - "start_time": UTCDateTime("2024-03-07T00:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 27126, "scale": 315.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 315.0}], - "W": [{"channel": "W_Volt", "offset": 21207.5, "scale": 311.7}], - }, - # this info should get updated when available - "electronics": { - "serial": "E558", - # these scale values are used to convert voltage - # these are calculated using Ohm's law, given scaling resistor value, and given nT/mA values. - "x-scale": 315.4, # nT/V - "y-scale": 315.0, # nT/V - "z-scale": 311.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0428", - # these constants combine with instrument setting for offset - "x-constant": 37220, # nT/mA - "y-constant": 37175, # nT/mA - "z-constant": 36775, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "HOT", - "start_time": None, - "end_time": UTCDateTime("2022-07-14T16:07:30.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 0, "scale": 971.8}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 970.6}], - "W": [{"channel": "W_Volt", "offset": 0, "scale": 960.2}], - }, - # this info should get updated when available - "electronics": { - "serial": "E558", - # these scale values are used to convert voltage - # these are calculated using Ohm's law, given scaling resistor value, and given nT/mA values. - "x-scale": 971.8, # nT/V - "y-scale": 970.6, # nT/V - "z-scale": 960.2, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0428", - # these constants combine with instrument setting for offset - "x-constant": 37220, # nT/mA - "y-constant": 37175, # nT/mA - "z-constant": 36775, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "HOT", - "start_time": UTCDateTime("2022-07-14T16:07:30.000Z"), - "end_time": UTCDateTime("2023-09-22T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 27123, "scale": 315.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 315.0}], - "W": [{"channel": "W_Volt", "offset": 21158, "scale": 311.7}], - }, - # this info should get updated when available - "electronics": { - "serial": "E558", - # these scale values are used to convert voltage - # these are calculated using Ohm's law, given scaling resistor value, and given nT/mA values. - "x-scale": 315.4, # nT/V - "y-scale": 315.0, # nT/V - "z-scale": 311.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0428", - # these constants combine with instrument setting for offset - "x-constant": 37220, # nT/mA - "y-constant": 37175, # nT/mA - "z-constant": 36775, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "HOT", - "start_time": UTCDateTime("2023-09-22T00:00:00.000Z"), - "end_time": UTCDateTime("2024-02-20T20:30:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 27126, "scale": 315.4}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 315.0}], - "W": [{"channel": "W_Volt", "offset": 21107.5, "scale": 311.7}], - }, - # this info should get updated when available - "electronics": { - "serial": "E558", - # these scale values are used to convert voltage - # these are calculated using Ohm's law, given scaling resistor value, and given nT/mA values. - "x-scale": 315.4, # nT/V - "y-scale": 315.0, # nT/V - "z-scale": 311.7, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0428", - # these constants combine with instrument setting for offset - "x-constant": 37220, # nT/mA - "y-constant": 37175, # nT/mA - "z-constant": 36775, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "HOT", - "start_time": UTCDateTime("2024-02-20T20:30:00.000Z"), - "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": "NEW", - "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": "LLO", - "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": "SHU", - "start_time": None, - "end_time": UTCDateTime("2023-06-28T00:00:00.000Z"), - "instrument": { - "type": "Narod", - "channels": { - "U": [ - {"channel": "U_Volt", "offset": 0, "scale": 100}, - {"channel": "U_Bin", "offset": 0, "scale": 505}, - ], - "V": [ - {"channel": "V_Volt", "offset": 0, "scale": 100}, - {"channel": "V_Bin", "offset": 0, "scale": 505}, - ], - "W": [ - {"channel": "W_Volt", "offset": 0, "scale": 100}, - {"channel": "W_Bin", "offset": 0, "scale": 505}, - ], - }, - }, - }, - { - "network": "NT", - "station": "SHU", - "start_time": UTCDateTime("2023-06-28T00:00:00.000Z"), - "end_time": UTCDateTime("2023-09-07T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 19710, "scale": 944.935}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 964.909}], - "W": [{"channel": "W_Volt", "offset": 48068, "scale": 966.893}], - }, - # this info should get updated when available - "electronics": { - "serial": "E566", - # these scale values are used to convert voltage - # these are calculated using Ohm's law, given scaling resistor value (38.3 kohm), and given nT/mA values. - "x-scale": 944.935, # nT/V - "y-scale": 964.909, # nT/V - "z-scale": 966.893, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0441", - # these constants combine with instrument setting for offset - "x-constant": 36191, # nT/mA - "y-constant": 36956, # nT/mA - "z-constant": 37032, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "SHU", - "start_time": UTCDateTime("2023-09-07T00:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 19710, "scale": 975.1}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 969.4}], - "W": [{"channel": "W_Volt", "offset": 48068, "scale": 978.5}], - }, - # this info should get updated when available - "electronics": { - "serial": "E0598", - # these scale values are used to convert voltage - "x-scale": 975.1, # nT/V - "y-scale": 969.4, # nT/V - "z-scale": 978.5, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0460", - "x-constant": 37348, # nT/mA - "y-constant": 37127, # nT/mA - "z-constant": 37477, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "SIT", - "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": "SJG", - "start_time": None, - "end_time": UTCDateTime("2023-08-18T19:02:34.000Z"), - "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": "SJG", - "start_time": UTCDateTime("2023-08-18T19:02:34.000Z"), - "end_time": UTCDateTime("2023-08-30T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 27047, "scale": 313.2034}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 312.2797}], - "W": [{"channel": "W_Volt", "offset": 24288, "scale": 311.9576}], - }, - "electronics": { - "serial": "E0543", - # these scale values are calculated manually - "x-scale": 313.2034, # nT/V - "y-scale": 312.2797, # nT/V - "z-scale": 311.9576, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0419", - # these constants combine with instrument setting for offset - "x-constant": 36958, # nT/mA - "y-constant": 36849, # nT/mA - "z-constant": 36811, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "SJG", - "start_time": UTCDateTime("2023-08-30T00:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 26947.5, "scale": 313.2034}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 312.2797}], - "W": [{"channel": "W_Volt", "offset": 24690, "scale": 311.9576}], - }, - "electronics": { - "serial": "E0543", - # these scale values are calculated manually - "x-scale": 313.2034, # nT/V - "y-scale": 312.2797, # nT/V - "z-scale": 311.9576, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0419", - # these constants combine with instrument setting for offset - "x-constant": 36958, # nT/mA - "y-constant": 36849, # nT/mA - "z-constant": 36811, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "SJT", - "start_time": None, - "end_time": UTCDateTime("2023-08-18T19:02:34.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 27047, "scale": 313.2034}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 312.2797}], - "W": [{"channel": "W_Volt", "offset": 24288, "scale": 311.9576}], - }, - # this info should get updated when available - "electronics": { - "serial": "E0543", - # these scale values are calculated manually - "x-scale": 313.2034, # nT/V - "y-scale": 312.2797, # nT/V - "z-scale": 311.9576, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0419", - # these constants combine with instrument setting for offset - "x-constant": 36958, # nT/mA - "y-constant": 36849, # nT/mA - "z-constant": 36811, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "SJT", - "start_time": UTCDateTime("2023-08-18T19:02:34.000Z"), - "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": "TUC", - "start_time": None, - "end_time": UTCDateTime("2023-03-29T00:00:00.000Z"), - "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": "TUC", - "start_time": UTCDateTime("2023-03-29T00:00:00.000Z"), - "end_time": UTCDateTime("2023-08-30T00:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 24024, "scale": 978.355}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 965.901}], - "W": [{"channel": "W_Volt", "offset": 40040, "scale": 954.543}], - }, - # this info should get updated when available - "electronics": { - "serial": "E571", - # these scale values are calculated manually - "x-scale": 978.355, # nT/V - "y-scale": 965.901, # nT/V - "z-scale": 954.543, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0446", - # these constants combine with instrument setting for offset - "x-constant": 37471, # nT/mA - "y-constant": 36994, # nT/mA - "z-constant": 36559, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "TUC", - "start_time": UTCDateTime("2023-08-30T00:00:00.000Z"), - "end_time": None, - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 24016.5, "scale": 978.355}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 965.901}], - "W": [{"channel": "W_Volt", "offset": 39953.5, "scale": 954.543}], - }, - # this info should get updated when available - "electronics": { - "serial": "E571", - # these scale values are calculated manually - "x-scale": 978.355, # nT/V - "y-scale": 965.901, # nT/V - "z-scale": 954.543, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0446", - # these constants combine with instrument setting for offset - "x-constant": 37471, # nT/mA - "y-constant": 36994, # nT/mA - "z-constant": 36559, # nT/mA - }, - }, - }, - { - "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}, - ], - }, - }, - }, - { - "network": "NT", - "station": "BRW", - "start_time": UTCDateTime("2023-10-23T19:00:00.000Z"), - "end_time": UTCDateTime("2023-10-24T22:45:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 9217, "scale": 5797.3}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 5777.6}], - "W": [{"channel": "W_Volt", "offset": 56442, "scale": 5895.6}], - }, - "electronics": { - "serial": "????", - # these scale values are calculated manually. - "x-scale": 5797.3, # nT/V - "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 - }, - }, - }, - { - "network": "NT", - "station": "CMO", - "start_time": None, - "end_time": UTCDateTime("2023-10-26T21:00:00.000Z"), - "instrument": { - "type": "Narod", - "channels": { - "U": [ - {"channel": "U_Volt", "offset": 0, "scale": 99.4}, - {"channel": "U_Bin", "offset": 0, "scale": 502.5}, - ], - "V": [ - {"channel": "V_Volt", "offset": 0, "scale": 101.5}, - {"channel": "V_Bin", "offset": 0, "scale": 512.5}, - ], - "W": [ - {"channel": "W_Volt", "offset": 0, "scale": 100.98}, - {"channel": "W_Bin", "offset": 0, "scale": 509.15}, - ], - }, - }, - }, - { - "network": "NT", - "station": "CMT", - "start_time": None, - "end_time": UTCDateTime("2023-10-26T21:00:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 0, "scale": 967.7}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 969.7}], - "W": [{"channel": "W_Volt", "offset": 0, "scale": 973.4}], - }, - "electronics": { - "serial": "E0568", - # these scale values are used to convert voltage - "x-scale": 967.7, # nT/V - "y-scale": 969.7, # nT/V - "z-scale": 973.4, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0443", - # these constants combine with instrument setting for offset - "x-constant": 37062, # nT/mA - "y-constant": 37141, # nT/mA - "z-constant": 37281, # nT/mA - }, - }, - }, - { - "network": "NT", - "station": "CMO", - "start_time": UTCDateTime("2023-10-26T21:00:00.000Z"), - "end_time": UTCDateTime("2023-10-27T16:20:00.000Z"), - "instrument": { - "type": "FGE", - "channels": { - # each channel maps to a list of components to calculate nT - # TODO: calculate these lists based on "FGE" type - "U": [{"channel": "U_Volt", "offset": 0, "scale": 967.7}], - "V": [{"channel": "V_Volt", "offset": 0, "scale": 969.7}], - "W": [{"channel": "W_Volt", "offset": 0, "scale": 973.4}], - }, - "electronics": { - "serial": "E0568", - # these scale values are used to convert voltage - "x-scale": 967.7, # nT/V - "y-scale": 969.7, # nT/V - "z-scale": 973.4, # nT/V - "temperature-scale": 0.01, # V/K - }, - "sensor": { - "serial": "S0443", - # these constants combine with instrument setting for offset - "x-constant": 37062, # nT/mA - "y-constant": 37141, # nT/mA - "z-constant": 37281, # nT/mA - }, - }, - }, -]