Refactor GF3 L1A to L2 pipeline

This commit is contained in:
2026-05-03 15:41:08 +08:00
commit 46474274c2
26 changed files with 1310 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""Compatibility wrapper for the packaged GF3 L1A to L2 pipeline."""
from __future__ import annotations
import sys
from pathlib import Path
_SRC = Path(__file__).resolve().parent / "src"
if _SRC.is_dir():
sys.path.insert(0, str(_SRC))
from gf3_l1a2l2.cli import main
if __name__ == "__main__":
raise SystemExit(main())