Import S-CANVAS source + iter=1~7 lint cleanup

S-CANVAS (Saman Corp.) — DXF + DEM + AI 기반 3D 조감도 생성 엔진.
~24k LOC Python (scanvas_maker.py 7072 LOC GUI + 구조물 파서/빌더 다수).

이 커밋은 7-iter cleanup이 적용된 상태로 import:
- F821 8 + B023 6: 비동기 lambda + except/loop 변수 캡처 NameError
  (Py3.13에서 reproduce 확인된 진짜 버그)
- RUF012 4 + RUF013 1: ClassVar / implicit Optional 명시화
- F811/B905/B904/F401/F841/W293/F541/UP/SIM/RUF/PLR 700+ cleanup/modernization

신규 파일:
- ruff.toml: target=py313, Korean unicode/저자 스타일/도메인 복잡도 무력화
- requirements-py313.txt: pyproj>=3.7, scipy>=1.14, numpy>=2.0.2 (Py3.13 wheel)
- .gitignore: gcp-key.json, 캐시, 백업, 생성 이미지 제외

검증: ruff 0 errors, py_compile 0 errors, import 33/33 OK on Py3.13.13.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-08 10:29:08 +09:00
parent 53d8b53c2f
commit b9342f6726
92 changed files with 3413501 additions and 0 deletions

56
.gitignore vendored Normal file
View File

@@ -0,0 +1,56 @@
# ===== Secrets =====
gcp-key.json
*.key
*.pem
.env
.env.*
# ===== Python =====
__pycache__/
*.py[cod]
*.so
*.egg-info/
*.egg
# ===== Virtual envs =====
venv/
venv*/
.venv/
env/
# ===== Backups =====
*.bak
*.bak_*
# ===== IDE / OS =====
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db
# ===== Tooling metadata =====
.claude/
workspace/
# ===== Runtime artifacts =====
*.log
*.db
gate_params.json
# ===== Cache =====
cache/
# ===== Generated render outputs (재생성 가능) =====
capture_for_ai.png
capture_textured.png
rendered_birdseye.png
satellite_temp.png
lineart_map.png
guide_composite.png
depth_map.png
error*.png
# ===== Misc local dev =====
dot.tmux.conf
Build_log.txt