{"id":22138537,"url":"https://github.com/bbmoz/wandt","last_synced_at":"2025-03-24T10:27:03.424Z","repository":{"id":28531435,"uuid":"32048364","full_name":"bbmoz/WandT","owner":"bbmoz","description":"A live weather and traffic visualization of the most populated cities in the United States","archived":false,"fork":false,"pushed_at":"2015-04-19T18:08:34.000Z","size":5088,"stargazers_count":2,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T15:50:47.338Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://wandt.meteor.com/","language":"JavaScript","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/bbmoz.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}},"created_at":"2015-03-12T00:25:55.000Z","updated_at":"2015-04-19T18:08:34.000Z","dependencies_parsed_at":"2022-08-30T15:11:17.219Z","dependency_job_id":null,"html_url":"https://github.com/bbmoz/WandT","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbmoz%2FWandT","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbmoz%2FWandT/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbmoz%2FWandT/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbmoz%2FWandT/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bbmoz","download_url":"https://codeload.github.com/bbmoz/WandT/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245251388,"owners_count":20584871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-12-01T20:10:29.802Z","updated_at":"2025-03-24T10:27:03.379Z","avatar_url":"https://github.com/bbmoz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![CodeShip Status](https://codeship.com/projects/ba260110-b61d-0132-8efb-127341985930/status?branch=master)\n\u003ch1\u003e\u003cb\u003eWandT: Weather and Traffic Live Map\u003c/b\u003e\u003c/h1\u003e\n\u003ci\u003eLive weather and traffic visualization of the most populated cities in the United States\u003c/li\u003e\n\n\u003ch3\u003eSetup Before Meteor\u003c/h3\u003e\n```bash\n\u003e\u003e make setup   # Install NPM TopoJSON and Gulp dependencies.\n\u003e\u003e make map     # Download, unzip, and convert the U.S. shapefile into TopoJSON.\n```\n\n\u003ch3\u003eMain Stack Actors\u003c/h3\u003e\n- Meteor (full-stack framework)\n- Jasmine (unit and integration testing)\n- Bower (client dependency management)\n  - D3.js (data visualization library) w/ TopoJSON\n\n\u003ch3\u003eMain External Integrations\u003c/h3\u003e\n- Codeship (continuous integration) w/ Docker\n- Kadira (performance monitoring)\n\n\u003ch3\u003eExternal API's Used\u003c/h3\u003e\n- \u003ca href=\"https://msdn.microsoft.com/en-us/library/ff701713.aspx\"\u003eBing Maps REST Services\u003c/a\u003e for traffic data (hourly)\n- \u003ca href=\"http://www.openweathermap.com/api\"\u003eOpenWeatherMap Developers API\u003c/a\u003e for weather data (hourly)\n- \u003ca href=\"https://www.sba.gov/about-sba/sba-performance/sba-data-store/web-service-api/us-city-and-county-web-data-api\"\u003eSBA Web Service API\u003c/a\u003e for coordinates\n\n\u003ch3\u003eCompiled City Data Structure\u003c/h3\u003e\n```javascript\n{\n  city: [string],\n  latitude: [number],\n  longitude: [number],\n  state: [string],\n  boundingBox: {\n    northLatitude: [number],\n    southLatitude: [number],\n    westLongitude: [number],\n    eastLongitude: [number]\n  },\n  trafficData: {\n    severityAvg: [number],\n    incidentTypesOrdered: [\n      { type: \"construction\", val: [number] },\n      { type: \"miscellaneous\", val: [number] },\n      { type: \"other news\", val: [number] },\n      { type: \"mass transit\", val: [number] },\n      { type: \"accident\", val: [number] },\n      { type: \"congestion\", val: [number] },\n      { type: \"planned event\", val: [number] },\n      { type: \"road hazard\", val: [number] },\n      { type: \"disabled vehicle\", val: [number] },\n      { type: \"alert\", val: [number] },\n      { type: \"weather\", val: [number] },\n    ]\n  },\n  weatherData: {\n    cloudPercent: [number],\n    description: [string],\n    humidityPercent: [number],\n    main: [string],\n    temperature: [number],\n    windSpeed: [number]\n  }\n}\n```\n\n\u003ch3\u003eCities Being Tracked\u003c/h3\u003e\n```javascript\ncities: [\n    { city: 'New York', state: 'NY' },\n    { city: 'Los Angeles', state: 'CA' },\n    { city: 'Chicago', state: 'IL' },\n    { city: 'Houston', state: 'TX' },\n    { city: 'Philadelphia', state: 'PA' },\n    { city: 'Phoenix', state: 'AZ' },\n    { city: 'San Antonio', state: 'TX' },\n    { city: 'San Diego', state: 'CA' },\n    { city: 'Dallas', state: 'TX' },\n    { city: 'San Jose', state: 'CA' },\n    { city: 'Austin', state: 'TX' },\n    { city: 'Indianapolis', state: 'IN' },\n    { city: 'Jacksonville', state: 'FL' },\n    { city: 'San Francisco', state: 'CA' },\n    { city: 'Columbus', state: 'OH' },\n    { city: 'Charlotte', state: 'NC' },\n    { city: 'Fort Worth', state: 'TX' },\n    { city: 'Detroit', state: 'MI' },\n    { city: 'El Paso', state: 'TX' },\n    { city: 'Memphis', state: 'TN' },\n    { city: 'Seattle', state: 'WA' },\n    { city: 'Denver', state: 'CO' },\n    { city: 'Washington', state: 'MD' }, // exception\n    { city: 'Boston', state: 'MA' },\n    { city: 'Nashville', state: 'TN' },\n    { city: 'Baltimore', state: 'MD' },\n    { city: 'Oklahoma City', state: 'OK' },\n    { city: 'Louisville', state: 'KY' },\n    { city: 'Portland', state: 'OR' },\n    { city: 'Las Vegas', state: 'NV' },\n    { city: 'Milwaukee', state: 'WI' },\n    { city: 'Albuquerque', state: 'NM' },\n    { city: 'Fresno', state: 'CA' },\n    { city: 'Sacramento', state: 'CA' },\n    { city: 'Long Beach', state: 'CA' },\n    { city: 'Kansas City', state: 'MO' },\n    { city: 'Mesa', state: 'AZ' },\n    { city: 'Virginia Beach', state: 'VA' },\n    { city: 'Atlanta', state: 'GA' },\n    { city: 'Colorado Springs', state: 'CO' },\n    { city: 'Omaha', state: 'NE' },\n    { city: 'Raleigh', state: 'NC' },\n    { city: 'Miami', state: 'FL' },\n    { city: 'Oakland', state: 'CA' },\n    { city: 'Minneapolis', state: 'MN' },\n    { city: 'Tulsa', state: 'OK' },\n    { city: 'Cleveland', state: 'OH' },\n    { city: 'Wichita', state: 'KS' },\n    { city: 'Arlington', state: 'TX' }\n]\n```\n\n\u003ch3\u003eLatest Screenshot\u003c/h3\u003e\n\u003ci\u003eApril 19, 2015\u003c/i\u003e\n\n\u003cimg src=\"http://i57.tinypic.com/10fdu10.jpg\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbmoz%2Fwandt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbbmoz%2Fwandt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbmoz%2Fwandt/lists"}