This directory contains an example insarApp.xml input file to be used with the application insarApp.py. The insarApp.xml file is extensively documented with comments. Please read that for further information. The insarApp.xml file contains references to two files (or "catalogs" in ISCE parlance), master.xml and slave.xml, which contain further input data for insarApp.xml. The structure of the master.xml and slave.xml files are the same for any given sensor (only the specific image/meta data filenames will be different). The structure of these files, however, are different for the different sensors. Examples for each supported sensor are contained in this directory with names such as master_alos.xml. You can edit these files and change the name used in the insarApp.xml file (or else change the name of these master_SENSOR.xml and slave_SENSOR.xml files to master.xml and slave.xml to match the namse of the catalog files referred to in insarApp.xml). A catalog file is parsed as if its contents (omitting the inital tag and its closing tag) were directly inserted into the insarApp.xml file. For example, the following insarApp.xml file, insarApp.xml ------------ ALOS master_alos.xml slave_alos.xml with the following master_alos.xml and slave_alos.xml file, master_alos.xml ---------- //IMG-HH-ALPSRP056480670-H1.0__A //LED-ALPSRP056480670-H1.0__A 20070215.raw slave_alos.xml --------- //IMG-HH-ALPSRP049770670-H1.0__A //20061231/LED-ALPSRP049770670-H1.0__A 20061231.raw is equivalent to the following insarApp_AllInOne.xml file insarApp_AllInOne.xml --------------------- ALOS //IMG-HH-ALPSRP056480670-H1.0__A //LED-ALPSRP056480670-H1.0__A 20070215.raw //IMG-HH-ALPSRP049770670-H1.0__A //20061231/LED-ALPSRP049770670-H1.0__A 20061231.raw You are free to use the "all in one" style or the separate files as catalogs style. It makes no difference. =============================================================================== EXTRAINFORMATION NOT REQUIRED TO GET STARTED---for future reference, as needed, for clarification. Don't worry if this information doesn't make sense at this time: There are further options documented in the top level README.txt file for configuring most of the components in ISCE. As you become familiar with those other options, you will learn that there is a subtle difference in the structure of a "component configuration file", which is a stand-alone configuration file and a "catalog file" which is content to be inserted into a component configuration file. The difference between a catalog file and a component configuration file is in the one extra tag ("" in the above insarApp.xml file) that is an extra structure around the data that the example master_alos.xml and slave_alos.xml files found in this directory are lacking. The other difference is in the name of the files. A component configuration file must be named properly as explained in the top level README.txt file in order for the ISCE framework to find it. When named appropriately the component configuration files are found automatically. A catalog file is referred to explicitly in the input file and may have any name desired. The master_alos.xml and slave_alos.xml files here could be turned into component configuration files by adding one tag (with any name desired) at the top of the file and its required closing tag at the bottom of the file and by changing their names to master.xml and slave.xml. The difference would also be that the component configuration versions would be loaded automatically without needing to refer to them in the input file. As catalogs, however, they can be given any name as long as the insarApp.xml file uses that name in a catalog tag. If you were to have both catalog files and component configuration files, then both will be read when configuring the master and slave components. If there is conflicting information in the catalog file and the component configuration file, then, by the rules of priority discussed in the top level README.txt, the catalog referred to in the insarApp.xml file will win because it specifies both the application (insarApp) and the component (master or slave), whereas the component configuration file would only refer to the component (master or slave). ===============================================================================