Skip to content

Commit

Permalink
Merge pull request #166 from asolarte/main
Browse files Browse the repository at this point in the history
Add SAOCOM sensor
  • Loading branch information
hfattahi authored Jul 29, 2020
2 parents 120b09a + 9983be8 commit b13d06a
Show file tree
Hide file tree
Showing 11 changed files with 507 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ its InSAR aspect ISCE supports data from many space-borne satellites and one
air-borne platform. We continue to increase the number of sensors supported.
At this time the sensors that are supported are the following: ALOS, ALOS2,
COSMO_SKYMED, ENVISAT, ERS, KOMPSAT5, RADARSAT1, RADARSAT2, RISAT1, Sentinel1,
TERRASARX, and UAVSAR.
TERRASARX, UAVSAR and SAOCOM1A.

## Contents

Expand Down
2 changes: 1 addition & 1 deletion components/isceobj/InsarProc/Factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def createEstimateHeights(other, sensor):

# we turned runFormSLC into a facility
def createFormSLC(other, sensor):
if sensor.lower() in ["terrasarx","cosmo_skymed_slc","radarsat2",'tandemx', 'kompsat5','risat1_slc','sentinel1', 'alos2','ers_slc','alos_slc','envisat_slc', 'ers_envisat_slc']:
if sensor.lower() in ["terrasarx","cosmo_skymed_slc","radarsat2",'tandemx', 'kompsat5','risat1_slc','sentinel1', 'alos2','ers_slc','alos_slc','envisat_slc', 'ers_envisat_slc', 'saocom_slc']:
from .runFormSLCTSX import runFormSLC
elif sensor.lower() in ["uavsar_rpi"]:
from .runFormSLCisce import runFormSLC
Expand Down
3 changes: 2 additions & 1 deletion components/isceobj/IsceProc/runPreprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ def reformatscene(scenedict, pol, sensorname):
'ERS_ENVI': 'imagefile', #KK 2013-11-26 (ers in envi format)
'UAVSAR_RPI':'annotationfile',
'UAVSAR_STACK':'annotationfile',
'SENTINEL1A':'tiff'
'SENTINEL1A':'tiff',
'SAOCOM':'tiff'
}
try:
key = imageKey[sensorname.upper()]
Expand Down
1 change: 1 addition & 0 deletions components/isceobj/Sensor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ set(installfiles
UAVSAR_Polsar.py
UAVSAR_RPI.py
UAVSAR_Stack.py
SAOCOM_SLC.py
)

if(HDF5_FOUND)
Expand Down
Loading

0 comments on commit b13d06a

Please sign in to comment.