roi_pac install

本文提供了两种ROI_PAC的安装方法。首先,安装基础环境,包括相关依赖库和软件。接着,详细步骤包括:安装fftw,配置并安装ROI_PAC,下载处理脚本,修改源代码并编译,安装roiview,以及解决可能出现的问题。第二种方法是按照官方指南进行本地安装。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Two way to intall roi_pac

0. install basic environment

apt-get update && apt-get dist-upgrade

apt-get install build-essential gcc g++ gfortran make perl subversion libhdf4-dev python-dev libgdal-dev gdal-bin libc6 libgcc libstdc++6 libxml2-dev libxslt1-dev idle python-lxml gawk

check every folder

better to install Doris



1. follows http://www.linuxidc.com/Linux/2011-10/44952.htm

(1) install fftw

cd fftw-3.3

./configure --enable-float

make

make install

It installed to the default location /usr/local/lib  and /usr/local/include

you can add export below to .bashrc, the path should be set to the folder where libfftw2f.a is for LIB_DIR and fftw3.h for INC_DIR

export FFTW_LIB_DIR=/usr/local/lib

export FFTW_INC_DIR=/usr/local/include


(2) install roi_pac

cd ROI_PAC_3_0_1

cd ROI_PAC

./configure

make

make install

cp DOC/SAR_CONFIG ./     copy SAR_CONFIG in DOC to ROI_PAC

gedit SAR_CONFIG

then edit SAR_CONFIG, added INT_BIN, INT_SCR, PATH to it.

It is my SAR_CONFIG showing below.

export ROI_PAC="/usr/local"
export INT_BIN="$ROI_PAC/bin"
export INT_SCR="$ROI_PAC/share/roi_pac"

export MAI_SCR="/usr/local/soft/ROI_PAC_3_0_1/ROI_PAC/MAI_SCR"
export ROI_MAI="/usr/local/soft/ROI_PAC_3_0_1/ROI_PAC/roi_mai"

export FFTW_LIB="/usr/local/lib"

export MY_BIN="/usr/local/soft/ALOS_preproc/bin/x86_64"

export PATH=$PATH:$INT_BIN:$INT_SCR:$FFTW_LIB:$MY_BIN:$MAI_SCR:$ROI_MAI


add

source /usr/local/soft/ROI_PAC_3_0_1/ROI_PAC/SAR_CONFIG

to the end of .bashrc



(3) download make_raw_alos.pl and ALOS_preproc.tar.gz fromROI_PAC Wiki ALOS PALSAR page

transform dos format make_raw_alos.pl to unix format using

dos2unix ***(filename)

make it exacutable

chmod a+x make_raw_alos.pl

the copy the .pl to /usr/local/share/roi_pac or where your INT_SCR is.

then go into ALOS_preproc folder

cd ALOS_preproc

make

finally add MY_BIN and PATH to your SAR_CONFIG

export MY_BIN="/usr/local/soft/ALOS_preproc/bin/x86_64"
<pre name="code" class="plain">export PATH=$PATH:$INT_BIN:$INT_SCR:$FFTW_LIB:$MY_BIN:$MAI_SCR:$ROI_MAI

 

(4)  modified add_rmgAmpPhs.c in /ROI_PAC_3_0_1/ROI_PAC/fip

cd /ROI_PAC/fip

gedit add_rmpAmpPhs.c

add #include <stdlib.h> to the third line

save

gcc -o add_rmgAmpPhs add_rmgAmpPhs.c

chmod a+x add_rmgAmpPhs

sudo mv add_rmgAmpPhs /usr/local/bin

(5) install roiview

search roiview in sourceforge.net and download RoiView-0.75_src_full.tar.gz

http://sourceforge.net/projects/roiview/files/?source=navbar

the bugs are already fixed and can be found in README.txt

##################
#     BUGS       #
##################
1. A known issue is the high memory usage. That's part of the matplotlib module problems.
   for a low memory machines it is recommended to use -o option without -s 
   (this will produce the image with now viewing option) or reduce the file size.
2. ERROR: "Sorry, Can't creat image. Colorbar instance has no attribute '__getitem__'.
   Changes in matplotlib colorbar function cause this error. Fix:
   With the source package, go to the code where roiview.py is and run:
   sed -i "s/colorbar\[0\]/colorbar/g" *.py
   sed -i "s/colorbar\[1\]/colorbar\.ax/g" *.py
3. When using ROI_PAC output files: "Sorry, Can't create image"
   This is a known problem of the roi-pac headers. 
   The number of lines should be adjusted to the correct number of lines in the file.
   You can check it by using the following formula:
   [file_size_in_bytes] = width X length X 8
   Usually, the length should be decreased by 1.

(6) install MAI package

Noa Bechor and Howard Zebker package: http://chandler.mit.edu/~nbechor/code.html

copy acpatch.F in roi_deskew_distribute to ROI_PAC/roi

make clean

make

cp roi $INT_BIN/.


in /INT_SCR_deskew_distribute folder

dos2unix *.pl

chmod a+x *.pl

cp *.pl $INT_SCR/.


in /ROI_PAC folder

mkdir roi_mai

