Hi folks,
I have 2 four-dimensional cubes, as follows:
```
air_temperature / (K) (Ensemble member: 1; time: 12; projection_y_coordinate: 25; projection_x_coordinate: 15)
air_temperature / (K) (Ensemble member: 1; time: 12; projection_y_coordinate: 25; projection_x_coordinate: 15)
```
The Ensemble member coordinate variable axis is of length one in each file and has values [1] and [2] in the two separate files. I want Iris to concatenate them into this cube:
```
air_temperature / (K) (Ensemble member: 2; time: 12; projection_y_coordinate: 25; projection_x_coordinate: 15)
```
I have tried `cubelist.concatenate()` and `cubelist.merge()` but it returns two separate cubes each time. Is there a way to do this?
The input files are here (they are small):
And the code I'm using is:
```
import iris
print "\nTrying to group ensemble members now...\n"
cl = iris.load(files)
c = cl.concatenate()
print c
```
Thanks,
Ag