分析器
InSARHub 分析器模块提供 InSAR 时序分析工作流。
-
导入分析器
导入 Analyzer 类以访问所有时序分析功能
-
查看可用分析器
列出所有已注册的分析器
可用分析器
InSARHub 将 Mintpy 封装为其分析后端之一。Mintpy_SBAS_Base_Analyzer 基于可复用的基础配置类实现,提供 Mintpy 完整的 smallbaselineApp 逻辑。为用户提供类似于直接使用 MintPy 的体验,支持对处理参数和步骤进行完整自定义。
Source code in src/insarhub/analyzer/mintpy_base.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | |
使用方法
-
使用参数创建分析器
初始化分析器实例
或analyzer = Analyzer.create('Mintpy_SBAS_Base_Analyzer', workdir="/your/work/dir", load_processor="hyp3", ....)或params = {"workdir": "/your/work/dir", "load_processor": "hyp3" ....} analyzer = Analyzer.create('Mintpy_SBAS_Base_Analyzer', **params)from insarhub.config import Mintpy_SBAS_Base_Config cfg = Mintpy_SBAS_Base_Config(workdir="/your/work/dir", load_processor="hyp3", ....) analyzer = Analyzer.create('Mintpy_SBAS_Base_Analyzer', config=cfg)基础配置
Mintpy_SBAS_Base_Config包含 MintpysmallbaselineApp.cfg的所有参数。有关每个参数的详细说明,请参阅 Mintpy 官方配置文档。Source code in
src/insarhub/config/defaultconfig.py355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
@dataclass class Mintpy_SBAS_Base_Config: ''' Dataclass containing all configuration options for Mintpy SBAS jobs. UI metadata is stored in ``_ui_groups`` / ``_ui_fields`` and consumed by the API layer to auto-generate the settings panel. ''' # ── UI metadata consumed by the API / settings panel ───────────────────── _ui_groups: ClassVar[list] = [ {"label": "Compute Resources", "fields": ["compute_maxMemory", "compute_cluster", "compute_numWorker", "compute_config"]}, {"label": "Load Data", "fields": ["load_processor", "load_autoPath", "load_updateMode", "load_compression", "load_metaFile", "load_baselineDir", "load_unwFile", "load_corFile", "load_connCompFile", "load_intFile", "load_magFile", "load_ionUnwFile", "load_ionCorFile", "load_ionConnCompFile", "load_azOffFile", "load_rgOffFile", "load_azOffStdFile", "load_rgOffStdFile", "load_offSnrFile", "load_demFile", "load_lookupYFile", "load_lookupXFile", "load_incAngleFile", "load_azAngleFile", "load_shadowMaskFile", "load_waterMaskFile", "load_bperpFile", "subset_yx", "subset_lalo", "multilook_method", "multilook_ystep", "multilook_xstep"]}, {"label": "Modify Network", "fields": ["network_tempBaseMax", "network_perpBaseMax", "network_connNumMax", "network_startDate", "network_endDate", "network_excludeDate", "network_excludeDate12", "network_excludeIfgIndex", "network_referenceFile", "network_coherenceBased", "network_minCoherence", "network_areaRatioBased", "network_minAreaRatio", "network_keepMinSpanTree", "network_maskFile", "network_aoiYX", "network_aoiLALO"]}, {"label": "Reference Point", "fields": ["reference_yx", "reference_lalo", "reference_maskFile", "reference_coherenceFile", "reference_minCoherence"]}, {"label": "Unwrap Error Correction", "fields": ["unwrapError_method", "unwrapError_waterMaskFile", "unwrapError_connCompMinArea", "unwrapError_numSample", "unwrapError_ramp", "unwrapError_bridgePtsRadius"]}, {"label": "Network Inversion", "fields": ["networkInversion_weightFunc", "networkInversion_waterMaskFile", "networkInversion_minNormVelocity", "networkInversion_maskDataset", "networkInversion_maskThreshold", "networkInversion_minRedundancy", "networkInversion_minTempCoh", "networkInversion_minNumPixel", "networkInversion_shadowMask"]}, {"label": "Solid Earth Tides", "fields": ["solidEarthTides"]}, {"label": "Ionosphere Correction", "fields": ["ionosphericDelay_method", "ionosphericDelay_excludeDate", "ionosphericDelay_excludeDate12"]}, {"label": "Troposphere Correction", "fields": ["troposphericDelay_method", "troposphericDelay_weatherModel", "troposphericDelay_weatherDir", "troposphericDelay_polyOrder", "troposphericDelay_looks", "troposphericDelay_minCorrelation", "troposphericDelay_gacosDir"]}, {"label": "Deramp", "fields": ["deramp", "deramp_maskFile"]}, {"label": "Topography Correction", "fields": ["topographicResidual", "topographicResidual_polyOrder", "topographicResidual_phaseVelocity", "topographicResidual_stepDate", "topographicResidual_excludeDate", "topographicResidual_pixelwiseGeometry"]}, {"label": "Residual RMS", "fields": ["residualRMS_maskFile", "residualRMS_deramp", "residualRMS_cutoff"]}, {"label": "Reference Date", "fields": ["reference_date"]}, {"label": "Velocity", "fields": ["timeFunc_startDate", "timeFunc_endDate", "timeFunc_excludeDate", "timeFunc_polynomial", "timeFunc_periodic", "timeFunc_stepDate", "timeFunc_exp", "timeFunc_log", "timeFunc_uncertaintyQuantification", "timeFunc_timeSeriesCovFile", "timeFunc_bootstrapCount"]}, {"label": "Geocode", "fields": ["geocode", "geocode_SNWE", "geocode_laloStep", "geocode_interpMethod", "geocode_fillValue"]}, {"label": "Google earth", "fields": ["save_kmz"]}, {"label": "Hdfeos5", "fields": ["save_hdfEos5", "save_hdfEos5_update", "save_hdfEos5_subset"]}, {"label": "Plot", "fields": ["plot", "plot_dpi", "plot_maxMemory"]}, {"label": "HPC (SLURM)", "fields": ["hpc_mode", "hpc_sbatch_opts"]}, ] _ui_fields: ClassVar[dict] = { # Compute Resources "compute_maxMemory": {"type": "number", "min": 1, "max": 512, "step": 1, "default": _env['memory'], "hint": "Maximum memory size in GB for each dask worker"}, "compute_cluster": {"type": "select", "options": ["local", "slurm", "pbs", "lsf", "oar", "sge", "none"], "hint": "Cluster type for parallel processing (local = dask LocalCluster)"}, "compute_numWorker": {"type": "number", "min": 1, "max": 64, "step": 1, "default": _env['cpu'], "hint": "Number of workers for parallel processing"}, "compute_config": {"type": "text", "hint": "Configuration file for dask distributed cluster"}, # Load Data "load_processor": {"type": "select", "options": ["auto", "isce", "aria", "hyp3", "gmtsar", "snap", "gamma", "roipac"], "hint": "SAR processor of the input dataset"}, "load_autoPath": {"type": "text", "hint": "Auto-detect input file paths based on processor type (auto)"}, "load_updateMode": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Skip re-loading if file already exists with same dataset and metadata"}, "load_compression": {"type": "select", "options": ["auto", "lzf", "gzip", "no"], "hint": "Data compression for HDF5 files"}, "load_metaFile": {"type": "text", "hint": "Metadata file path (ISCE only), e.g. reference/IW1.xml"}, "load_baselineDir": {"type": "text", "hint": "Baseline directory (ISCE only), e.g. baselines"}, "load_unwFile": {"type": "text", "hint": "Unwrapped interferogram file(s), e.g. ./../pairs/*/filt*.unw"}, "load_corFile": {"type": "text", "hint": "Coherence file(s), e.g. ./../pairs/*/filt*.cor"}, "load_connCompFile": {"type": "text", "hint": "Connected components file(s), e.g. ./../pairs/*/filt*.unw.conncomp"}, "load_intFile": {"type": "text", "hint": "Wrapped interferogram file(s), e.g. ./../pairs/*/filt*.int"}, "load_magFile": {"type": "text", "hint": "Interferogram magnitude file(s), e.g. ./../pairs/*/filt*.int"}, "load_ionUnwFile": {"type": "text", "hint": "Unwrapped ionospheric phase file(s)"}, "load_ionCorFile": {"type": "text", "hint": "Ionospheric coherence file(s)"}, "load_ionConnCompFile":{"type": "text", "hint": "Ionospheric connected component file(s)"}, "load_azOffFile": {"type": "text", "hint": "Azimuth offset file(s)"}, "load_rgOffFile": {"type": "text", "hint": "Range offset file(s)"}, "load_azOffStdFile": {"type": "text", "hint": "Azimuth offset standard deviation file(s)"}, "load_rgOffStdFile": {"type": "text", "hint": "Range offset standard deviation file(s)"}, "load_offSnrFile": {"type": "text", "hint": "Offset SNR file(s)"}, "load_demFile": {"type": "text", "hint": "DEM file in radar/geo coordinates, e.g. ./inputs/geometryRadar.h5"}, "load_lookupYFile": {"type": "text", "hint": "Lookup table lat/y file, e.g. ./inputs/geometryGeo.h5"}, "load_lookupXFile": {"type": "text", "hint": "Lookup table lon/x file"}, "load_incAngleFile": {"type": "text", "hint": "Incidence angle file"}, "load_azAngleFile": {"type": "text", "hint": "Azimuth angle file"}, "load_shadowMaskFile": {"type": "text", "hint": "Shadow/layover mask file"}, "load_waterMaskFile": {"type": "text", "hint": "Water mask file"}, "load_bperpFile": {"type": "text", "hint": "Perpendicular baseline file"}, "subset_yx": {"type": "text", "hint": "Subset in row/column, e.g. 1200:2000,0:2000"}, "subset_lalo": {"type": "text", "hint": "Subset in lat/lon, e.g. 37.5:38.5,-118.5:-117.5"}, "multilook_method": {"type": "select", "options": ["auto", "mean", "nearest", "no"], "hint": "Multilook method: mean, nearest, or no for skip"}, "multilook_ystep": {"type": "auto_number", "hint": "Multilook factor in y/azimuth direction"}, "multilook_xstep": {"type": "auto_number", "hint": "Multilook factor in x/range direction"}, # Modify Network "network_tempBaseMax": {"type": "auto_number", "hint": "Maximum temporal baseline in days"}, "network_perpBaseMax": {"type": "auto_number", "hint": "Maximum perpendicular baseline in meters"}, "network_connNumMax": {"type": "auto_number", "hint": "Maximum number of nearest-neighbor connections"}, "network_startDate": {"type": "text", "hint": "Start date in YYYYMMDD format"}, "network_endDate": {"type": "text", "hint": "End date in YYYYMMDD format"}, "network_excludeDate": {"type": "text", "hint": "Date(s) to exclude in YYYYMMDD, separated by space"}, "network_excludeDate12": {"type": "text", "hint": "Interferogram date pairs to exclude, e.g. 20150115_20150127"}, "network_excludeIfgIndex": {"type": "text", "hint": "Index(es) of interferograms to exclude, e.g. 2 8 230"}, "network_referenceFile": {"type": "text", "hint": "Reference network file (pairs in date12_list.txt format)"}, "network_coherenceBased": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Enable coherence-based network modification"}, "network_minCoherence": {"type": "number", "min": 0, "max": 1, "step": 0.05, "hint": "Minimum coherence threshold for coherence-based modification"}, "network_areaRatioBased": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Enable area-ratio-based network modification (ECR method)"}, "network_minAreaRatio": {"type": "auto_number", "hint": "Minimum area ratio for area-ratio-based modification"}, "network_keepMinSpanTree": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Keep the minimum spanning tree of the network"}, "network_maskFile": {"type": "text", "hint": "Mask file for coherence-based network modification"}, "network_aoiYX": {"type": "text", "hint": "AOI in row/column for coherence calculation, e.g. 100:200,300:400"}, "network_aoiLALO": {"type": "text", "hint": "AOI in lat/lon for coherence calculation, e.g. 37.5:38.0,-118.0:-117.5"}, # Reference Point "reference_yx": {"type": "text", "hint": "Reference point in row/column, e.g. 257 151"}, "reference_lalo": {"type": "text", "hint": "Reference point in lat/lon, e.g. 37.65 -118.45"}, "reference_maskFile": {"type": "text", "hint": "Mask file for reference point selection"}, "reference_coherenceFile": {"type": "text", "hint": "Coherence file for reference point selection"}, "reference_minCoherence": {"type": "auto_number", "hint": "Minimum coherence for reference point selection"}, # Unwrap Error "unwrapError_method": {"type": "select", "options": ["auto", "bridging", "phase_closure", "bridging+phase_closure", "no"], "hint": "Phase unwrapping error correction method"}, "unwrapError_waterMaskFile": {"type": "text", "hint": "Water mask file for bridging method"}, "unwrapError_connCompMinArea": {"type": "auto_number", "hint": "Minimum area in pixels for a connected component"}, "unwrapError_numSample": {"type": "auto_number", "hint": "Number of randomly sampled triplets for phase_closure method"}, "unwrapError_ramp": {"type": "select", "options": ["auto", "linear", "quadratic", "no"], "hint": "Remove ramp before bridging"}, "unwrapError_bridgePtsRadius": {"type": "auto_number", "hint": "Radius in pixels to search for bridge points"}, # Network Inversion "networkInversion_weightFunc": {"type": "select", "options": ["auto", "var", "fim", "no"], "hint": "var = spatial variance, fim = Fisher info matrix, no = uniform"}, "networkInversion_waterMaskFile": {"type": "text", "hint": "Water mask file applied before inversion"}, "networkInversion_minNormVelocity": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Minimize L2-norm of velocity (vs. timeseries) in SBAS inversion"}, "networkInversion_maskDataset": {"type": "text", "hint": "Dataset for masking, e.g. coherence or connectComponent"}, "networkInversion_maskThreshold": {"type": "number", "min": 0, "max": 1, "step": 0.05, "hint": "Threshold for maskDataset to mask unwrapped phase"}, "networkInversion_minRedundancy": {"type": "auto_number", "hint": "Minimum redundancy of interferograms per pixel"}, "networkInversion_minTempCoh": {"type": "auto_number", "hint": "Minimum temporal coherence for pixel masking"}, "networkInversion_minNumPixel": {"type": "auto_number", "hint": "Minimum number of coherent pixels to proceed"}, "networkInversion_shadowMask": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Use shadow mask from geometry"}, # Solid Earth Tides "solidEarthTides": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Correct for solid earth tides using pysolid"}, # Ionosphere "ionosphericDelay_method": {"type": "select", "options": ["auto", "split_spectrum", "no"], "hint": "Ionospheric delay correction method"}, "ionosphericDelay_excludeDate": {"type": "text", "hint": "Dates to exclude from ionospheric correction, e.g. 20180202 20180414"}, "ionosphericDelay_excludeDate12":{"type": "text", "hint": "Interferogram date pairs to exclude from ionospheric correction"}, # Troposphere "troposphericDelay_method": {"type": "select", "options": ["auto", "pyaps", "gacos", "height_correlation", "no"], "hint": "Tropospheric delay correction method"}, "troposphericDelay_weatherModel": {"type": "select", "options": ["auto", "ERA5", "ERA5T", "MERRA", "NARR"], "hint": "Weather model for pyaps (ERA5 recommended)"}, "troposphericDelay_weatherDir": {"type": "text", "hint": "Directory of downloaded weather data files for pyaps"}, "troposphericDelay_polyOrder": {"type": "auto_number", "hint": "Polynomial order for height-correlation method"}, "troposphericDelay_looks": {"type": "auto_number", "hint": "Extra multilook factor for height-correlation estimation"}, "troposphericDelay_minCorrelation": {"type": "auto_number", "hint": "Minimum correlation between height and phase"}, "troposphericDelay_gacosDir": {"type": "text", "hint": "Directory of GACOS delay files"}, # Deramp "deramp": {"type": "select", "options": ["auto", "linear", "quadratic", "no"], "hint": "Remove phase ramp in x/y direction"}, "deramp_maskFile": {"type": "text", "hint": "Mask file for ramp estimation"}, # Topography "topographicResidual": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Correct topographic residuals (DEM error)"}, "topographicResidual_polyOrder": {"type": "auto_number", "hint": "Polynomial order for DEM error estimation"}, "topographicResidual_phaseVelocity": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Minimize phase velocity (not phase) in DEM error inversion"}, "topographicResidual_stepDate": {"type": "text", "hint": "Step function date(s) for co-seismic jumps, e.g. 20140911"}, "topographicResidual_excludeDate": {"type": "text", "hint": "Dates to exclude in DEM error inversion"}, "topographicResidual_pixelwiseGeometry":{"type": "select", "options": ["auto", "yes", "no"], "hint": "Use pixel-wise geometry in DEM error estimation"}, # Residual RMS "residualRMS_maskFile": {"type": "text", "hint": "Mask file for residual phase quality assessment"}, "residualRMS_deramp": {"type": "select", "options": ["auto", "linear", "quadratic", "no"], "hint": "Remove ramp before RMS calculation"}, "residualRMS_cutoff": {"type": "auto_number", "hint": "Cutoff value in RMS threshold for outlier date detection"}, # Reference Date "reference_date": {"type": "text", "hint": "Reference date in YYYYMMDD; 'auto' = first date with full coherence"}, # Velocity "timeFunc_startDate": {"type": "text", "hint": "Start date of the time function fit"}, "timeFunc_endDate": {"type": "text", "hint": "End date of the time function fit"}, "timeFunc_excludeDate": {"type": "text", "hint": "Date(s) to exclude from time function fitting"}, "timeFunc_polynomial": {"type": "auto_number", "hint": "Polynomial order: 1 = linear velocity, 2 = acceleration"}, "timeFunc_periodic": {"type": "text", "hint": "Periodic periods in years, e.g. 1.0 0.5 for annual+semi-annual"}, "timeFunc_stepDate": {"type": "text", "hint": "Step function date(s), e.g. 20161231 for co-seismic jump"}, "timeFunc_exp": {"type": "text", "hint": "Exponential decay: onset_date char_time, e.g. 20181026 60"}, "timeFunc_log": {"type": "text", "hint": "Logarithmic relaxation: onset_date char_time, e.g. 20181026 60"}, "timeFunc_uncertaintyQuantification":{"type": "select", "options": ["auto", "bootstrap", "residue"], "hint": "Method for velocity uncertainty quantification"}, "timeFunc_timeSeriesCovFile": {"type": "text", "hint": "Time-series covariance file for uncertainty propagation"}, "timeFunc_bootstrapCount": {"type": "auto_number", "hint": "Number of bootstrap iterations"}, # Geocode "geocode": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Geocode datasets in radar coordinates to geo coordinates"}, "geocode_SNWE": {"type": "text", "hint": "Bounding box: south north west east, e.g. 31 40 -115 -100"}, "geocode_laloStep": {"type": "text", "hint": "Output pixel size in lat/lon, e.g. -0.000833 0.000833 (≈90 m)"}, "geocode_interpMethod": {"type": "select", "options": ["auto", "nearest", "linear"], "hint": "Interpolation method for geocoding"}, "geocode_fillValue": {"type": "text", "hint": "Fill value for pixels outside coverage, e.g. nan or 0"}, # Google Earth "save_kmz": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Save geocoded velocity to Google Earth KMZ file"}, # HDF-EOS5 "save_hdfEos5": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Save time-series to HDF-EOS5 format"}, "save_hdfEos5_update": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Update HDF-EOS5 file if already exists"}, "save_hdfEos5_subset": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Save subset of HDF-EOS5 file"}, # Plot "plot": {"type": "select", "options": ["auto", "yes", "no"], "hint": "Plot results during processing"}, "plot_dpi": {"type": "auto_number", "hint": "Figure DPI for saved plots"}, "plot_maxMemory": {"type": "auto_number", "hint": "Maximum memory in GB for plot_smallbaseline.py"}, "hpc_mode": {"type": "bool", "hint": "Submit the full MintPy run as a single sbatch job"}, "hpc_sbatch_opts": {"type": "text", "hint": "SLURM resource overrides, e.g. {\"time\": \"24:00:00\", \"mem\": \"256G\", \"cpus_per_task\": 32}. Defaults: ntasks=1, cpus_per_task=16, mem=128G, time=12:00:00"}, } # ───────────────────────────────────────────────────────────────────────── name: str = "Mintpy_SBAS_Base_Config" workdir: Path | str = field(default_factory=lambda: Path.cwd()) debug: bool = False hpc_mode: bool = False hpc_sbatch_opts: dict = field(default_factory=dict) ## computing resource configuration compute_maxMemory : float | int = _env['memory'] compute_cluster : str = 'local' # Mintpy's slurm parallel processing is buggy, so we will handle parallel processing with dask instead. Switch to none to turn off parallel processing to save memory. compute_numWorker : int = _env['cpu'] compute_config: str = 'none' ## Load data load_processor: str = 'auto' load_autoPath: str = 'auto' load_updateMode: str = 'no' load_compression: str = 'auto' ##---------for ISCE only: load_metaFile: str = 'auto' load_baselineDir: str = 'auto' ##---------interferogram stack: load_unwFile: str = 'auto' load_corFile: str = 'auto' load_connCompFile: str = 'auto' load_intFile: str = 'auto' load_magFile: str = 'auto' ##---------ionosphere stack (optional): load_ionUnwFile: str = 'auto' load_ionCorFile: str = 'auto' load_ionConnCompFile: str = 'auto' ##---------offset stack (optional): load_azOffFile: str = 'auto' load_rgOffFile: str = 'auto' load_azOffStdFile: str = 'auto' load_rgOffStdFile: str = 'auto' load_offSnrFile: str = 'auto' ##---------geometry: load_demFile: str = 'auto' load_lookupYFile: str = 'auto' load_lookupXFile: str = 'auto' load_incAngleFile: str = 'auto' load_azAngleFile: str = 'auto' load_shadowMaskFile: str = 'auto' load_waterMaskFile: str = 'auto' load_bperpFile: str = 'auto' ##---------subset (optional): subset_yx: str = 'auto' subset_lalo: str = 'auto' ##---------multilook (optional): multilook_method: str = 'auto' multilook_ystep: str | int = 'auto' multilook_xstep: str | int= 'auto' # 2. Modify Network network_tempBaseMax: str | float = 'auto' network_perpBaseMax: str | float = 'auto' network_connNumMax: str | int = 'auto' network_startDate: str = 'auto' network_endDate: str = 'auto' network_excludeDate: str = 'auto' network_excludeDate12: str = 'auto' network_excludeIfgIndex: str = 'auto' network_referenceFile: str = 'auto' ## 2) Data-driven network modification network_coherenceBased: str = 'auto' network_minCoherence: str |float = 'auto' ## b - Effective Coherence Ratio network modification = (threshold + MST) by default network_areaRatioBased: str = 'auto' network_minAreaRatio: str |float= 'auto' ## Additional common parameters for the 2) data-driven network modification network_keepMinSpanTree: str = 'auto' network_maskFile: str = 'auto' network_aoiYX: str = 'auto' network_aoiLALO: str = 'auto' # 3. Reference Point reference_yx: str = 'auto' reference_lalo: str = 'auto' reference_maskFile: str = 'auto' reference_coherenceFile: str = 'auto' reference_minCoherence: str |float = 'auto' # 4. Correct Unwrap Error unwrapError_method: str = 'auto' unwrapError_waterMaskFile: str = 'auto' unwrapError_connCompMinArea: str |float = 'auto' ## phase_closure options: unwrapError_numSample: str | int= 'auto' ## bridging options: unwrapError_ramp: str = 'auto' unwrapError_bridgePtsRadius: str | int= 'auto' # 5. Invert Network networkInversion_weightFunc: str = 'auto' networkInversion_waterMaskFile: str = 'auto' networkInversion_minNormVelocity: str = 'auto' ## mask options for unwrapPhase of each interferogram before inversion (recommend if weightFunct=no): networkInversion_maskDataset: str = 'auto' networkInversion_maskThreshold: str | float = 'auto' networkInversion_minRedundancy: str | float = 'auto' ## Temporal coherence is calculated and used to generate the mask as the reliability measure networkInversion_minTempCoh: str | float = 'auto' networkInversion_minNumPixel: str | int = 'auto' networkInversion_shadowMask: str = 'auto' # 6. Correct SET (Solid Earth Tides) solidEarthTides: str = 'auto' # 7. Correct Ionosphere ionosphericDelay_method: str = 'auto' ionosphericDelay_excludeDate: str = 'auto' ionosphericDelay_excludeDate12: str = 'auto' # 8. Correct Troposphere troposphericDelay_method: str = 'auto' ## Notes for pyaps: troposphericDelay_weatherModel: str = 'auto' troposphericDelay_weatherDir: str = 'auto' ## Notes for height_correlation: troposphericDelay_polyOrder: str | int = 'auto' troposphericDelay_looks: str | int = 'auto' troposphericDelay_minCorrelation: str | float = 'auto' ## Notes for gacos: troposphericDelay_gacosDir: str = 'auto' # 9. Deramp deramp: str = 'auto' deramp_maskFile: str = 'auto' # 10. Correct Topography topographicResidual: str = 'auto' topographicResidual_polyOrder: str = 'auto' topographicResidual_phaseVelocity: str = 'auto' topographicResidual_stepDate: str = 'auto' topographicResidual_excludeDate: str = 'auto' topographicResidual_pixelwiseGeometry: str = 'auto' # 11.1 Residual RMS residualRMS_maskFile: str = 'auto' residualRMS_deramp: str = 'auto' residualRMS_cutoff: str | float = 'auto' # 11.2 Reference Date reference_date: str = 'auto' # 12. Velocity timeFunc_startDate: str = 'auto' timeFunc_endDate: str = 'auto' timeFunc_excludeDate: str = 'auto' ## Fit a suite of time functions timeFunc_polynomial: str | int = 'auto' timeFunc_periodic: str = 'auto' timeFunc_stepDate: str = 'auto' timeFunc_exp: str = 'auto' timeFunc_log: str = 'auto' ## Uncertainty quantification methods: timeFunc_uncertaintyQuantification: str = 'auto' timeFunc_timeSeriesCovFile: str = 'auto' timeFunc_bootstrapCount: str | int = 'auto' # 13.1 Geocode geocode: str = 'auto' geocode_SNWE: str = 'auto' geocode_laloStep: str = 'auto' geocode_interpMethod: str = 'auto' geocode_fillValue: str | float = 'auto' # 13.2 Google Earth save_kmz: str = 'auto' # 13.3 HDFEOS5 save_hdfEos5: str = 'auto' save_hdfEos5_update: str = 'auto' save_hdfEos5_subset: str = 'auto' # 13.4 Plot plot: str = 'auto' plot_dpi: str | int = 'auto' plot_maxMemory: str | int = 'auto' def __post_init__(self): if isinstance(self.workdir, str): self.workdir = Path(self.workdir).expanduser().resolve() def write_mintpy_config(self, outpath: Union[Path, str]): """ Writes the dataclass to a mintpy .cfg file, excluding operational parameters that MintPy doesn't recognize. """ outpath = Path(outpath).expanduser().resolve() exclude_fields = ['name', 'workdir', 'debug'] with open(outpath, 'w') as f: f.write("## MintPy Config File Generated via InSARHub\n") for key, value in asdict(self).items(): if key in exclude_fields: continue parts = key.split('_') if len(parts) > 1: mintpy_key = f"mintpy.{parts[0]}.{'.'.join(parts[1:])}" else: mintpy_key = f"mintpy.{parts[0]}" f.write(f"{mintpy_key:<40} = {value}\n") return Path(outpath).resolve() -
运行
根据提供的配置运行 Mintpy 时序分析
Parameters:
Name Type Description Default stepslist[str] | NoneList of MintPy processing steps to execute. If None, the default full workflow is executed: [ 'load_data', 'modify_network', 'reference_point', 'quick_overview', 'invert_network', 'correct_LOD', 'correct_SET', 'correct_ionosphere', 'correct_troposphere', 'deramp', 'correct_topography', 'residual_RMS', 'reference_date', 'velocity', 'geocode', 'google_earth', 'hdfeos5' ]
NoneRaises:
Type Description RuntimeErrorIf tropospheric delay method requires CDS authorization and authorization fails.
ExceptionPropagates exceptions raised during MintPy execution.
-
提交(HPC / SLURM 模式)
生成一个涵盖所有选定步骤的单个
sbatch脚本并提交至 SLURM。Hyp3_SBAS和ISCE_SBAS均继承此方法。# 将完整流程作为一个 SLURM 作业提交 analyzer.submit_hpc() # 仅提交特定步骤 analyzer.submit_hpc(steps=["velocity", "geocode"])脚本写入
<workdir>/mintpy/mintpy_sbas.sbatch,作业状态保存至mintpy/mintpy_job.json。默认资源:time=24:00:00、ntasks=1、cpus_per_task=16、mem=128G、partition=all。通过配置中的hpc_sbatch_opts覆盖: -
清理
删除时序处理过程中生成的中间处理文件
Hyp3_SBAS 是专门为处理 HyP3 InSAR 产品时序数据而预配置的分析器,扩展自 Mintpy_SBAS_Base_Analyzer。
Source code in src/insarhub/analyzer/hyp3_sbas.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | |
使用方法
-
使用参数创建分析器
初始化分析器实例
或 或 -
准备数据
将从 HyP3 服务器下载的干涉图数据准备至 MintPy
Raises:
Type Description FileNotFoundErrorIf required input files are missing.
ValueErrorIf no common overlap region can be determined among rasters.
ExceptionPropagates any unexpected errors during preprocessing.
Source code in
src/insarhub/analyzer/hyp3_sbas.py -
运行
根据提供的配置运行 Mintpy 时序分析
Parameters:
Name Type Description Default stepslist[str] | NoneList of MintPy processing steps to execute. If None, the default full workflow is executed: [ 'load_data', 'modify_network', 'reference_point', 'quick_overview', 'invert_network', 'correct_LOD', 'correct_SET', 'correct_ionosphere', 'correct_troposphere', 'deramp', 'correct_topography', 'residual_RMS', 'reference_date', 'velocity', 'geocode', 'google_earth', 'hdfeos5' ]
NoneRaises:
Type Description RuntimeErrorIf tropospheric delay method requires CDS authorization and authorization fails.
ExceptionPropagates exceptions raised during MintPy execution.
Source code in
src/insarhub/analyzer/mintpy_base.py -
提交(HPC / SLURM 模式)
继承自
Mintpy_SBAS_Base_Analyzer,将完整 MintPy 流程作为单个 sbatch 作业提交。 -
清理
删除时序处理过程中生成的中间处理文件
ISCE_SBAS 分析器扩展自 Mintpy_SBAS_Base_Analyzer,专为 ISCE2 stackSentinel 输出预配置。prep_data() 自动发现 isce/ 目录中的干涉图和几何数据,并将 MintPy 配置写入 mintpy/.mintpy.cfg。所有 MintPy 输出写入 workdir/mintpy/。
Source code in src/insarhub/analyzer/isce_sbas.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | |
使用方法
-
创建分析器
或使用显式配置:
-
准备数据
自动发现 ISCE2 输出并写入
mintpy/.mintpy.cfg。 -
运行
运行 MintPy SBAS 时序分析。所有输出写入
workdir/mintpy/。 -
提交(HPC / SLURM 模式)
继承自
Mintpy_SBAS_Base_Analyzer,将完整 MintPy 流程作为单个 sbatch 作业提交。 -
清理
删除
load_data后不再需要的大型 ISCE2 中间目录和输入数据。 删除isce/coarse_interferograms/、isce/ESD/、isce/coreg_secondarys/、isce/interferograms/、slc/和dem/。