Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
fe71a74
Update runDispersive.py
bjmarfito Aug 9, 2023
8491591
Update estimateIono.py
bjmarfito Aug 9, 2023
a8d35c3
Update runDispersive.py
bjmarfito Aug 9, 2023
e26f7cf
Update estimateIono.py
bjmarfito Aug 9, 2023
8095b24
Update runDispersive.py
bjmarfito Aug 9, 2023
9fa0d76
Update estimateIono.py
bjmarfito Aug 9, 2023
f9a05ae
Update estimateIono.py
bjmarfito Aug 9, 2023
674ba66
Update runDispersive.py
bjmarfito Aug 9, 2023
21ece6e
Update runDispersive.py
bjmarfito Aug 10, 2023
236ae8c
Update estimateIono.py
bjmarfito Aug 10, 2023
8f8d700
Merge branch 'isce-framework:main' into main
bjmarfito Mar 5, 2024
fdc3e7e
Added Lutan-1 support
Mar 9, 2024
d31cbb8
Added revision for Lutan-1
Mar 9, 2024
7188981
Added Lutan 1 in SConscript and CMakeLists.txt
Mar 12, 2024
314ce00
Merge branch 'lutan-1' of https://github.com/bjmarfito/isce2 into lut…
Mar 12, 2024
bb6502b
Fixed Lutan-1 name
Mar 12, 2024
c35de5a
Bug fixes for Lutan-1 reader
Mar 12, 2024
4b4517b
Made major changes to Lutan-1 reader
Mar 13, 2024
fc162c6
Made major changes to Lutan-1 reader
Mar 13, 2024
d09c2ff
Code changes
Mar 16, 2024
cf33386
Changes to L1 code
Mar 18, 2024
df8ceac
Minor changes
Mar 21, 2024
c673115
Changes to LT1 code
Apr 3, 2024
3e5896a
Bug fixes
Apr 6, 2024
081ff3e
Merge branch 'isce-framework:main' into lutan-1
bjmarfito Apr 6, 2024
07f2b1d
Changes to the code
Apr 6, 2024
16bc0ef
Added 128k on the Fortran code
Apr 6, 2024
5dc8280
Added 128k on the Fortran code
Apr 6, 2024
9e71a9c
Added 128k on the Fortran code
Apr 6, 2024
50e5a54
Added 128k
Apr 6, 2024
3a860e5
Added the ability to ingest annotation file orbit info
Apr 9, 2024
77c8116
Bug fix
Apr 9, 2024
1a3a8b7
Added warning for using orbit info from annotation file
Apr 10, 2024
b271049
Merge branch 'isce-framework:main' into lutan-1
bjmarfito Apr 18, 2024
6b5df4e
Added frame stitching codes
May 6, 2024
908ed14
Merge branch 'isce-framework:main' into lutan-1
bjmarfito May 24, 2024
759adc5
Removed frame stitching codes
May 31, 2024
f5865b5
Added Lutan-1 examples
May 31, 2024
2caca3c
Added Lutan-1 examples
May 31, 2024
5dd26b7
Added Lutan-1 examples
May 31, 2024
ae8facf
Changes on the code
May 31, 2024
83879e9
Update examples/input_files/reference_LUTAN1.xml
bjmarfito Jun 8, 2024
4c88710
Update examples/input_files/reference_LUTAN1.xml
bjmarfito Jun 8, 2024
53e775b
Update README.md
bjmarfito Jun 8, 2024
d428e6d
Update Lutan1.py
bjmarfito Jun 8, 2024
02bbc5c
Update README.md
bjmarfito Jun 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changes to L1 code
  • Loading branch information
#MARFITO BRYAN JIMENEZ# committed Mar 18, 2024
commit cf33386a67c7741a6f34ece77406e458f641ca77
14 changes: 10 additions & 4 deletions components/isceobj/Sensor/Lutan1.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ def extractOrbit(self):
if (timestamp >= tstart) and (timestamp <= tend):
pos = []
vel = []

for tag in ['VX', 'VY', 'VZ']:
vel.append(float(child.find(tag).text))

Expand Down Expand Up @@ -288,12 +287,19 @@ def extractDoppler(self):
'''
Extract doppler information from image metadata file
'''
dop = self._xml_root.find('processing/doppler/dopplerCentroid/dopplerEstimate/combinedDoppler/coefficient').text
dop = float(dop)
#midwidth = self.frame.getNumberOfSamples() / 2.0
dop = [0, 0, 0]
for x in range(1,4):
dopName = 'processing/doppler/dopplerCentroid/dopplerEstimate/combinedDoppler/coefficient[{0}]'.format(x)
dopIndex = x-1
dopTemp = self._xml_root.find(dopName).text
dop[dopIndex] = float(dopTemp)
#dop = self._xml_root.find("processing/doppler/dopplerCentroid/dopplerEstimate/combinedDoppler/coefficient").text
#dop = float(dop)

####For insarApp
quadratic = {}
quadratic['a'] = dop / self.frame.getInstrument().getPulseRepetitionFrequency()
quadratic['a'] = dop[0] / self.frame.getInstrument().getPulseRepetitionFrequency()
quadratic['b'] = 0.
quadratic['c'] = 0.

Expand Down
2 changes: 1 addition & 1 deletion components/isceobj/Sensor/Sentinel1.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def extractDoppler(self):


###Actual Doppler Polynomial for accurate processing
###Will be used in roiApp
###Will be used in stripmapApp
pix = np.linspace(0, self.frame.getNumberOfSamples(), num=dpoly._order+2)
rngs = self.frame.startingRange + pix * self.frame.getInstrument().getRangePixelSize()
evals = dpoly(rngs)
Expand Down
3 changes: 1 addition & 2 deletions components/isceobj/StripmapProc/runTopo.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,9 @@ def runTopo(self):
# topo.incFilename = os.path.join(info.outdir, 'inc.rdr')
# topo.maskFilename = os.path.join(info.outdir, 'mask.rdr')


print(info._dopplerVsPixel)
####Doppler adjustment
dop = [x/1.0 for x in info._dopplerVsPixel]

doppler = Poly2D()
doppler.setWidth(topo.width // topo.numberRangeLooks)
doppler.setLength(topo.length // topo.numberAzimuthLooks)
Expand Down