From 43a21036814ec6a980d3b1cc15674781c5674568 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 30 Jun 2024 14:23:35 -0600 Subject: [PATCH] d --- ldcpy/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldcpy/util.py b/ldcpy/util.py index b5bac7f..21d769f 100644 --- a/ldcpy/util.py +++ b/ldcpy/util.py @@ -151,7 +151,7 @@ def open_datasets(data_type, varnames, list_of_files, labels, weights=True, **kw # preprocess_vars is here for working on jupyter hub... def preprocess_vars(ds): # Trim the dataset to the minimum number of time steps - ds = ds.isel(time=slice(0, 6000)) + ds = ds.isel(time=slice(0, 25100)) # Select the specified variables return ds[varnames]