From ad842fb364e5a11a3cdccb1999631b01e4cc153d Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Sun, 14 Feb 2021 18:38:05 -0600 Subject: [PATCH] add inverse transforms --- modules/util/geos_nav.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/util/geos_nav.py b/modules/util/geos_nav.py index a23aa93b..a7217e8f 100644 --- a/modules/util/geos_nav.py +++ b/modules/util/geos_nav.py @@ -164,7 +164,7 @@ class GEOSNavigation: ll = np.where(np.isnan(theta), -1, ll) return cc, ll - def lc_to_earth_s(self, cc, ll): + def lc_to_earth(self, cc, ll): x = cc * self.CFAC + self.COFF y = ll * self.LFAC + self.LOFF -- GitLab