From c34780f1041c19ed37e0ff1f77c05c812a78ec94 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Wed, 10 Apr 2024 19:22:31 +0200 Subject: [PATCH] fix comparison values --- oceans/datasets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oceans/datasets.py b/oceans/datasets.py index bdc6233..815d63b 100644 --- a/oceans/datasets.py +++ b/oceans/datasets.py @@ -287,7 +287,7 @@ def get_depth(lon, lat, tfile=None): >>> station_lon = [-40, -32] >>> station_lat = [-20, -20] >>> get_depth(station_lon, station_lat) - array([ -32.98816423, -4275.63374601]) + array([ -32.988163, -4275.634 ], dtype=float32) """ lon, lat = list(map(np.atleast_1d, (lon, lat)))