We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c4e3f commit e409224Copy full SHA for e409224
LiCSBAS_lib/LiCSBAS_io_lib.py
@@ -8,6 +8,8 @@
8
=========
9
Changelog
10
11
+v1.2.1 20201211 Yu Morioshita, GSI
12
+ - Skip invalid lines in baselines file in read_bperp_file
13
v1.2 20200703 Yu Morioshita, GSI
14
- Replace problematic terms
15
v1.1 20200227 Yu Morioshita, Uni of Leeds and GSI
@@ -121,7 +123,8 @@ def read_bperp_file(bperp_file, imdates):
121
123
bperp_dict[line[0]] = '0.00' ## single prime. unnecessary?
122
124
with open(bperp_file) as f:
125
for l in f:
- bperp_dict[l.split()[1]] = l.split()[2]
126
+ if len(l.split()) == 4:
127
+ bperp_dict[l.split()[1]] = l.split()[2]
128
129
else: ## old format
130
0 commit comments