From 01417cc96910ded27fa26eb9861d0e0c1b1c3786 Mon Sep 17 00:00:00 2001 From: Sandor Kertesz Date: Wed, 6 May 2026 15:18:23 +0100 Subject: [PATCH] Hide xarray field parsing warnings --- src/earthkit/data/readers/xarray/flavour.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/earthkit/data/readers/xarray/flavour.py b/src/earthkit/data/readers/xarray/flavour.py index ed45f18a5..fb90303f7 100644 --- a/src/earthkit/data/readers/xarray/flavour.py +++ b/src/earthkit/data/readers/xarray/flavour.py @@ -181,10 +181,10 @@ def _guess(self, coordinate: xr.DataArray, coord: Hashable) -> Coordinate: if coordinate.shape in ((1,), tuple()): return ScalarCoordinate(coordinate) - LOG.warning( - f"Coordinate {coord} not supported\n{axis=}, {name=}," - f" {long_name=}, {standard_name=}, units\n\n{coordinate}\n\n{type(coordinate.values)} {coordinate.shape}" - ) + # LOG.warning( + # f"Coordinate {coord} not supported\n{axis=}, {name=}," + # f" {long_name=}, {standard_name=}, units\n\n{coordinate}\n\n{type(coordinate.values)} {coordinate.shape}" + # ) return UnsupportedCoordinate(coordinate)