├── .gitignore ├── InSAR Time Series Generation Using HYP3 Products.pdf ├── LICENSE ├── README.md ├── RTC Time Series Generation Using HYP3 Products.pdf ├── etc ├── prepbasxml_template.py ├── prepdataxml_template.py └── userfn_template.py └── src ├── download_products.py ├── fix_file_names.py ├── getUsernamePassword.py ├── makePNG.py ├── prepGIAnT.py ├── procS1StackGIANT.py ├── procS1StackRTC.py ├── sortByTime.py ├── time_series_utils.py └── unzipFiles.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/.gitignore -------------------------------------------------------------------------------- /InSAR Time Series Generation Using HYP3 Products.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/InSAR Time Series Generation Using HYP3 Products.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/README.md -------------------------------------------------------------------------------- /RTC Time Series Generation Using HYP3 Products.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/RTC Time Series Generation Using HYP3 Products.pdf -------------------------------------------------------------------------------- /etc/prepbasxml_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/etc/prepbasxml_template.py -------------------------------------------------------------------------------- /etc/prepdataxml_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/etc/prepdataxml_template.py -------------------------------------------------------------------------------- /etc/userfn_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/etc/userfn_template.py -------------------------------------------------------------------------------- /src/download_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/download_products.py -------------------------------------------------------------------------------- /src/fix_file_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/fix_file_names.py -------------------------------------------------------------------------------- /src/getUsernamePassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/getUsernamePassword.py -------------------------------------------------------------------------------- /src/makePNG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/makePNG.py -------------------------------------------------------------------------------- /src/prepGIAnT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/prepGIAnT.py -------------------------------------------------------------------------------- /src/procS1StackGIANT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/procS1StackGIANT.py -------------------------------------------------------------------------------- /src/procS1StackRTC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/procS1StackRTC.py -------------------------------------------------------------------------------- /src/sortByTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/sortByTime.py -------------------------------------------------------------------------------- /src/time_series_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/time_series_utils.py -------------------------------------------------------------------------------- /src/unzipFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asfadmin/hyp3-giant/HEAD/src/unzipFiles.py --------------------------------------------------------------------------------