From 39b58be82acb73949f599a413eed3761d5fdc752 Mon Sep 17 00:00:00 2001
From: tomrink <rink@ssec.wisc.edu>
Date: Mon, 25 Sep 2023 11:35:00 -0500
Subject: [PATCH] snapshot...

---
 modules/util/plot.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/util/plot.py b/modules/util/plot.py
index 2f0bab9b..081964c9 100644
--- a/modules/util/plot.py
+++ b/modules/util/plot.py
@@ -292,14 +292,14 @@ def make_time_domain_hist(values, edges):
     plt.show()
 
 
-def scatter_density(x, y, color=None, fname=None, fig=None, x_rng=None, y_rng=None):
+def scatter_density(x, y, color=None, fname=None, fig=None, x_rng=None, y_rng=None, dpi=72):
     if fig is None:
         fig = plt.figure()
     ax = fig.add_subplot(1, 1, 1, projection='scatter_density')
     if color is not None:
-        ax.scatter_density(x, y, color=color)
+        ax.scatter_density(x, y, color=color, dpi=dpi)
     else:
-        ax.scatter_density(x, y)
+        ax.scatter_density(x, y, dpi=dpi)
     if x_rng is not None and y_rng is not None:
         ax.set_xlim(x_rng[0], x_rng[1])
         ax.set_ylim(y_rng[0], y_rng[1])
-- 
GitLab