@@ -287,7 +287,7 @@ def _org_obs_data(self):
287287 if self .sparse_info is not None and \
288288 vintage < len (self .sparse_info ['mask' ]) and \
289289 len (data_array ) == int (np .sum (self .sparse_info ['mask' ][vintage ])):
290- data_array = self .compress (data_array , vintage , False )
290+ data_array = self .compress_manager (data_array , vintage , False )
291291 vintage = vintage + 1
292292
293293 # Save array in obs_data. If it is an array with single value (not list), then we convert it to a
@@ -321,7 +321,7 @@ def _org_obs_data(self):
321321 if self .sparse_info is not None and \
322322 vintage < len (self .sparse_info ['mask' ]) and \
323323 len (data_array ) == int (np .sum (self .sparse_info ['mask' ][vintage ])):
324- data_array = self .compress (data_array , vintage , False )
324+ data_array = self .compress_manager (data_array , vintage , False )
325325 vintage = vintage + 1
326326
327327 # Save array in obs_data. If it is an array with single value (not list), then we convert it to a
@@ -645,7 +645,7 @@ def save_temp_state_ml(self, ind_save):
645645 self .temp_state [ind_save ] = deepcopy (self .state )
646646 np .savez ('temp_state_ml' , self .temp_state )
647647
648- def compress (self , data = None , vintage = 0 , aug_coeff = None ):
648+ def compress_manager (self , data = None , vintage = 0 , aug_coeff = None ):
649649 """
650650 Compress the input data using wavelets.
651651
0 commit comments