Exemple #1
0
 def test_concat_mixed_wvlr_waves_enhance(self):
     # Select even indexed file_paths and odd indexed radial objects
     # into one array of mixed content types for concating
     combined = concat(self.wvlr_mixed, enhance=True)
     assert combined.time.size == 8522
     # Make sure the dataset was sorted by time
     assert np.array_equal(combined.time.values,
                           np.sort(combined.time.values))
Exemple #2
0
 def test_concat_mixed_wvlr_waves(self):
     combined = concat(self.wvlr_mixed)
     assert combined.time.size == 8522
     # Make sure the dataset was sorted by time
     assert np.array_equal(combined.time.values,
                           np.sort(combined.time.values))
Exemple #3
0
 def test_concat_wave_wvlm_objects(self):
     combined = concat(self.wvlm_objects)
     assert combined.time.size == 8524
     # Make sure the dataset was sorted by time
     assert np.array_equal(combined.time.values,
                           np.sort(combined.time.values))