From c7c78cf0b97f9d169f712d9841311ae449787920 Mon Sep 17 00:00:00 2001 From: Laurent Berder Date: Thu, 20 Nov 2025 15:39:51 +0100 Subject: [PATCH] Update xarray.merge to include compatibility options Avoids deprecation warnings --- src/georinex/nav3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/georinex/nav3.py b/src/georinex/nav3.py index d0758c3..d3947d2 100644 --- a/src/georinex/nav3.py +++ b/src/georinex/nav3.py @@ -135,7 +135,7 @@ def rinexnav3( if len(nav) == 0: nav = xarray.Dataset(dsf, coords={"time": tu, "sv": [svv]}) else: - nav = xarray.merge((nav, xarray.Dataset(dsf, coords={"time": tu, "sv": [svv]}))) + nav = xarray.merge((nav, xarray.Dataset(dsf, coords={"time": tu, "sv": [svv]})), compat="override", join="outer") sv_copies += 1 check[np.arange(check.size)[check][iu]] = False