feat: align DInSAR workflow with three-engine task pool

This commit is contained in:
2026-06-15 00:10:00 +08:00
parent b1c59051b9
commit a0388de9d4
15 changed files with 950 additions and 70 deletions
+1 -2
View File
@@ -29,12 +29,11 @@ def list_engines() -> List[DinsarEngine]:
def _bootstrap() -> None:
"""Imports and registers all built-in engines."""
from .isce2_engine import Isce2Engine
from .landsar_engine import LandsarEngine
from .pyint_engine import PyintEngine
from .sarscape_engine import SarscapeEngine
for engine in (SarscapeEngine(), Isce2Engine(), PyintEngine(), LandsarEngine()):
for engine in (SarscapeEngine(), PyintEngine(), LandsarEngine()):
register(engine)