From 4af17a6f84d8c23ab78447b602c83f5ad1e3e9b9 Mon Sep 17 00:00:00 2001 From: Bryan Marfito Date: Sat, 9 Jan 2021 18:13:47 +0800 Subject: [PATCH] Update rtcApp.py I recommend to remove the arguments args=(self.geocode_list, self.geocode_bbox) since it passes the arguments on the runGeocode.py of the RtcProc which prevents geocoding of the sigma nought product generated from the rtcApp.py. This could be added later if someone would incorporate the geocode_list and geocode_bbox on the runGeocode.py later. --- applications/rtcApp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/applications/rtcApp.py b/applications/rtcApp.py index fc2d3c4..f62740d 100755 --- a/applications/rtcApp.py +++ b/applications/rtcApp.py @@ -424,8 +424,7 @@ class GRDSAR(Application): self.step('normalize', func=self.runNormalize) # Geocode - self.step('geocode', func=self.runGeocode, - args=(self.geocode_list, self.geocode_bbox)) + self.step('geocode', func=self.runGeocode) return None