"""Shared paths and constants for the Copenhagen map scripts.""" from pathlib import Path HERE = Path(__file__).resolve().parent CPH = HERE.parent CONFIG = CPH / "config" DATA = CPH / "data" RAW = DATA / "raw" OSM_RAW = RAW / "osm" GTFS_RAW = RAW / "gtfs" PROCESSED = DATA / "processed" OUTPUT = CPH / "output" UA = "jetlag-maps/0.1 (https://github.com/marvin/jetlag-maps)"