From 796023b44076b41dd7c997240accf0256428a48b Mon Sep 17 00:00:00 2001 From: Ansgar Wehrhahn <31626864+AWehrhahn@users.noreply.github.com> Date: Wed, 2 Jun 2021 18:00:31 +0200 Subject: [PATCH] increase data size in _save that stays in the header --- src/pysme/data_structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pysme/data_structure.py b/src/pysme/data_structure.py index b204fe96..0618a651 100644 --- a/src/pysme/data_structure.py +++ b/src/pysme/data_structure.py @@ -244,7 +244,7 @@ def _save(self): for name in self._names: value = self[name] - if isinstance(value, np.ndarray) and value.size > 5: + if isinstance(value, np.ndarray) and value.size > 10: data[name] = value else: header[name] = value