We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07800c commit c653280Copy full SHA for c653280
lib/iris/fileformats/nimrod_load_rules.py
@@ -301,7 +301,9 @@ def experiment(cube, field):
301
"""Add an 'experiment number' to the cube, if present in the field."""
302
if not is_missing(field, field.experiment_num):
303
cube.add_aux_coord(
304
- DimCoord(field.experiment_num, long_name="experiment_number")
+ DimCoord(
305
+ field.experiment_num, long_name="experiment_number", units="1"
306
+ )
307
)
308
309
@@ -592,7 +594,9 @@ def ensemble_member(cube, field):
592
594
if not is_missing(field, ensemble_member_value):
593
595
596
DimCoord(
- np.array(ensemble_member_value, dtype=np.int32), "realization"
597
+ np.array(ensemble_member_value, dtype=np.int32),
598
+ "realization",
599
+ units="1",
600
601
602
0 commit comments