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.
LT1AB
Bryan Marfito 2021-01-09 18:13:47 +08:00 committed by GitHub
parent f65a51c80c
commit 4af17a6f84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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