| Environments | PYTHON :: EASI :: MODELER |
| Quick links | Description :: Parameters :: Parameter descriptions :: Details :: Examples :: Algorithm :: Acknowledgements :: Related |
| Back to top |
| Back to top |
insinfo(filref, mfile, tfile)
| Name | Type | Caption | Length | Value range |
|---|---|---|---|---|
| FILREF | str | Database reference file name | 0 - | |
| MFILE * | str | Input file name, folder, or text file | 1 - | |
| TFILE | str | Text file name | 0 - |
| Back to top |
FILREF
The name of the file to use as the reference data set. The file can be a data set that has been imported into PCIDSK (.pix) format by SARINGEST or the key-file name of any GDB-supported single-look complex (SLC) data set in its distribution format. Leave blank to output comparison of all MFILE files. Output will temporally order files then step through each as a FILREF for comparison to all files with a later date/time.MFILE
The name of a folder, data set, or text file that contains the dependent SLC data sets to process. For more information about using MFILE, including the requirements for a valid file, see Using an MFILE with a CATALYST Professional algorithm.TFILE
The name of the text file to which to write the interferometric parameters. The output file contains reference-sensor information followed by sensor and baseline information for each dependent file specified.| Back to top |
The critical-baseline distance is computed by using the midpoint of the reference image. The critical baseline represents the maximum allowable baseline distance (separation between antennae) for interferometric processing. The reported nominal Earth-centered, Earth-fixed (ECEF) satellite position is calculated at the midpoint of the reference image and represents the distance along the x, y, and z axis from the center of the Earth.
For each dependent image, the corresponding sensor information is extracted from the metadata for comparison. The time difference is calculated as the elapsed time of acquisition between the dependent and reference data. The percentage of image overlap is derived from the geocoding information contained in the reference and dependent files. The ambiguity height represents the change in elevation corresponding to one interferometric cycle.
The reference and dependent orbits are modeled from the state vectors to determine the baseline distances at the times associated with the scan lines of the first, middle, and last reference. The perpendicular baseline is positive when the incident angle of the reference file is greater than the incident angle of the dependent.
| Back to top |
Generate a report file by using a single reference file and a single dependent file.
from pci.insinfo import insinfo
filref = "Reference_File.pix"
mfile = "Dependent_Files.pix"
tfile = "Interferometric_Report_SinglePair.txt"
insinfo(filref, mfile, tfile)
Generate a report file by using the single reference file and the multiple dependent files listed in the text file.
from pci.insinfo import insinfo
filref = "Reference_File.pix"
mfile = "List_Of_Dependent_files.txt"
tfile = "Interferometric_Report_Multiple_Dependent.txt"
insinfo(filref, mfile, tfile)
Generate a report file by using the single reference file and the dependent PCIDSK files in the folder specified.
from pci.insinfo import insinfo
filref = "Reference_File.pix"
mfile = "Dependent_Directory\*.pix"
tfile = "Interferometric_Report_Dependent_Directory.txt"
insinfo(filref, mfile, tfile)
| Back to top |
The parallel
, perpendicular
and baseline
distances are defined by the satellite positions and represent the lengths of their respective vectors. The sign of the perpendicular baseline is positive when the incident angle of the reference data set is greater than the incident angle of the dependent data set.
| Back to top |
© PCI Geomatics Enterprises, Inc.®, 2026. All rights reserved.