@@ -161,7 +161,7 @@ def yaml_check(self):
161
161
# Extract split-spectrum dictionary
162
162
split_cfg = iono_cfg ['split_range_spectrum' ]
163
163
iono_freq_pol = iono_cfg ['list_of_frequencies' ]
164
- iono_method = split_cfg ['spectral_diversity' ]
164
+ iono_method = iono_cfg ['spectral_diversity' ]
165
165
166
166
# Extract main range bandwidth from reference SLC
167
167
ref_slc_path = self .cfg ['input_file_group' ]['input_file_path' ]
@@ -206,7 +206,7 @@ def yaml_check(self):
206
206
for iono_pol in iono_freq_pol ['A' ]:
207
207
if (iono_pol not in ref_pols_freqA ) or \
208
208
(iono_pol not in sec_pols_freqA ):
209
- err_str = f"polarzations { iono_pol } for ionosphere estimation are given , but not found"
209
+ err_str = f"polarzations { iono_pol } for ionosphere estimation are requested , but not found"
210
210
error_channel .log (err_str )
211
211
raise FileNotFoundError (err_str )
212
212
@@ -236,13 +236,13 @@ def yaml_check(self):
236
236
if split_cfg ['low_band_bandwidth' ] is None :
237
237
split_cfg ['low_band_bandwidth' ] = rg_main_bandwidth / 3.0
238
238
info_str = "low band width for low sub-bands are not given;" \
239
- "It is automatically set by 1/3 of range bandwidth of freqeuncyA "
239
+ "It is automatically set by 1/3 of range bandwidth of frequencyA "
240
240
warning_channel .log (info_str )
241
241
242
242
if split_cfg ['high_band_bandwidth' ] is None :
243
243
split_cfg ['high_band_bandwidth' ] = rg_main_bandwidth / 3.0
244
244
info_str = "high band width for high sub-band are not given;" \
245
- "It is automatically set by 1/3 of range bandwidth of freqeuncyA "
245
+ "It is automatically set by 1/3 of range bandwidth of frequencyA "
246
246
warning_channel .log (info_str )
247
247
248
248
# methods that use side band
@@ -287,7 +287,7 @@ def yaml_check(self):
287
287
if (iono_pol not in ref_pols_freqB ) or \
288
288
(iono_pol not in sec_pols_freqB ):
289
289
err_str = f"polarzations { iono_pol } for ionosphere" \
290
- "estimation are given , but not found"
290
+ "estimation are requested , but not found"
291
291
error_channel .log (err_str )
292
292
raise FileNotFoundError (err_str )
293
293
0 commit comments