58 lines
1023 B
Plaintext
58 lines
1023 B
Plaintext
# --- OS / editor junk ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
.vscode/
|
|
.idea/
|
|
|
|
# --- Python ---
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
.env
|
|
|
|
# --- GDAL / GIS scratch & sidecars ---
|
|
work/
|
|
**/work/
|
|
*_tmp.tif
|
|
*.vrt.aux.xml
|
|
*.aux.xml
|
|
*.ovr
|
|
*.tfw~ # backup worldfiles
|
|
*.tif.aux.xml
|
|
|
|
# --- Export artifacts (choose what to track) ---
|
|
# If you want to keep ONLY manifests/scripts in git, ignore generated rasters:
|
|
export_unity/**/tile_test.*
|
|
export_unity/**/test_*
|
|
export_unity/**/.DS_Store
|
|
export_unity/ortho_jpg/
|
|
export_unity/height_png16/
|
|
export_unity/buildings_obj/
|
|
|
|
# Keep the manifest by default (remove this line if you want to ignore it too)
|
|
!export_unity/tile_index.csv
|
|
|
|
# --- Raw downloaded source data (usually too big for git) ---
|
|
*.zip
|
|
|
|
# If you DO want to keep small sample tiles in git for CI/tests,
|
|
# comment out raw_dgm1/ and add a whitelist like:
|
|
# !raw_dgm1/sample_*.tif
|
|
# !raw_dgm1/sample_*.tfw
|
|
|
|
# --- Logs / temp ---
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
.cache/
|
|
*.gfs
|
|
raw_dop/
|
|
raw_dgm1/
|
|
raw_3dgeb_lod1/
|
|
raw_3dgeb_lod2/
|