Skip to content

Commit 81a83c0

Browse files
committed
Fix sign for delay_ofs_dbf in pattern.py
1 parent 3bf3ae6 commit 81a83c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/packages/nisar/antenna/pattern.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class AntennaPattern:
159159
caltone_freq: float or None. Optional
160160
Caltone frequency in Hz.
161161
If None (default), it will be extracted from telemetry DRT in L0B.
162-
delay_ofs_dbf: float, default=2.1474e-6
162+
delay_ofs_dbf: float, default=-2.1474e-6
163163
Delay offset (seconds) in data window position of onboard DBF
164164
process applied to all bands and polarizations.
165165
@@ -173,7 +173,7 @@ def __init__(self, raw: Raw, dem: DEMInterpolator,
173173
el_spacing_min=8.72665e-5,
174174
freq_band=None,
175175
caltone_freq=None,
176-
delay_ofs_dbf=2.1474e-6):
176+
delay_ofs_dbf=-2.1474e-6):
177177

178178
self.orbit = orbit.copy()
179179
self.attitude = attitude.copy()

0 commit comments

Comments
 (0)