- modes.yaml: bus_whitelist (A-buses + selected refs) and exclude list (Snälltåget 083 night train — sparse crow-fly stubs) - prepare.py: drop degenerate crow-fly shapes below 0.05 pts/km; apply bus whitelist and route exclusions from modes.yaml - export_google_mymaps.py: new script — master.gpkg -> KML for Google My Maps import (stops, routes, boundary, coastline layers) - coastline.kml: reference coastline layer for the KML export - .gitignore: also ignore generated output/*.kml
20 lines
421 B
Plaintext
20 lines
421 B
Plaintext
# Generated/regenerable data — keep directory structure via .gitkeep only
|
|
copenhagen/data/raw/**
|
|
copenhagen/data/processed/**
|
|
!copenhagen/data/raw/.gitkeep
|
|
!copenhagen/data/processed/.gitkeep
|
|
|
|
# Generated map outputs (regenerable via render.py / export_google_mymaps.py)
|
|
copenhagen/output/*.png
|
|
copenhagen/output/*.svg
|
|
copenhagen/output/*.pdf
|
|
copenhagen/output/*.kml
|
|
|
|
# Python
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# OS
|
|
.DS_Store
|