From 3069e7d5261dd6814fb9f828fb298a37608cbe0c Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 22 Aug 2023 15:53:12 +0200 Subject: [PATCH] [minor] commented - possibly unnecessary - line of code that created an error when using old metadata Parser --- pylot/core/util/dataprocessing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/util/dataprocessing.py b/pylot/core/util/dataprocessing.py index 8ea9d8d8..72ac922e 100644 --- a/pylot/core/util/dataprocessing.py +++ b/pylot/core/util/dataprocessing.py @@ -271,7 +271,7 @@ class Metadata(object): continue invtype, robj = self._read_metadata_file(os.path.join(path_to_inventory, fname)) try: - robj.get_coordinates(station_seed_id) + # robj.get_coordinates(station_seed_id) # TODO: Commented out, failed with Parser, is this needed? self.inventory_files[fname] = {'invtype': invtype, 'data': robj} if station_seed_id in self.seed_ids.keys():