{"id":27012962,"url":"https://github.com/jg585username/drive-bc-overlay","last_synced_at":"2026-01-19T16:31:47.607Z","repository":{"id":283375992,"uuid":"944783621","full_name":"jg585Username/drive-bc-overlay","owner":"jg585Username","description":"Retrieves queried data from overpass-turbo (OSM) and Google Maps APIs, and other APIs to combine detailed information on BC roads/streets/trails","archived":false,"fork":false,"pushed_at":"2025-04-03T01:54:50.000Z","size":10013,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T02:32:10.785Z","etag":null,"topics":["google-cloud","google-maps-api","html-css-javascript","openbc","openstreetmap-data","overpass-turbo","places-api"],"latest_commit_sha":null,"homepage":"https://drivebc.netlify.app/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jg585Username.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}},"created_at":"2025-03-08T00:39:29.000Z","updated_at":"2025-04-03T01:54:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"a1519656-f508-4f29-87e1-d77cb151b3eb","html_url":"https://github.com/jg585Username/drive-bc-overlay","commit_stats":null,"previous_names":["jg585username/drive-bc-overlay"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jg585Username/drive-bc-overlay","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jg585Username%2Fdrive-bc-overlay","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jg585Username%2Fdrive-bc-overlay/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jg585Username%2Fdrive-bc-overlay/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jg585Username%2Fdrive-bc-overlay/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jg585Username","download_url":"https://codeload.github.com/jg585Username/drive-bc-overlay/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jg585Username%2Fdrive-bc-overlay/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28574309,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T16:29:19.148Z","status":"ssl_error","status_checked_at":"2026-01-19T16:29:17.772Z","response_time":67,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["google-cloud","google-maps-api","html-css-javascript","openbc","openstreetmap-data","overpass-turbo","places-api"],"created_at":"2025-04-04T12:18:36.011Z","updated_at":"2026-01-19T16:31:47.603Z","avatar_url":"https://github.com/jg585Username.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# drive-bc-overlay [![Netlify Status](https://api.netlify.com/api/v1/badges/231bab18-35f8-4e00-98fa-7b06a361f5d4/deploy-status)](https://app.netlify.com/sites/drivebc/deploys)\nCollection of important road data for the Metro Vancouver Area and the rest of BC (OpenBC, OSM (overpass), and Google Maps/Roads/Places API) normally not available on Google Maps, Apple Maps, etc...\n\n## Stuff\n### Live road works/incidents/events updates\n![image](https://github.com/user-attachments/assets/8c8f1706-72fe-4000-b54b-953cb4b517a7)\n### Polylines with detailed road data and layers by road type\n\u003cimg width=\"100%\" alt=\"image\" src=\"https://github.com/user-attachments/assets/d0a9c11b-16f8-4656-81a4-e0449a8994af\" /\u003e \u003cimg width=\"100%\" alt=\"image\" src=\"https://github.com/user-attachments/assets/278d68ca-99b7-43e7-9823-69a5d7ae1684\" /\u003e\n### Measurements to nearest road\n\u003cimg width=\"100%\" alt=\"image\" src=\"https://github.com/user-attachments/assets/db72ea73-cc38-4865-9a88-8a7d1579ab80\" /\u003e\n\n## Overpass Query\n\n```overpassql\n[out:json][timeout:90];\narea[name=\"Vancouver\"]-\u003e.searchArea; // or whatever area\n\n// Gather results\n(\n  nwr[\"highway\"][\"cycleway\"~\"lane|track\"](area.searchArea);  // Roads with bike lanes (lane or track)\n  nwr[\"highway\"][\"sidewalk\"](area.searchArea);              // Sidewalk presence\n  nwr[\"highway\"][\"surface\"](area.searchArea);               // Surface type (paved, gravel, etc.)\n  nwr[\"highway\"][\"maxspeed\"](area.searchArea);              // Speed limit\n  nwr[\"highway\"][\"lanes\"](area.searchArea);                 // Number of lanes\n  nwr[\"highway\"][\"width\"](area.searchArea);                 // Road width\n  nwr[\"highway\"][\"oneway\"](area.searchArea);                // One-way streets\n  nwr[\"highway\"][\"access\"](area.searchArea);                // Traffic access restrictions\n  nwr[\"highway\"][\"motor_vehicle\"](area.searchArea);         // Motor vehicle restrictions\n  nwr[\"highway\"][\"bicycle\"](area.searchArea);               // Bicycle access rules\n  nwr[\"highway\"][\"foot\"](area.searchArea);                  // Pedestrian access rules\n  nwr[\"highway\"][\"lit\"](area.searchArea);                   // Street lighting availability\n  nwr[\"highway\"][\"busway\"](area.searchArea);                // Bus lanes\n  nwr[\"highway\"][\"tramway\"](area.searchArea);               // Tram tracks\n  nwr[\"highway\"][\"turn\"](area.searchArea);                  // Allowed turn directions\n  nwr[\"highway\"][\"incline\"](area.searchArea);               // Road slope percentage\n  nwr[\"highway\"][\"ele\"](area.searchArea);                   // Elevation above sea level\n);\n\nout geom;\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjg585username%2Fdrive-bc-overlay","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjg585username%2Fdrive-bc-overlay","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjg585username%2Fdrive-bc-overlay/lists"}