From 1bcc6790eff05a8dd861ad1974fd861a58be8fca Mon Sep 17 00:00:00 2001 From: Eddie McWhirter <emcwhirter@usgs.gov> Date: Tue, 7 Jul 2015 13:24:52 -0600 Subject: [PATCH] Add NEW and BDT to Edge metadata. --- geomagio/edge/ObservatoryMetadata.py | 60 ++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/geomagio/edge/ObservatoryMetadata.py b/geomagio/edge/ObservatoryMetadata.py index 4642d857a..82ac989f8 100644 --- a/geomagio/edge/ObservatoryMetadata.py +++ b/geomagio/edge/ObservatoryMetadata.py @@ -3,6 +3,36 @@ # default metadata for the 14 USGS observatories. DEFAULT_METADATA = { + 'BDT': { + 'metadata': { + 'station_name': 'Boulder Test', + 'agency_name': 'United States Geological Survey (USGS)', + 'geodetic_latitude': '40.137', + 'geodetic_longitude': '254.764', + 'elevation': '1682', + 'sensor_orientation': 'HDZF', + 'sensor_sampling_rate': 0.01, + 'declination_base': 5527, + 'is_gin': False, + 'is_intermagnet': False, + 'conditions_of_use': 'The Conditions of Use for data provided' + + ' through INTERMAGNET and acknowledgement templates' + + ' can be found at www.intermagnet.org' + }, + 'interval_specific': { + 'minute': { + 'data_interval_type': 'filtered 1-minute (00:15-01:45) ', + 'filter_comments': ['Vector 1-minute values are computed' + + ' from 1-second values using the INTERMAGNET gaussian' + + ' filter centered on the minute. Scalar 1-minute values' + + ' are computed from 1-second values using the' + + ' INTERMAGNET gaussian filter centered on the minute. '] + }, + 'second': { + 'data_interval_type': 'Average 1-Second' + } + } + }, 'BOU': { 'metadata': { 'station_name': 'Boulder', @@ -260,6 +290,36 @@ DEFAULT_METADATA = { } } }, + 'NEW': { + 'metadata': { + 'station_name': 'Newport', + 'agency_name': 'United States Geological Survey (USGS)', + 'geodetic_latitude': '48.265', + 'geodetic_longitude': '242.878', + 'elevation': '770', + 'sensor_orientation': 'HDZF', + 'sensor_sampling_rate': 0.01, + 'declination_base': 12133, + 'is_gin': False, + 'is_intermagnet': False, + 'conditions_of_use': 'The Conditions of Use for data provided' + + ' through INTERMAGNET and acknowledgement templates' + + ' can be found at www.intermagnet.org' + }, + 'interval_specific': { + 'minute': { + 'data_interval_type': 'filtered 1-minute (00:15-01:45) ', + 'filter_comments': ['Vector 1-minute values are computed' + + ' from 1-second values using the INTERMAGNET gaussian' + + ' filter centered on the minute. Scalar 1-minute values' + + ' are computed from 1-second values using the' + + ' INTERMAGNET gaussian filter centered on the minute. '] + }, + 'second': { + 'data_interval_type': 'Average 1-Second' + } + } + }, 'SHU': { 'metadata': { 'station_name': 'Shumagin', -- GitLab