Ejemplo n.º 1
0
 def test_one_forecast_predictor(self):
     """Test handling one forecast predictor"""
     self.forecast_predictors = iris.cube.CubeList([self.forecast])
     results = broadcast_data_to_time_coord(self.forecast_predictors)
     self.assertEqual(len(results), 1)
     self.assertTupleEqual(results[0].shape, self.expected_forecast)
     self.assertArrayEqual(results[0], self.forecast.data)
Ejemplo n.º 2
0
 def test_two_forecast_predictors(self):
     """Test handling two forecast predictors, where one is a static predictor."""
     self.forecast_predictors = iris.cube.CubeList([self.forecast, self.altitude])
     results = broadcast_data_to_time_coord(self.forecast_predictors)
     self.assertEqual(len(results), 2)
     self.assertTupleEqual(results[0].shape, self.expected_forecast)
     self.assertTupleEqual(results[1].shape, self.expected_altitude)
Ejemplo n.º 3
0
 def test_scalar_time_coord(self):
     """Test handling of a scalar time coordinate on the historic forecasts,
     which may occur during the spinning-up of a training dataset."""
     self.forecast_predictors = iris.cube.CubeList(
         [self.forecast[:, 0], self.altitude])
     results = broadcast_data_to_time_coord(self.forecast_predictors)
     self.assertEqual(len(results), 2)
     self.assertTupleEqual(results[0].shape, self.forecast[:, 0].shape)
     self.assertTupleEqual(results[1].shape, self.altitude.shape)