{"id":51471314,"url":"https://github.com/ivorforce/wohnortatlas","last_synced_at":"2026-07-06T18:00:55.813Z","repository":{"id":367983028,"uuid":"1276383713","full_name":"Ivorforce/wohnortatlas","owner":"Ivorforce","description":"Source code for wohnortatlas.de, a website that scores personalized liveability across germany","archived":false,"fork":false,"pushed_at":"2026-06-28T14:00:05.000Z","size":2909,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-28T16:03:23.998Z","etag":null,"topics":["data-visualization","deckgl","geospatial","germany","gtfs","h3","housing","interactive-map","liveability","maplibre","open-data","openstreetmap","python","quality-of-life"],"latest_commit_sha":null,"homepage":"https://wohnortatlas.de","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ivorforce.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-21T23:09:11.000Z","updated_at":"2026-06-28T14:00:12.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Ivorforce/wohnortatlas","commit_stats":null,"previous_names":["ivorforce/wohnortatlas"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Ivorforce/wohnortatlas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivorforce%2Fwohnortatlas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivorforce%2Fwohnortatlas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivorforce%2Fwohnortatlas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivorforce%2Fwohnortatlas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ivorforce","download_url":"https://codeload.github.com/Ivorforce/wohnortatlas/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ivorforce%2Fwohnortatlas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35201088,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-06T02:00:07.184Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-visualization","deckgl","geospatial","germany","gtfs","h3","housing","interactive-map","liveability","maplibre","open-data","openstreetmap","python","quality-of-life"],"created_at":"2026-07-06T18:00:54.922Z","updated_at":"2026-07-06T18:00:55.790Z","avatar_url":"https://github.com/Ivorforce.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deutscher Wohnortatlas\n\nA Germany-wide livability map. **→ [wohnortatlas.de](https://wohnortatlas.de)**\n\nThe pipeline scores H3 (resolution 8) hexes across the German mainland on a few\ndozen livability layers — rent, commute, daily-needs access, leisure, quiet,\ngreen, flood risk, and more. The static web map then re-scores everything\n**client-side** against a user's own preferences. What each layer\nmeasures, how, and where it falls short is documented on the site's\n[method page](https://wohnortatlas.de/method.html).\n\n## Repository layout\n\n| Path | What |\n| --- | --- |\n| `scripts/` | the pipeline — numbered `NN_*.py` stages, run in order by the Makefile |\n| `wohnen/` | shared library code (config, I/O, routing, scoring helpers) |\n| `web/` | the static map (`index.html` + `decode.js`, no build step) and its assets |\n| `Makefile` | build targets with file-based caching |\n\nThe input data (`data/`), the built map bundle (`web/data.bin`), and the routing\ncaches (`web/reach/`) are **not** tracked — they are downloaded and generated by\nthe build. A clone is the source, not a ready-to-serve site.\n\n## Build / reproduce\n\nPrerequisites (developed on macOS; the Makefile assumes Homebrew):\n\n- [Poetry](https://python-poetry.org/) (Python ≥ 3.12)\n- `osmium-tool` and `openjdk@21` — the routing (r5py) needs JDK 21\n  (`brew install osmium-tool openjdk@21`)\n- ~25 GB free disk for the raw downloads and intermediate layers\n\n```sh\npoetry install\nmake check-env        # verifies osmium, JDK 21, and the Python deps\nmake download         # fetches the open datasets (large; cached under data/raw/)\nmake web              # runs the full pipeline → web/data.bin\n```\n\nThen serve the `web/` directory over HTTP and open it — it fetches `data.bin`, so\nit will **not** work from a `file://` URL:\n\n```sh\ncd web \u0026\u0026 python3 -m http.server   # → http://localhost:8000\n```\n\nThe job-market (\"Branche\") commute targets are optional and need a free\n[regionalstatistik.de](https://www.regionalstatistik.de/) account: set\n`GENESIS_USER` / `GENESIS_PASS`, then `make jobs \u0026\u0026 make web`.\n\nGotcha worth knowing:\n\n- The free **GTFS feed expires ~7 days** after download; an expired feed makes the\n  router silently fall back to walk/bike times. `make freshness` shows the age;\n  re-`make download` and rerun the routing stages to refresh.\n\n## License\n\nThe project's own code is [MIT](LICENSE). The bundled browser libraries, the map\nand geocoding services used at runtime, and the input datasets each keep their own\nlicenses — see [THIRD-PARTY-LICENSES.md](THIRD-PARTY-LICENSES.md) and the sources\nlist on the [method page](https://wohnortatlas.de/method.html).\n\nContributions are welcome where they fit the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivorforce%2Fwohnortatlas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fivorforce%2Fwohnortatlas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fivorforce%2Fwohnortatlas/lists"}