58 lines
976 B
Plaintext
58 lines
976 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
|
|
geodata_config.json
|
|
raw/
|
|
|
|
# --- Raw downloaded source data (usually too big for git) ---
|
|
*.zip
|
|
# Prefer raw/ layout; keep data ignored but allow helper files
|
|
raw/**
|
|
!raw/dop20/
|
|
raw/dop20/**
|
|
!raw/dop20/filelist.txt
|
|
raw/dop20/jp2/**
|
|
archive/
|
|
|
|
# --- Logs / temp ---
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
.cache/
|
|
*.gfs
|