From b13c7f39e28d8a003f9ab942cc6164c22b58894e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= <49512274+ludwigVonKoopa@users.noreply.github.com> Date: Sun, 28 Nov 2021 15:24:14 +0100 Subject: [PATCH] Orthographic threshold reduction --- lib/cartopy/crs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cartopy/crs.py b/lib/cartopy/crs.py index 4a32f7d0c..50fc734d6 100644 --- a/lib/cartopy/crs.py +++ b/lib/cartopy/crs.py @@ -2071,7 +2071,7 @@ def __init__(self, central_longitude=0.0, central_latitude=0.0, maxs = np.max(coords, axis=1) self._x_limits = mins[0], maxs[0] self._y_limits = mins[1], maxs[1] - self.threshold = np.diff(self._x_limits)[0] * 0.02 + self.threshold = np.diff(self._x_limits)[0] * 0.001 @property def boundary(self):