From f7d945402002f47457e57876ab0a766cf09cf18a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20K=C3=BCnsem=C3=B6ller?= <jkuensem@physik.uni-bielefeld.de> Date: Thu, 4 Jul 2024 15:34:57 +0200 Subject: [PATCH] TMSS-2173: intendation error --- lib/station_coordinates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/station_coordinates.py b/lib/station_coordinates.py index 7e75a48..7b07bdc 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 -- GitLab