cp -rf roi/* roi_mai/.

go into roi/ and press Ctrl+H to show the folder .deps/, then copy the folder to roi_mai/


cd roi_mai

Edit the Makefile to change the end of the relevant paths (saysrcdir and VPATH) from /roi to /roi_mai

"abs_builddir ="

"abs_srcdir ="

"subdir = roi"  not sure


copy the files in roi_mai_distribute/ into roi_mai

make

cp roi ./roi_mai


in /ROI_PAC folder

mkdir MAI_SCR

copy the files in MAI_SCR_distribute/ into it

change the name a.out, get_time_new and translate_new to diffigram, get_time and translate

add path in SAR_CONFIG

export MAI_SCR="/usr/local/soft/ROI_PAC_3_0_1/ROI_PAC/MAI_SCR"
export ROI_MAI="/usr/local/soft/ROI_PAC_3_0_1/ROI_PAC/roi_mai"
<pre name="code" class="plain">export PATH=$PATH:$INT_BIN:$INT_SCR:$FFTW_LIB:$MY_BIN:$MAI_SCR:$ROI_MAI

 

you may encounter an error when using it

shared libraries: libg2c.so.0

you can find solution in

http://blog.youkuaiyun.com/wanion911/article/details/50466899

the file *.f can be compiled by

gfortran -ffree-form diffigram.f

the output is a.out

=======================================

to be continue...........

=======================================

Maybe it's better to install the roi_pac to local folder ROI_PAC

2. Second approach to install is to do as the official guide. It install to the local

reference:

http://www.verydemo.com/demo_c137_i36582.html

I follow the guide to do test.

NOTICE: modify the multitest.sh in /ROR_PAC/contrib

from "SAR_ODR_DIR="$testrun_dir"/ERS/Delft" to "SAR_ODR_DIR="$testrun_dir"/ERS1/Delft"

or you may not find the orbit data when you run multitest.sh

# go to download directory
admins-MacBook-Pro-7:~ insar$ cd Downloads/

# unpack ROI_pac source code
admins-MacBook-Pro-7:Downloads insar$ tar xvf roi_pac_3_1beta.tgz 
x ROI_PAC_3_1beta/
x ROI_PAC_3_1beta/.DS_Store
x ROI_PAC_3_1beta/AAREADME
x ROI_PAC_3_1beta/Delft/
x ROI_PAC_3_1beta/DGX_MDX/
x ROI_PAC_3_1beta/FFTW/
x ROI_PAC_3_1beta/ROI_PAC/
x ROI_PAC_3_1beta/ROI_PAC/AAREADME_BUILD_ROIPAC
…

# go to ROI_pac directory
admins-MacBook-Pro-7:Downloads insar$ cd ROI_PAC_3_1beta/
admins-MacBook-Pro-7:ROI_PAC_3_1beta insar$ ls
AAREADME	DGX_MDX		Delft		FFTW		ROI_PAC
admins-MacBook-Pro-7:ROI_PAC_3_1beta insar$ cd ROI_PAC/
admins-MacBook-Pro-7:ROI_PAC insar$ ls
AAREADME_BUILD_ROIPAC	README			intsim
AUTHORS			TESTING			inverse3d
COPYING			aclocal.m4		jers_codes
ChangeLog		autofocus		log1
DOC			autom4te.cache		m4
INSTALL			baseline		match
INT_SCR			combine			missing
LIB			config.h.in		mkinstalldirs
Makefile.am		configure		rect
Makefile.am.common	configure.ac		resamp_roi
Makefile.in		contrib			roi
Math			depcomp			sch_to_dem
NEWS			fip			simulation
OUR_SCR			icu			unwrap
PROC_FILES		install-sh		util

# build FFTW libraries
admins-MacBook-Pro-7:ROI_PAC insar$ ./contrib/install-fftw.sh 
Doing:  curl -O ftp://ftp.fftw.org/pub/fftw/fftw-3.2.2.tar.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 3413k  100 3413k    0     0   374k      0  0:00:09  0:00:09 --:--:--  417k
Doing:  tar xzf /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetDist/fftw-3.2.2.tar.gz
Doing:  configure --enable-float --prefix=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426
        make install
          (This may take a few minutes.)
  Looks like build was successful.

  To setup your environment for multibuild.sh

    export FFTW_LIB_DIR=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/lib
    export FFTW_INC_DIR=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/include

  or

    setenv FFTW_LIB_DIR /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/lib
    setenv FFTW_INC_DIR /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/include

# set environment variables for locations of built FFTW libraries and include files
# should also add to "SAR_CONFIG" file
admins-MacBook-Pro-7:ROI_PAC insar$ export FFTW_LIB_DIR=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/lib
admins-MacBook-Pro-7:ROI_PAC insar$ export FFTW_INC_DIR=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/include

# build ROI_pac executables
admins-MacBook-Pro-7:ROI_PAC insar$ ./contrib/multibuild.sh 
Will configure using /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/configure
Doing builds in multibuild-110808-1443
common_options are >LDFLAGS=-L/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/lib#CPPFLAGS=-I/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/NetInst/fftw-110808-1426/include<
installation directory is /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs
 
DON'T PANIC!
  Failed builds are expected for compilers you do not have installed.
Starting >defaults< build with options >-verbose<
   Build >defaults< succeeded.
Starting >ifort< build with options >FC=ifort#FCFLAGS=-O2<
   Build >ifort< failed.     See multibuild-110808-1443/ifort-build-log
Starting >g95< build with options >FC=g95#FCFLAGS=-O2 -i4<
   Build >g95< failed.     See multibuild-110808-1443/g95-build-log
Starting >pgf95< build with options >FC=pgf95#FCFLAGS=-O2<
   Build >pgf95< failed.     See multibuild-110808-1443/pgf95-build-log
Starting >gfortran< build with options >FC=gfortran#FCFLAGS=-O2<
   Build >gfortran< succeeded.
Starting >f90< build with options >FC=f90#FCFLAGS=-O2<
   Build >f90< failed.     See multibuild-110808-1443/f90-build-log
Starting >f90nc< build with options >FC=f90#FCFLAGS=-O2 -ftrap=%none<
   Build >f90nc< failed.     See multibuild-110808-1443/f90nc-build-log
Starting >f90cc< build with options >FC=f90#FCFLAGS=-O2#CC=cc<
   Build >f90cc< failed.     See multibuild-110808-1443/f90cc-build-log
Starting >xlf< build with options >FC=xlf#FCFLAGS=-O2<
   Build >xlf< failed.     See multibuild-110808-1443/xlf-build-log
Starting >ifort-g< build with options >FC=ifort#FCFLAGS=-g<
   Build >ifort-g< failed.     See multibuild-110808-1443/ifort-g-build-log
Starting >g95-g< build with options >FC=g95#FCFLAGS=-g -i4<
   Build >g95-g< failed.     See multibuild-110808-1443/g95-g-build-log
Starting >pgf95-g< build with options >FC=pgf95#FCFLAGS=-g<
   Build >pgf95-g< failed.     See multibuild-110808-1443/pgf95-g-build-log
Starting >gfortran-g< build with options >FC=gfortran#FCFLAGS=-g<
   Build >gfortran-g< succeeded.
Starting >f90-g< build with options >FC=f90#FCFLAGS=-g<
   Build >f90-g< failed.     See multibuild-110808-1443/f90-g-build-log
Starting >xlf-g< build with options >FC=xlf#FCFLAGS=-g<
   Build >xlf-g< failed.     See multibuild-110808-1443/xlf-g-build-log
Starting >f90cc-g< build with options >FC=f90#FCFLAGS=-g#CC=cc#CFLAGS=-g<
   Build >f90cc-g< failed.     See multibuild-110808-1443/f90cc-g-build-log
Starting >CCFFT< build with options >FCFLAGS=-DHAVE_CCFFT#LIBS=-lscs#--without-fftw<
   Build >CCFFT< failed.     See multibuild-110808-1443/CCFFT-build-log
Starting >CFFT1D< build with options >FCFLAGS=-O2 -DHAVE_CFFT1D#LIBS=-lcomplib.sgimath#--without-fftw#CC=cc#CFLAGS=-O2<
   Build >CFFT1D< failed.     See multibuild-110808-1443/CFFT1D-build-log
Starting >CFFTF< build with options >FCFLAGS=-fast -xvector=no -DHAVE_CFFTF#LIBS=-lsunperf#--without-fftw#CC=cc#CFLAGS=-fast<
   Build >CFFTF< failed.     See multibuild-110808-1443/CFFTF-build-log
Starting >C1DFFT< build with options >FCFLAGS=-DHAVE_C1DFFT#LIBS=-lveclib#--without-fftw<
   Build >C1DFFT< failed.     See multibuild-110808-1443/C1DFFT-build-log
Starting >gfortran64< build with options >FC=gfortran#FCFLAGS=-O2 -m64#CC=cc#CFLAGS=-O2 -m64<
   Build >gfortran64< succeeded.
Starting >gfortran64-g< build with options >FC=gfortran#FCFLAGS=-g -m64#CC=cc#CFLAGS=-g -m64<
   Build >gfortran64-g< succeeded.
Starting >f90cc64< build with options >FC=f90#FCFLAGS=-O2 -64#CC=cc#CFLAGS=-O2 -64<
   Build >f90cc64< failed.     See multibuild-110808-1443/f90cc64-build-log
Starting >f90cc64-g< build with options >FC=f90#FCFLAGS=-g -64#CC=cc#CFLAGS=-g -64<
   Build >f90cc64-g< failed.     See multibuild-110808-1443/f90cc64-g-build-log
 
Be patient waiting for some builds to succeed.
 
 
Fully completed build binaries are in:
/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/defaults/bin
/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran-g/bin
/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin
/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran64-g/bin
/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran64/bin
 
 Perl scripts (which are common to all sets of binaries) are in:
   /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/share/roi_pac
 
See README_ROI_BUILD for information on how to run
  contrib/multitest.sh
to do test runs using data from TEST_DIR.tar

# set environment variables for ROI_pac binaries and scripts
# also add to SAR_CONFIG!!!
admins-MacBook-Pro-7:ROI_PAC insar$ export INT_BIN=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin
admins-MacBook-Pro-7:ROI_PAC insar$ export INT_SCR=/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/share/roi_pac

# go back to download directory
admins-MacBook-Pro-7:ROI_PAC insar$ pwd
/Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC
admins-MacBook-Pro-7:ROI_PAC insar$ cd ../..
admins-MacBook-Pro-7:Downloads insar$ ls
About Downloads.pdf			fftw-3.2.2.tar.gz
ENV1_2_084_2961_41721.baq		gcc-snwleo-intel-bin.tar.gz
ENV1_2_084_2961_42723.baq		gfortran-snwleo-intel-bin.tar.gz
Envisat					h5py-1.3.1
InSARPrinciplesTheory_UNAVCO_11.pdf	h5py-1.3.1.tar.gz
MDX					installation-steps (Autosaved).txt
MacPorts-2.0.0-10.6-SnowLeopard.dmg	installation-steps.txt
ROI_PAC_3_0_1				netcdf-4.1.3
ROI_PAC_3_0_1.tgz			netcdf-4.1.3.tar.gz
ROI_PAC_3_1beta				numpy-1.6.1
SAR_CONFIG-gfortran.txt			numpy-1.6.1.tar.gz
SAR_CONFIG-gfortran_v3_1.txt		roi_pac_3_1beta.tgz
TEST_DIR				roi_pac_testdir.tar.gz
fftw-3.2.2				rp_test_download.html

################ ready for testing ############
# source the SAR_CONFIG
admins-MacBook-Pro-7:Downloads insar$ source SAR_CONFIG-gfortran_v3_1.txt

# unpack test data
admins-MacBook-Pro-7:Downloads insar$ tar zxvf roi_pac_testdir.tar.gz
x ./TEST_DIR/
x ./TEST_DIR/930110/
x ./TEST_DIR/930110/IMAGERY1993011018252739T1Of3
x ./TEST_DIR/930110/SARLEADER1993011018252739T1Of1
x ./TEST_DIR/930110/VDF1993011018252739T1
x ./TEST_DIR/950523/
x ./TEST_DIR/950523/IMAGERY1995052318253409T1Of3
x ./TEST_DIR/950523/SARLEADER1995052318253409T1Of1
x ./TEST_DIR/950523/VDF1995052318253409T1
x ./TEST_DIR/AAREADME
x ./TEST_DIR/DEM/
x ./TEST_DIR/DEM/SoCal.dem
x ./TEST_DIR/DEM/SoCal.dem.rsc
x ./TEST_DIR/DEM/SoCal.dem.org
x ./TEST_DIR/DEM/SoCal.dem.hdr
x ./TEST_DIR/DEM/SoCal.dem.pc_byte_order
x ./TEST_DIR/DEM/SoCal.dem.pc_byte_order.hdr
x ./TEST_DIR/DEM/SoCal.dem.nonpc_byte_order
x ./TEST_DIR/Makefile
x ./TEST_DIR/PRC/
x ./TEST_DIR/PRC/ERS1/
x ./TEST_DIR/PRC/ERS1/PRC_930109_07776_rev2.Z
x ./TEST_DIR/PRC/ERS1/PRC_950521_20115_rev2.Z
x ./TEST_DIR/PRC/ERS1/arclist
x ./TEST_DIR/int.proc
x ./TEST_DIR/roi.proc

# go into test directory
admins-MacBook-Pro-7:Downloads insar$ cd TEST_DIR/
admins-MacBook-Pro-7:TEST_DIR insar$ ls
930110		AAREADME	Makefile	int.proc
950523		DEM		PRC		roi.proc

# go to 1993 image directory
admins-MacBook-Pro-7:TEST_DIR insar$ cd 930110/
admins-MacBook-Pro-7:930110 insar$ ls
IMAGERY1993011018252739T1Of3	SARLEADER1993011018252739T1Of1	VDF1993011018252739T1

##### make raw data from ERS data product
# get usage
admins-MacBook-Pro-7:930110 insar$ make_raw.pl

Usage: make_raw.pl orbit_type leader_file date [facility] [reference_counter] 

facility: processing facility

reference_counter: default is read from imagery file

Function: Creates I<date>.raw and I<date>.raw.rsc from imagery files


*** Last Update Oct 06, 1999 
*** For more info see http://roipac.org

*** This software is part of the ROI_PAC suite.  
*** Licensed software, not for general distribution. 

# run make_raw
admins-MacBook-Pro-7:930110 insar$ make_raw.pl PRC SARLEADER1993011018252739T1Of1 930110
+make_raw.pl Checking I/O
Creating 930110.raw
Creating 930110.raw.rsc
+make_raw.pl General definitions
+make_raw.pl Getting facility name
+make_raw.pl Finding reference counter, pri and prf
counter read: 900
swst offset read: 204
+make_raw.pl Reference counter = 900
+make_raw.pl Checking line number
+make_raw.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/new_parse 12060 200 4 1 IMAGERY1993011018252739T1Of3 tmp_IMAGERY.raw

12000
+make_raw.pl Reading the leader file
+make_raw.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/leader2rsc SARLEADER1993011018252739T1Of1 /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/share/roi_pac/format_leaderfile_CRDC-SARDPF tmp_IMAGERY.raw.rsc
+make_raw.pl Reading the imagery file
+make_raw.pl Setting the starting range
+make_raw.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/delay_shift tmp_IMAGERY.raw tmp_IMAGERY.new shift.out 204 900 12060 412 11636 0 0
shifting line 0  
shifting line 10000  
+make_raw.pl Writing the imagery resource file
+make_raw.pl Reading state vectors in SARLEADER's header, Building hdr_data_points_930110 file
+make_raw.pl Using Orbit Information
+make_raw.pl Doppler Computation
+make_raw.pl Raw data ready for processing

admins-MacBook-Pro-7:930110 insar$ ls
930110.raw			VDF1993011018252739T1		log1
930110.raw.rsc			dop.mod				shift.out
930110_parse_line.out		dop.out				shift.out.rsc
IMAGERY1993011018252739T1Of3	dop.unw				shift.out.rsc.hst
RscDocDir			hdr_data_points_930110.rsc	tmp_IMAGERY.raw.rsc.hst
SARLEADER1993011018252739T1Of1	log				tmp_poly.rsc.hst

# go to 1995 image directory
admins-MacBook-Pro-7:930110 insar$ cd ../950523/

# run make_raw on 1995 scene
admins-MacBook-Pro-7:950523 insar$ make_raw.pl PRC SARLEADER1995052318253409T1Of1 950523
+make_raw.pl Checking I/O
Creating 950523.raw
+make_raw.pl General definitions
+make_raw.pl Getting facility name
+make_raw.pl Finding reference counter, pri and prf
counter read: 900
swst offset read: 204
+make_raw.pl Reference counter = 900
+make_raw.pl Checking line number
+make_raw.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/new_parse 12060 200 4 1 IMAGERY1995052318253409T1Of3 tmp_IMAGERY.raw

12000
+make_raw.pl Reading the leader file
+make_raw.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/leader2rsc SARLEADER1995052318253409T1Of1 /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/share/roi_pac/format_leaderfile_CRDC-SARDPF tmp_IMAGERY.raw.rsc
+make_raw.pl Reading the imagery file
+make_raw.pl Setting the starting range
+make_raw.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/delay_shift tmp_IMAGERY.raw tmp_IMAGERY.new shift.out 204 900 12060 412 11636 0 0
shifting line 0  
shifting line 10000  
+make_raw.pl Writing the imagery resource file
+make_raw.pl Reading state vectors in SARLEADER's header, Building hdr_data_points_950523 file
+make_raw.pl Using Orbit Information
+make_raw.pl Doppler Computation
+make_raw.pl Raw data ready for processing

admins-MacBook-Pro-7:950523 insar$ ls
950523.raw			VDF1995052318253409T1		log1
950523.raw.rsc			dop.mod				shift.out
950523_parse_line.out		dop.out				shift.out.rsc
IMAGERY1995052318253409T1Of3	dop.unw				shift.out.rsc.hst
RscDocDir			hdr_data_points_950523.rsc	tmp_IMAGERY.raw.rsc.hst
SARLEADER1995052318253409T1Of1	log				tmp_poly.rsc.hst


# go back to main directory
admins-MacBook-Pro-7:950523 insar$ cd ..
admins-MacBook-Pro-7:TEST_DIR insar$ ls
930110		AAREADME	Makefile	int.proc
950523		DEM		PRC		roi.proc

### edit the int.proc file to have path to this DEM directory!
# like this:
# DEM=/Users/insar/Downloads/TEST_DIR/DEM/SoCal.dem

### run processing with process_2pass.pl script
admins-MacBook-Pro-7:TEST_DIR insar$ process_2pass.pl int.proc
+process_2pass.pl Read the inputfile
+process_2pass.pl Define Variables
+process_2pass.pl Go from raw to slc to int and cor (also flattens with orbits)
+raw2ampintcor.pl Check Doppler values
+dopav.pl Checking I/O
Creating /Users/insar/Downloads/TEST_DIR/930110/roi.dop.rsc
Creating /Users/insar/Downloads/TEST_DIR/950523/roi.dop.rsc
+dopav.pl Reading the imagery files.raw.rsc
+dopav.pl Creating the files roi.dop.rsc
+dopav.pl just before SL_AZIMUT_RESOL
+dopav.pl just after SL_AZIMUT_RESOL
+dopav.pl just before SL_AZIMUT_RESOL
+dopav.pl just after SL_AZIMUT_RESOL
+raw2ampintcor.pl Make ROI Input Files
+roi_prep.pl Read the inputfile
+roi_prep.pl Checking I/O
Creating 930110_roi.in
Creating 930110.slc.rsc
+roi_prep.pl setting roi default
+roi_prep.pl Reading resource file: 930110.raw.rsc
Keyword RANGE_OFFSET doesn't exist in 930110.raw.rsc, returning 0
+roi_prep.pl Computing parameters
+roi_prep.pl chirp length in samples 704
+roi_prep.pl Azimuth patch length 4096
+roi_prep.pl Synthetic aperture length in samples 1101
+roi_prep.pl Writing resource file: 930110.slc.rsc
+roi_prep.pl Writing roi input file: 930110_roi.in
+roi_prep.pl Read the inputfile
+roi_prep.pl Checking I/O
Creating 950523_roi.in
Creating 950523.slc.rsc
+roi_prep.pl setting roi default
+roi_prep.pl Reading resource file: 950523.raw.rsc
Keyword RANGE_OFFSET doesn't exist in 950523.raw.rsc, returning 0
+roi_prep.pl Computing parameters
+roi_prep.pl chirp length in samples 704
+roi_prep.pl Azimuth patch length 4096
+roi_prep.pl Synthetic aperture length in samples 1101
+roi_prep.pl Writing resource file: 950523.slc.rsc
+roi_prep.pl Writing roi input file: 950523_roi.in
+raw2ampintcor.pl Make Baseline files
+baseline.pl Checking I/O
Creating 930110_950523_baseline.rsc
+baseline.pl Reading resource file: 930110.slc.rsc
+baseline.pl Reading resource file: 950523.slc.rsc
lookangle 16.573978269859
+baseline.pl Getting orbital parameters
+baseline.pl Calculating baseline
+baseline.pl Printing to file 930110_950523_baseline.rsc
+raw2ampintcor.pl Running ROI
Starting ROI 1
+roi.pl Checking I/O
Creating 930110.slc
+roi.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/roi 930110_roi.in > 930110_roi.out
+roi.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/share/roi_pac/length.pl 930110.slc
+look.pl Checking I/O
Creating 930110_16rlks.slc
Creating 930110_16rlks.slc.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
Starting ROI 2
+roi.pl Checking I/O
Creating 950523.slc
+roi.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/roi 950523_roi.in > 950523_roi.out
+roi.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/share/roi_pac/length.pl 950523.slc
+look.pl Checking I/O
Creating 950523_16rlks.slc
Creating 950523_16rlks.slc.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+raw2ampintcor.pl Get offsets
+make_offset.pl Checking I/O
Creating 930110-950523_ampcor.off
Creating 930110-950523_ampcor.off.rsc
+make_offset.pl Reading resource file: 930110_950523_baseline.rsc
+offset.pl Checking I/O
Creating 930110-950523_ampcor_gross.off
Creating 930110-950523_ampcor_gross.in
Creating 930110-950523_ampcor_gross.out
+offset.pl Reading resource file: 930110.slc.rsc
+offset.pl Reading resource file: 950523.slc.rsc
+offset.pl Writing resource file: 930110-950523_ampcor_gross.off.rsc
+offset.pl Writing input_file: 930110-950523_ampcor_gross.in
+offset.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/ampcor 930110-950523_ampcor_gross.in rds > 930110-950523_ampcor_gross.out
+make_offset.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/fitoff 930110-950523_ampcor_gross.off 930110-950523_cull_gross.off 1.5 0.5 10 > fitoff_ampcor_gross.out
+make_offset.pl 311 points left after culling

+make_offset.pl extracting affine transformation parameters from gross match 
+make_offset.pl Fine Matching and Culling
+offset.pl Checking I/O
Creating 930110-950523_ampcor.in
Creating 930110-950523_ampcor.out
+offset.pl Reading resource file: 930110.slc.rsc
+offset.pl Reading resource file: 950523.slc.rsc
+offset.pl Writing resource file: 930110-950523_ampcor.off.rsc
+offset.pl Writing input_file: 930110-950523_ampcor.in
+offset.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/ampcor 930110-950523_ampcor.in rds > 930110-950523_ampcor.out
+make_offset.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/fitoff 930110-950523_ampcor.off 930110-950523_cull.off 1.5 0.08 50 > fitoff_ampcor.out
+raw2ampintcor.pl Do the interferogram
+resamp.pl Checking I/O
Creating 930110-950523.int
Creating 930110-950523.int.rsc
Creating 930110-950523.amp
Creating 930110-950523.amp.rsc
+resamp.pl Reading resource files: 930110.slc.rsc and 950523.slc.rsc
+resamp.pl Computing new lengths
+resamp.pl Writing resource file: 930110-950523.int.rsc
+resamp.pl Writing resource file: 930110-950523.amp.rsc
+resamp.pl Writing resamp input file: 930110-950523_resamp.in
+raw2ampintcor.pl Flattening with orbits
+add_rmg.pl Checking I/O
Creating reference.hgt
Creating reference.hgt.rsc
+add_rmg.pl Adding back
+add_rmg.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/add_rmg junk.unw \
                              junk.unw \
                              reference.hgt \
                              5700   \
                              2593  \
                              -1   \
                              0
+diffnsim.pl Checking I/O
Creating flat_PRC_930110-950523.int
Creating flat_PRC_930110-950523.int.rsc
Creating ramp_PRC.unw
Creating ramp_PRC.unw.rsc
+diffnsim.pl Reading resource file: 930110-950523.int.rsc
+diffnsim.pl Reading resource file: reference.hgt.rsc
Keyword HEADING_DEG doesn't exist in reference.hgt.rsc, returning 0
Keyword RGE_REF1 doesn't exist in reference.hgt.rsc, returning 0
+diffnsim.pl Writing resource file: flat_PRC_930110-950523.int.rsc
+diffnsim.pl Running diffnsim
+diffnsim.pl no masking applied
+look.pl Checking I/O
Creating flat_PRC_930110-950523_4rlks.int
Creating flat_PRC_930110-950523_4rlks.int.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+look.pl Checking I/O
Creating ramp_PRC_4rlks.unw
Creating ramp_PRC_4rlks.unw.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+look.pl Checking I/O
Creating reference_4rlks.hgt
Creating reference_4rlks.hgt.rsc
+look.pl Wrote new rscfile
Keyword AZIMUTH_PIXEL_GROUND doesn't exist in reference.hgt.rsc, returning 0
+look.pl Using lookdown routine
+raw2ampintcor.pl Calculate Correlation File
+make_cor.pl Checking I/O
Creating 930110-950523.cor
Creating 930110-950523.cor.rsc
+make_cor.pl Reading resource file: flat_PRC_930110-950523.int.rsc
+make_cor.pl Writing resource file: 930110-950523.cor.rsc
+make_cor.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/cchz_wave flat_PRC_930110-950523.int 930110-950523.amp 930110-950523.cor 5700 5
#lines in the interferogram file: 2593
processing line: 2590+look.pl Checking I/O
Creating 930110-950523_4rlks.cor
Creating 930110-950523_4rlks.cor.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+look.pl Checking I/O
Creating 930110-950523_16rlks.cor
Creating 930110-950523_16rlks.cor.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+replace_mag.pl cpx2mag_phs flat_PRC_930110-950523_4rlks.int /dev/null phs  1425
line 600+replace_mag.pl rmg2mag_phs 930110-950523_4rlks.cor pwr /dev/null 1425
line 600+replace_mag.pl mag_phs2cpx pwr phs flat_PRC_930110-950523_4rlks.int 1425
line 600+process_2pass.pl Making the Simulation for baseline reestimation and 2 pass approach
+look.pl Checking I/O
look.pl already done
+dem2diff.pl Making the Simulation for baseline reestimation and 2 pass approach
+make_sim.pl Checking I/O
Creating /Users/insar/Downloads/TEST_DIR/SIM/SIM_4rlks.hgt.rsc
Creating /Users/insar/Downloads/TEST_DIR/SIM/SIM_4rlks.hgt
+make_sim.pl Reading resource file: 930110-950523.int.rsc
+make_sim.pl Building ORRM file
+make_sim.pl Reading resource file: /data1/par/ROI_PAC_DIST/TEST_DIR/DEM/SoCal.dem.rsc
Keyword DATUM doesn't exist in /Users/insar/Downloads/TEST_DIR/DEM/SoCal.dem.rsc, returning 0
+make_sim.pl Creating slope file
+gradient.pl Checking I/O
Creating /Users/insar/Downloads/TEST_DIR/DEM/SoCal.slp
Creating /Users/insar/Downloads/TEST_DIR/DEM/SoCal.slp.rsc
+gradient.pl Reading resource file: /Users/insar/Downloads/TEST_DIR/DEM/SoCal.dem.rsc
+gradient.pl Writing resource file: /Users/insar/Downloads/TEST_DIR/DEM/SoCal.slp.rsc
+gradient.pl Writing Gradient.in
+gradient.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/Gradient Gradient.in
+make_sim.pl Writing resource file: SIM_raw.hgt.rsc
+make_sim.pl Writing IntSim input_file: IntSim.in
+make_sim.pl IntSim IntSim.in > IntSim.out
+make_sim.pl Writing Aik_resample input_file: Aik_resample.in
+make_sim.pl Doing looked down height map
+look.pl Checking I/O
Creating SIM_16rlks.hgt
Creating SIM_16rlks.hgt.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+synth_offset.pl Checking I/O
Creating ampmag_cull.off
+synth_offset.pl Getting gross offset
+offset.pl Checking I/O
Creating ampmag_gross.off
Creating ampmag_gross.in
Creating ampmag_gross.out
+offset.pl Reading resource file: 930110-950523_4rlks.cor.rsc
+offset.pl Reading resource file: SIM_4rlks.hgt.rsc
+offset.pl Writing resource file: ampmag_gross.off.rsc
+offset.pl Writing input_file: ampmag_gross.in
+offset.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/ampcor ampmag_gross.in rds > ampmag_gross.out
+synth_offset.pl Culling gross offset
+synth_offset.pl Getting the fine offset
+offset.pl Checking I/O
Creating ampmag.off
Creating ampmag.in
Creating ampmag.out
+offset.pl Reading resource file: 930110-950523_4rlks.cor.rsc
+offset.pl Reading resource file: SIM_4rlks.hgt.rsc
+offset.pl Writing resource file: ampmag.off.rsc
+offset.pl Writing input_file: ampmag.in
+offset.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/ampcor ampmag.in rds > ampmag.out
+synth_offset.pl Culling points
646 points left after culling
+dem2diff.pl Morphing simulation and doing 2-pass
+synth2radar.pl Checking I/O
Creating 930110-950523_4rlks_SIM.aff
+synth2radar.pl Registering the height map to the radar
+rect.pl Believes input file is RMG format
+rect.pl Using  Bilinear to interpolate
+rect.pl Checking I/O
Creating radar_4rlks.hgt
+rect.pl Registering to the simulation
+rect.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/rect rect.in
+diffnsim.pl Checking I/O
Creating 930110-950523-sim_PRC_4rlks.int
Creating 930110-950523-sim_PRC_4rlks.int.rsc
Creating radar_PRC_4rlks.unw
Creating radar_PRC_4rlks.unw.rsc
+diffnsim.pl Reading resource file: 930110-950523.int.rsc
+diffnsim.pl Reading resource file: radar_4rlks.hgt.rsc
+diffnsim.pl Writing resource file: 930110-950523-sim_PRC_4rlks.int.rsc
+diffnsim.pl Running diffnsim
line 600+process_2pass.pl Making the deformation models for baseline reestimation
+process_2pass.pl Filtering, making the mask, unwrapping
+look.pl Checking I/O
look.pl already done
+look.pl Checking I/O
Creating 930110-950523_4rlks.amp
Creating 930110-950523_4rlks.amp.rsc
+look.pl Wrote new rscfile
+look.pl Using lookdown routine
+int2filtmaskunwrap.pl Filtering
+filter.pl Checking I/O
Creating filt_930110-950523-sim_PRC_4rlks.int
Creating filt_930110-950523-sim_PRC_4rlks.int.rsc
+filter.pl Filtering
line 600+filter.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/psfilt 930110-950523-sim_PRC_4rlks.int filt_930110-950523-sim_PRC_4rlks.int 1425 0.5
*** weighted power spectrum interferogram filter v1.0 clw 19-Feb-97 ***
#lines in the interferogram file: 648
line 600+int2filtmaskunwrap.pl Form unwrapping mask using phase covariance
+replace_mag.pl cpx2mag_phs filt_930110-950523-sim_PRC_4rlks.int /dev/null phs  1425
line 600+replace_mag.pl rmg2mag_phs 930110-950523_4rlks.cor pwr /dev/null 1425
line 600+replace_mag.pl mag_phs2cpx pwr phs filt_930110-950523-sim_PRC_4rlks.int 1425
line 600+make_mask.pl Checking I/O
Creating phase_var_PRC_4rlks.msk
Creating phase_var_PRC_4rlks.msk.rsc
+make_mask.pl Creating the Mask for Unwrapping
+make_mask.pl cpx2mag_phs  filt_930110-950523-sim_PRC_4rlks.int pwr phs 1425
line 600+make_mask.pl phase_slope  filt_930110-950523-sim_PRC_4rlks.int phasegrd.cpx 1425 5 0
*** phase gradient in range and azimuth with threshold v1.0 clw 4-nov-96 ***
#lines in the interferogram file: 648
processing window, xmin,xmax,ymin,ymax:     0   1424      0    647
processing window size, width, height:   1425    648
window size size:     5
phase gradient correlation threshold:   0.0000
# correlation weights (range,azimuth):        5      5
indices,radius,weight:  -2.50  -2.50      3.536      0.135
indices,radius,weight:  -2.50  -1.50      2.915      0.257
indices,radius,weight:  -2.50  -0.50      2.550      0.353
indices,radius,weight:  -2.50   0.50      2.550      0.353
indices,radius,weight:  -2.50   1.50      2.915      0.257
indices,radius,weight:  -1.50  -2.50      2.915      0.257
indices,radius,weight:  -1.50  -1.50      2.121      0.487
indices,radius,weight:  -1.50  -0.50      1.581      0.670
indices,radius,weight:  -1.50   0.50      1.581      0.670
indices,radius,weight:  -1.50   1.50      2.121      0.487
indices,radius,weight:  -0.50  -2.50      2.550      0.353
indices,radius,weight:  -0.50  -1.50      1.581      0.670
indices,radius,weight:  -0.50  -0.50      0.707      0.923
indices,radius,weight:  -0.50   0.50      0.707      0.923
indices,radius,weight:  -0.50   1.50      1.581      0.670
indices,radius,weight:   0.50  -2.50      2.550      0.353
indices,radius,weight:   0.50  -1.50      1.581      0.670
indices,radius,weight:   0.50  -0.50      0.707      0.923
indices,radius,weight:   0.50   0.50      0.707      0.923
indices,radius,weight:   0.50   1.50      1.581      0.670
indices,radius,weight:   1.50  -2.50      2.915      0.257
indices,radius,weight:   1.50  -1.50      2.121      0.487
indices,radius,weight:   1.50  -0.50      1.581      0.670
indices,radius,weight:   1.50   0.50      1.581      0.670
indices,radius,weight:   1.50   1.50      2.121      0.487

sum of unnormalized weights:     13.578

normalized window coefficients:
indicies,weight:    0    0      0.010
indicies,weight:    0    1      0.019
indicies,weight:    0    2      0.026
indicies,weight:    0    3      0.026
indicies,weight:    0    4      0.019
indicies,weight:    1    0      0.019
indicies,weight:    1    1      0.036
indicies,weight:    1    2      0.049
indicies,weight:    1    3      0.049
indicies,weight:    1    4      0.036
indicies,weight:    2    0      0.026
indicies,weight:    2    1      0.049
indicies,weight:    2    2      0.068
indicies,weight:    2    3      0.068
indicies,weight:    2    4      0.049
indicies,weight:    3    0      0.026
indicies,weight:    3    1      0.049
indicies,weight:    3    2      0.068
indicies,weight:    3    3      0.068
indicies,weight:    3    4      0.049
indicies,weight:    4    0      0.019
indicies,weight:    4    1      0.036
indicies,weight:    4    2      0.049
indicies,weight:    4    3      0.049
indicies,weight:    4    4      0.036
processing line: 640
output lines: 648
+make_mask.pl phase_mask  filt_930110-950523-sim_PRC_4rlks.int phasegrd.cpx sigma 1 1425 5 5
#lines in the interferogram file: 648
processing window, xmin,xmax,ymin,ymax:     0   1424      0    647
processing window size, width, height:   1425    648
# correlation weights (range,azimuth):        5      5
indices,radius,weight:     -2     -2      0.111
indices,radius,weight:     -2     -1      0.222
indices,radius,weight:     -2      0      0.333
indices,radius,weight:     -2      1      0.222
indices,radius,weight:     -2      2      0.111
indices,radius,weight:     -1     -2      0.222
indices,radius,weight:     -1     -1      0.444
indices,radius,weight:     -1      0      0.667
indices,radius,weight:     -1      1      0.444
indices,radius,weight:     -1      2      0.222
indices,radius,weight:      0     -2      0.333
indices,radius,weight:      0     -1      0.667
indices,radius,weight:      0      0      1.000
indices,radius,weight:      0      1      0.667
indices,radius,weight:      0      2      0.333
indices,radius,weight:      1     -2      0.222
indices,radius,weight:      1     -1      0.444
indices,radius,weight:      1      0      0.667
indices,radius,weight:      1      1      0.444
indices,radius,weight:      1      2      0.222
indices,radius,weight:      2     -2      0.111
indices,radius,weight:      2     -1      0.222
indices,radius,weight:      2      0      0.333
indices,radius,weight:      2      1      0.222
indices,radius,weight:      2      2      0.111

sum of unnormalized weights:      9.000
processing line: 640
output lines: 648
+make_mask.pl mag_phs2cpx  pwr sigma phase_var_PRC_4rlks.int 1425
line 600+make_mask.pl int_thr  phase_var_PRC_4rlks.int phase_var_PRC_4rlks_thresh.int 1425 5e-05
+make_mask.pl cpx2mag_phs  phase_var_PRC_4rlks_thresh.int /dev/null phase_var_PRC_4rlks_thresh 1425
line 600+make_mask.pl add_phs  phase_var_PRC_4rlks_thresh phs final_mask 1425 648 0 1
+make_mask.pl mag_phs2rmg  pwr final_mask phase_var_PRC_4rlks.msk 1425
line 600+int2filtmaskunwrap.pl Unwrapping
+new_cut.pl Checking I/O
Creating filt_930110-950523-sim_PRC_4rlks_cut.flg
Creating filt_930110-950523-sim_PRC_4rlks_cut.flg.rsc
+new_cut.pl Reading resource file: filt_930110-950523-sim_PRC_4rlks.int.rsc
+new_cut.pl Writing resource file: filt_930110-950523-sim_PRC_4rlks_cut.flg.rsc
+new_cut.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/residue filt_930110-950523-sim_PRC_4rlks.int filt_930110-950523-sim_PRC_4rlks_cut.flg 1425 0 1425 0 648
cannot open output flag file, creating new file: filt_930110-950523-sim_PRC_4rlks_cut.flg
insufficient #lines in the file, resetting length: 647
file has insufficient width, resetting width: 1424
initializing flag array...
processing line 600
number of positive residues: 8776
number of negative residues: 8777
total number of residues:    17553
fraction residues:            0.01901
writing flag array...
+new_cut.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/trees filt_930110-950523-sim_PRC_4rlks_cut.flg 1425 64 1 0 1425 0 648
*** connection trees (ARW) v2.0  8-aug-94 par/clw ***
#lines in the file: 648
insufficient #lines in the file, ymax: 647
+unwrap.pl Checking I/O
Creating filt_930110-950523-sim_PRC_4rlks_c10.flg
Creating filt_930110-950523-sim_PRC_4rlks_c10.flg.rsc
Creating filt_930110-950523-sim_PRC_4rlks_c10.unw
Creating filt_930110-950523-sim_PRC_4rlks_c10.unw.rsc
+unwrap.pl reading resource file: filt_930110-950523-sim_PRC_4rlks.int.rsc
+unwrap.pl doing the correlation mask
+unwrap.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/corr_flag phase_var_PRC_4rlks.msk filt_930110-950523-sim_PRC_4rlks_c10.flg 1425 0.1 1 0 1425 0 648
+unwrap.pl unwrapping
+unwrap.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/grass filt_930110-950523-sim_PRC_4rlks.int filt_930110-950523-sim_PRC_4rlks_c10.flg filt_930110-950523-sim_PRC_4rlks_c10.unw 1425 1 0 1425 0 648 712.5 324
# interferogram lines: 648
insufficient #lines in the file, ymax: 647
array width,height (x,y), starting line:      1425    648      0 
initial seed location (x,y):    712    324 
initializing phase array values...

reading flag file...
actual seed location (x,y): 712  324
ping-pong interation, list size 1000 116: 
total ping-pong interations 1035
fraction of the image unwrapped:  0.92204
writing output file...
output line: 600+process_2pass.pl Baseline Re-estimation
+add_rmg.pl Checking I/O
Creating low_cor_PRC_4rlks.msk
Creating low_cor_PRC_4rlks.msk.rsc
+add_rmg.pl Adding back
+add_rmg.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/add_rmg phase_var_PRC_4rlks.msk \
                              filt_930110-950523-sim_PRC_4rlks_c10.unw \
                              low_cor_PRC_4rlks.msk \
                              1425   \
                              648  \
                              0   \
                              1
+add_rmg.pl Checking I/O
Creating baseest_4rlks.msk
Creating baseest_4rlks.msk.rsc
+add_rmg.pl Adding back
+add_rmg.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/add_rmg low_cor_PRC_4rlks.msk \
                              radar_PRC_4rlks.unw \
                              baseest_4rlks.msk \
                              1425   \
                              648  \
                              0   \
                              1
+add_rmg.pl Checking I/O
Creating total_930110-950523_4rlks.unw
Creating total_930110-950523_4rlks.unw.rsc
+add_rmg.pl Adding back
+add_rmg.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/add_rmg filt_930110-950523-sim_PRC_4rlks_c10.unw \
                              radar_PRC_4rlks.unw \
                              total_930110-950523_4rlks.unw \
                              1425   \
                              648  \
                              1   \
                              1
+phase2base.pl Checking I/O
Creating phase2base.out
+phase2base.pl Reading resource file: 930110-950523_cull.off.rsc
+phase2base.pl Reading resource file: radar_4rlks.hgt.rsc
+phase2base.pl Reading resource file: pha4baseest.unw.rsc
+phase2base.pl Writing baseest input_file: phase2base.in with QUAD fit
+phase2base.pl write_baseline.pl 930110_950523_baseline.rsc SIM -21.976747856903547 5.26246646148610463E-005 4.27567829980748345E-011 -80.468966970788784 1.79813767956141829E-005 -2.23862481431585996E-011
+process_2pass.pl Use Bsim to re-remove topo from unwrapped pair
+process_2pass.pl re-doing 2-pass (based on old unwrapped file!)
+diffnsim.pl Checking I/O
Creating 930110-950523-sim_SIM_4rlks.int
Creating 930110-950523-sim_SIM_4rlks.int.rsc
Creating radar_SIM_4rlks.unw
Creating radar_SIM_4rlks.unw.rsc
+diffnsim.pl Reading resource file: 930110-950523.int.rsc
+diffnsim.pl Reading resource file: radar_4rlks.hgt.rsc
+diffnsim.pl Writing resource file: 930110-950523-sim_SIM_4rlks.int.rsc
+diffnsim.pl Running diffnsim
line 600+process_2pass.pl Create tobegeocoded=filt_930110-950523-sim_SIM_4rlks_c10.unw file
+add_rmg.pl Checking I/O
Creating filt_930110-950523-sim_SIM_4rlks_c10.unw
Creating filt_930110-950523-sim_SIM_4rlks_c10.unw.rsc
+add_rmg.pl Adding back
+add_rmg.pl /Users/insar/Downloads/ROI_PAC_3_1beta/ROI_PAC/multibuild-110808-1443/installs/gfortran/bin/add_rmg total_930110-950523_4rlks.unw \
                              radar_SIM_4rlks.unw \
                              filt_930110-950523-sim_SIM_4rlks_c10.unw \
                              1425   \
                              648  \
                              -1   \
                              1
+process_2pass.pl Geocoding
+radar2geo.pl Making mapping file
+make_geomap.pl Checking I/O
Creating /Users/insar/Downloads/TEST_DIR/GEO/geomap_4rlks.trans.rsc
Creating /Users/insar/Downloads/TEST_DIR/GEO/geomap_4rlks.trans
+make_geomap.pl Reading resource file: filt_930110-950523-sim_SIM_4rlks_c10.unw.rsc
+make_geomap.pl Building ORRM file
+make_geomap.pl Reading resource file: /Users/insar/Downloads/TEST_DIR/DEM/SoCal.dem.rsc
+make_geomap.pl Creating slope file
+gradient.pl Checking I/O
gradient.pl already done
+make_geomap.pl Writing IntSim input_file: IntSim.in
+make_geomap.pl IntSim IntSim.in > IntSim.out
+make_geomap.pl Writing resource file: geomap_4rlks.trans.rsc
+radar2geo.pl Geocoding filt_930110-950523-sim_SIM_4rlks_c10.unw
+geocode.pl Checking I/O
Creating geo_930110-950523.unw
Creating geo_930110-950523.unw.rsc
+geocode.pl Reading resource file: geomap_4rlks.trans.rsc
+geocode.pl Reading resource file: filt_930110-950523-sim_SIM_4rlks_c10.unw.rsc
+geocode.pl Writing resource file: geo_930110-950523.unw.rsc
+process_2pass.pl That's all folks








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值