diff --git a/applications/rtcApp.py b/applications/rtcApp.py index ab45a7e..836151e 100755 --- a/applications/rtcApp.py +++ b/applications/rtcApp.py @@ -155,7 +155,7 @@ NUMBER_RANGE_LOOKS = Application.Parameter('numberRangeLooks', ) POSTING = Application.Parameter('posting', - public_name='azimuth looks', + public_name='posting', default = 20.0, type = float, mandatory = False, @@ -363,6 +363,7 @@ class GRDSAR(Application): self.verifyDEM = RtcProc.createVerifyDEM(self) self.multilook = RtcProc.createLooks(self) self.runTopo = RtcProc.createTopo(self) + self.runNormalize = RtcProc.createNormalize(self) # self.runGeocode = RtcProc.createGeocode(self) return None @@ -392,6 +393,9 @@ class GRDSAR(Application): ##Run topo for each bursts self.step('topo', func=self.runTopo) + ##Run normalize to get gamma0 + self.step('normalize', func=self.runNormalize) + # Geocode # self.step('geocode', func=self.runGeocode, # args=(self.geocode_list, self.do_unwrap, self.geocode_bbox)) @@ -416,6 +420,9 @@ class GRDSAR(Application): ##Run topo for each burst self.runTopo() + + ##Run normalize to get gamma0 + self.runNormalize() ###Compute covariance # self.runEstimateCovariance()