Files
GeoData/.gitignore

51 lines
888 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
# 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/