Add files via upload

updated posting
LT1AB
Microwave Remote Sensing Laboratory 2019-09-26 15:20:35 -04:00 committed by GitHub
parent c6e8c7922e
commit 64e2fdff0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 1 deletions

View File

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