├── .DS_Store ├── .gitattributes ├── IntPyGMT.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── LICENSE ├── README.md ├── binder ├── apt.txt └── postBuild ├── demo_borderless_mercator_png ├── Herat_InSAR_stc.ipynb └── Herat_InSAR_stc.png ├── demo_borderless_mercator_pygmt ├── Hindu_Kush.ipynb ├── Hindu_Kush.png └── bin │ ├── HarvardCMT_normal_dropname.xy │ ├── HarvardCMT_ss_dropname.xy │ ├── HarvardCMT_thrust_dropname.xy │ ├── HimaTibetMap.gmt │ ├── blue.cpt │ ├── green.cpt │ ├── hin_slab2_dep_02.24.18_contours.in │ ├── pam_slab2_dep_02.26.18_contours.in │ └── red.cpt ├── demo_conical ├── bin │ ├── abyss.cpt │ ├── abyss_slab2.0 │ ├── bird_plates.xy │ ├── cas_slab2_dep_02.24.18_contours.in │ ├── cascadianormal_dropname.xy │ ├── cascadiastrikeslip_dropname.xy │ ├── cascadiasubduction_dropname.xy │ └── seabluelandgrey.cpt ├── cascadia.ipynb ├── cascadia.png └── gmt.history ├── demo_pygmt ├── Herat_InSAR_EWvel.ipynb ├── bin │ ├── EW_mskd_gdalmergefinal2.tif │ ├── HimaTibetMap.gmt │ ├── polar.cpt │ ├── polar_LOSdecomp │ └── seabluelandgrey.cpt └── frame_merge_map_EW.png ├── demo_time_series ├── 078D_05435_131313_run5.png ├── bin │ ├── 078D_05435_131313-poly.txt │ ├── 078D_05435_131313_run5.nc │ ├── HimaTibetMap.gmt │ ├── roma_InSAR │ └── seabluelandgrey.cpt ├── time_series.ipynb └── time_series_spam.png ├── dev ├── bin │ ├── EW_mskd_gdalmergefinal2.tif │ ├── gem_active_faults.gmt │ ├── polar.cpt │ ├── polar_LOSdecomp │ └── seabluelandgrey.cpt ├── frame_merge.ipynb ├── frame_merge_map_EW_w22cm.png ├── frame_merge_map_UD_A4w22cmborder3cm.png └── frame_merge_map_UD_w22cm.png ├── dist └── IntPyGMT-0.1.0-py3-none-any.whl ├── python ├── IntPyGMT_overlay.py └── __init__.py ├── requirements.txt ├── runtime.txt └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/.gitattributes -------------------------------------------------------------------------------- /IntPyGMT.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/IntPyGMT.egg-info/PKG-INFO -------------------------------------------------------------------------------- /IntPyGMT.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/IntPyGMT.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /IntPyGMT.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /IntPyGMT.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/IntPyGMT.egg-info/requires.txt -------------------------------------------------------------------------------- /IntPyGMT.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | IntPyGMT 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/README.md -------------------------------------------------------------------------------- /binder/apt.txt: -------------------------------------------------------------------------------- 1 | libgmt-dev 2 | gmt 3 | -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/binder/postBuild -------------------------------------------------------------------------------- /demo_borderless_mercator_png/Herat_InSAR_stc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_png/Herat_InSAR_stc.ipynb -------------------------------------------------------------------------------- /demo_borderless_mercator_png/Herat_InSAR_stc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_png/Herat_InSAR_stc.png -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/Hindu_Kush.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/Hindu_Kush.ipynb -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/Hindu_Kush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/Hindu_Kush.png -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/HarvardCMT_normal_dropname.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/HarvardCMT_normal_dropname.xy -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/HarvardCMT_ss_dropname.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/HarvardCMT_ss_dropname.xy -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/HarvardCMT_thrust_dropname.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/HarvardCMT_thrust_dropname.xy -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/HimaTibetMap.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/HimaTibetMap.gmt -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/blue.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/blue.cpt -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/green.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/green.cpt -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/hin_slab2_dep_02.24.18_contours.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/hin_slab2_dep_02.24.18_contours.in -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/pam_slab2_dep_02.26.18_contours.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/pam_slab2_dep_02.26.18_contours.in -------------------------------------------------------------------------------- /demo_borderless_mercator_pygmt/bin/red.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_borderless_mercator_pygmt/bin/red.cpt -------------------------------------------------------------------------------- /demo_conical/bin/abyss.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/abyss.cpt -------------------------------------------------------------------------------- /demo_conical/bin/abyss_slab2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/abyss_slab2.0 -------------------------------------------------------------------------------- /demo_conical/bin/bird_plates.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/bird_plates.xy -------------------------------------------------------------------------------- /demo_conical/bin/cas_slab2_dep_02.24.18_contours.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/cas_slab2_dep_02.24.18_contours.in -------------------------------------------------------------------------------- /demo_conical/bin/cascadianormal_dropname.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/cascadianormal_dropname.xy -------------------------------------------------------------------------------- /demo_conical/bin/cascadiastrikeslip_dropname.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/cascadiastrikeslip_dropname.xy -------------------------------------------------------------------------------- /demo_conical/bin/cascadiasubduction_dropname.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/cascadiasubduction_dropname.xy -------------------------------------------------------------------------------- /demo_conical/bin/seabluelandgrey.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/bin/seabluelandgrey.cpt -------------------------------------------------------------------------------- /demo_conical/cascadia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/cascadia.ipynb -------------------------------------------------------------------------------- /demo_conical/cascadia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/cascadia.png -------------------------------------------------------------------------------- /demo_conical/gmt.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_conical/gmt.history -------------------------------------------------------------------------------- /demo_pygmt/Herat_InSAR_EWvel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/Herat_InSAR_EWvel.ipynb -------------------------------------------------------------------------------- /demo_pygmt/bin/EW_mskd_gdalmergefinal2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/bin/EW_mskd_gdalmergefinal2.tif -------------------------------------------------------------------------------- /demo_pygmt/bin/HimaTibetMap.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/bin/HimaTibetMap.gmt -------------------------------------------------------------------------------- /demo_pygmt/bin/polar.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/bin/polar.cpt -------------------------------------------------------------------------------- /demo_pygmt/bin/polar_LOSdecomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/bin/polar_LOSdecomp -------------------------------------------------------------------------------- /demo_pygmt/bin/seabluelandgrey.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/bin/seabluelandgrey.cpt -------------------------------------------------------------------------------- /demo_pygmt/frame_merge_map_EW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_pygmt/frame_merge_map_EW.png -------------------------------------------------------------------------------- /demo_time_series/078D_05435_131313_run5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/078D_05435_131313_run5.png -------------------------------------------------------------------------------- /demo_time_series/bin/078D_05435_131313-poly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/bin/078D_05435_131313-poly.txt -------------------------------------------------------------------------------- /demo_time_series/bin/078D_05435_131313_run5.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/bin/078D_05435_131313_run5.nc -------------------------------------------------------------------------------- /demo_time_series/bin/HimaTibetMap.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/bin/HimaTibetMap.gmt -------------------------------------------------------------------------------- /demo_time_series/bin/roma_InSAR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/bin/roma_InSAR -------------------------------------------------------------------------------- /demo_time_series/bin/seabluelandgrey.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/bin/seabluelandgrey.cpt -------------------------------------------------------------------------------- /demo_time_series/time_series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/time_series.ipynb -------------------------------------------------------------------------------- /demo_time_series/time_series_spam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/demo_time_series/time_series_spam.png -------------------------------------------------------------------------------- /dev/bin/EW_mskd_gdalmergefinal2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/bin/EW_mskd_gdalmergefinal2.tif -------------------------------------------------------------------------------- /dev/bin/gem_active_faults.gmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/bin/gem_active_faults.gmt -------------------------------------------------------------------------------- /dev/bin/polar.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/bin/polar.cpt -------------------------------------------------------------------------------- /dev/bin/polar_LOSdecomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/bin/polar_LOSdecomp -------------------------------------------------------------------------------- /dev/bin/seabluelandgrey.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/bin/seabluelandgrey.cpt -------------------------------------------------------------------------------- /dev/frame_merge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/frame_merge.ipynb -------------------------------------------------------------------------------- /dev/frame_merge_map_EW_w22cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/frame_merge_map_EW_w22cm.png -------------------------------------------------------------------------------- /dev/frame_merge_map_UD_A4w22cmborder3cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/frame_merge_map_UD_A4w22cmborder3cm.png -------------------------------------------------------------------------------- /dev/frame_merge_map_UD_w22cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dev/frame_merge_map_UD_w22cm.png -------------------------------------------------------------------------------- /dist/IntPyGMT-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/dist/IntPyGMT-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /python/IntPyGMT_overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/python/IntPyGMT_overlay.py -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | ipympl 4 | basemap 5 | pillow 6 | pygmt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.12 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chelle0425/IntPyGMT/HEAD/setup.py --------------------------------------------------------------------------------