{"id":22982815,"url":"https://github.com/cxmrykk/waze-heatmap","last_synced_at":"2026-05-09T06:31:31.140Z","repository":{"id":219715557,"uuid":"741278058","full_name":"Cxmrykk/Waze-Heatmap","owner":"Cxmrykk","description":"Store and display Waze alerts on a Heatmap (SQLite, OpenStreetMap)","archived":false,"fork":false,"pushed_at":"2024-02-25T23:49:32.000Z","size":1924,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T10:20:00.107Z","etag":null,"topics":["javascript","leaflet","rust","sqlite","waze"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Cxmrykk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2024-01-10T04:07:21.000Z","updated_at":"2025-03-25T23:55:47.000Z","dependencies_parsed_at":"2024-02-26T00:31:35.247Z","dependency_job_id":"d14d928e-acae-4570-91b8-f1975a1a1220","html_url":"https://github.com/Cxmrykk/Waze-Heatmap","commit_stats":null,"previous_names":["cxmrykk/waze-heatmap"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Cxmrykk/Waze-Heatmap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cxmrykk%2FWaze-Heatmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cxmrykk%2FWaze-Heatmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cxmrykk%2FWaze-Heatmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cxmrykk%2FWaze-Heatmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cxmrykk","download_url":"https://codeload.github.com/Cxmrykk/Waze-Heatmap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cxmrykk%2FWaze-Heatmap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32809571,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["javascript","leaflet","rust","sqlite","waze"],"created_at":"2024-12-15T02:33:06.910Z","updated_at":"2026-05-09T06:31:31.118Z","avatar_url":"https://github.com/Cxmrykk.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch2\u003eWaze Heatmap\u003c/h2\u003e\n  \u003cimg src=\"./heatmap.png\"\u003e\n  \u003cp\u003eFigure 1: Police reports in Sydney, Australia\u003c/p\u003e\n\u003c/div\u003e\n\n### Dependencies\n- [NodeJS](https://nodejs.org/en) and [NPM](https://nodejs.org/en) (Latest)\n- [Rust](https://www.rust-lang.org/) and [Cargo](https://www.rust-lang.org/)\n\nServer (Rust/Cargo)\n  - [Diesel](https://diesel.rs/guides/getting-started.html) (Dependencies required, see below)\n\n\u003e By default diesel CLI depends on the following client libraries:\n\u003e- **libpq** for the PostgreSQL backend\n\u003e- **libmysqlclient** for the Mysql backend\n\u003e- **libsqlite3** for the SQLite backend\n\n\n### Installation\n```sh\n# Clone the project directory\ngit clone https://github.com/Cxmrykk/Waze-Heatmap.git\ncd Waze-Heatmap/\n```\n\n#### Server\n```sh\n# Run Diesel setup (Make sure cargo is in $PATH for Diesel to work)\ncd server/\ncargo install diesel_cli\ndiesel setup\n\n# Modify Config.toml (Alternative editors: nano, code, etc)\nvim Config.toml\ncd ../ # Exit server directory\n```\n\n#### Client\n```sh\ncd client/\nnpm install\ncd ../ # Exit client directory\n```\n\n### Execution (Using `screen`)\n```sh\n#!/bin/bash\nexport HEATPATH=/path/to/project/source\nscreen -dmS heatmap-client bash -c 'cd $HEATPATH/client \u0026\u0026 exec node server.js'\nscreen -dmS heatmap-server bash -c 'cd $HEATPATH/server \u0026\u0026 exec cargo run'\n```\n\n### Configuration (`Config.toml`)\n- Alert: `POLICE` by default (Inspect element on [waze.com](https://www.waze.com/live-map/) and reverse engineer the geolocation API response in the network tab)\n- Top/Bottom: Longitude range (South)\n- Left/Right: Latitude range (East)\n\n```toml\nalert = \"POLICE\"\ninterval = 1200\ntop = -10.683\nbottom = -43.633\nleft = 113.15\nright = 153.633\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcxmrykk%2Fwaze-heatmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcxmrykk%2Fwaze-heatmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcxmrykk%2Fwaze-heatmap/lists"}