From 9ae7db8c4181ac429f2960a7708fcfb288a038c3 Mon Sep 17 00:00:00 2001 From: zssherman Date: Mon, 1 Jun 2026 15:12:33 -0500 Subject: [PATCH] MNT: Add sorted for nested reading. --- act/io/arm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/act/io/arm.py b/act/io/arm.py index 4bf56709c0..7dbe5a7607 100644 --- a/act/io/arm.py +++ b/act/io/arm.py @@ -179,7 +179,7 @@ def read_arm_netcdf( 'to use to order the datasets for concatenation' ): kwargs['combine'] = 'nested' - ds = xr.open_mfdataset(filenames, **kwargs) + ds = xr.open_mfdataset(sorted(filenames), **kwargs) else: # When all else fails raise the orginal exception