diff --git a/lib/station_coordinates.py b/lib/station_coordinates.py index 7e75a48a8f6a0d744f7bafed01b63cf393e82366..7b07bdcedad7c345ef10c238fc6be47977e9b558 100644 --- a/lib/station_coordinates.py +++ b/lib/station_coordinates.py @@ -25,7 +25,7 @@ def parse_station_coordinates() -> dict: eval_value = literal_eval(value.strip()) field_coords = {'coordinate_system': 'ITRF2005', 'epoch': '2017.5' if 'DE605' in key else '2015.5', 'x': eval_value[0], 'y': eval_value[1], 'z': eval_value[2], 'name': key} # 'coordinate_system': 'ITRF2005' is correct or is this 'WGS84' or do we have to update the SIP library to support a newer standard?! - station_coordinates[key] = field_coords + station_coordinates[key] = field_coords if not expected_comment_found: raise ValueError('File contents are missing an expected comment, indicating that special cases are no longer present in the coordinates file. Revise the code to reflect that.') return station_coordinates