- Your life in data
- Power Outages
Search
As severe weather or blizzards threaten, this database aggregates power outage information from more than 1,000 companies nationwide. It will automatically update every 15 minutes.
Genesee County, Michigan power outages in last 15 days
Total tracked customers: 509,278
Power outages in last 72 hours
View the map as of
% of Power Outages
More than 80%
75-80%
70-75%
65-70%
60-65%
55-60%
50-55%
45-50%
40-45%
35-40%
30-35%
25-30%
20-25%
15-20%
10-15%
Less than 10%
0%
% of Power Outages
100%
Source: Utility companies' power outage maps
To provide our community with important public safety information, the USA Today is making this page free to read. To support important local journalism like this, please consider becoming a digital subscriber.
Power outages in Michigan
Area | % of power outage | Number of outages reported | Number of customers tracked |
---|---|---|---|
Michigan | 0.0 | 1,819 | 6,178,647 |
Saginaw County, MI | 0.5 | 1,078 | 238,618 |
Ionia County, MI | 0.4 | 121 | 29,201 |
Alcona County, MI | 0.2 | 60 | 29,674 |
Wexford County, MI | 0.1 | 23 | 32,240 |
Allegan County, MI | 0.0 | 6 | 70,303 |
Berrien County, MI | 0.0 | 23 | 86,630 |
Cass County, MI | 0.0 | 4 | 24,216 |
Clinton County, MI | 0.0 | 3 | 45,858 |
Genesee County, MI | 0.0 | 15 | 509,278 |
Grand Traverse County, MI | 0.0 | 2 | 76,703 |
Hillsdale County, MI | 0.0 | 3 | 21,223 |
Huron County, MI | 0.0 | 4 | 21,912 |
Ingham County, MI | 0.0 | 41 | 341,512 |
Iron County, MI | 0.0 | 2 | 8,470 |
Jackson County, MI | 0.0 | 5 | 85,226 |
Kalamazoo County, MI | 0.0 | 9 | 139,996 |
Kent County, MI | 0.0 | 129 | 327,177 |
Lapeer County, MI | 0.0 | 4 | 42,830 |
Leelanau County, MI | 0.0 | 2 | 18,784 |
Livingston County, MI | 0.0 | 6 | 95,629 |
Macomb County, MI | 0.0 | 47 | 403,504 |
Marquette County, MI | 0.0 | 1 | 35,282 |
Mason County, MI | 0.0 | 4 | 20,479 |
Monroe County, MI | 0.0 | 4 | 77,824 |
Muskegon County, MI | 0.0 | 38 | 97,070 |
Oakland County, MI | 0.0 | 18 | 629,835 |
Ottawa County, MI | 0.0 | 4 | 141,255 |
St. Clair County, MI | 0.0 | 29 | 79,825 |
Sanilac County, MI | 0.0 | 4 | 22,483 |
Shiawassee County, MI | 0.0 | 4 | 83,198 |
Tuscola County, MI | 0.0 | 1 | 27,904 |
Washtenaw County, MI | 0.0 | 25 | 182,328 |
Wayne County, MI | 0.0 | 100 | 800,424 |
Related Databaes
'; popupContent += '
'; return popupContent; } mapboxgl.accessToken = 'pk.eyJ1IjoieXB5dW4iLCJhIjoiY2oxcW4ybWhxMDBkMjJxcGVhbDV5cnpzYyJ9.oFQSnOc57xCR7A51OR6-3w'; var map = new mapboxgl.Map({container: 'map', style: 'mapbox://styles/ypyun/ck0flqufl2k1x1cpmupm5sl2y', center: [-77.3165, 38.8236], zoom: 5, attributionControl: false, }); map.addControl(new mapboxgl.AttributionControl({ compact: true })); var mapcr = [ "step", ["get", "c"], '#ffffff',1,'#f1d2ca',2,'#edc7bd',3,'#e9bcb0',4,'#e5b1a4',5,'#e0a697',6,'#db9b8b',7,'#d6907f',8,'#d18573',9,'#cb7a67',10,'#c56f5c',15,'#bf6451',20,'#b95945',25,'#b24e3a',30,'#ac4330',35,'#a53725',40,'#9e2a1a',45,'#961b0f',50,'#8f0303',55,'#820408',60,'#75060b',65,'#68080d',70,'#5b0a0e',75,'#4e0c0e',80,'#410c0e',85,'#340c0c',90,'#280b09',95,'#1d0605',]; map.on('load', function () { var layers = map.getStyle().layers; var firstSymbolId; for (var i = 0; i < layers.length; i++) { if (layers[i].type === 'symbol') { firstSymbolId = layers[i].id; break; } } d3.json('', function(err, data) { map.addLayer({ "id": "StormPowerOutages", "type": "fill", "source": { "type": "geojson", "data":PowerOutagesJSON }, "paint": {'fill-color':mapcr, 'fill-opacity':0.8, 'fill-outline-color': '#CCC', }}, firstSymbolId); map.on('click', 'StormPowerOutages', function (e) {new mapboxgl.Popup({ offset: 14 }).setLngLat(e.lngLat).setHTML(onGonFeature(e.features[0])).addTo(map);}); map.on('mouseenter', 'StormPowerOutages', function () {map.getCanvas().style.cursor = 'pointer'; }); map.on('mouseleave', 'StormPowerOutages', function () {map.getCanvas().style.cursor = '';}); filterBy(71.0); document.getElementById('slider').addEventListener('input', function(e) { var time = parseInt(e.target.value, 10); filterBy(time); }); }); }); var bounds = new mapboxgl.LngLatBounds(); // var BounceLine = US26049; BounceLine.forEach(function(Tpolygon) { Tpolygon.forEach(function(Tline){ Tline.forEach(function(Tpoint){bounds.extend(Tpoint); }) }) }); map.fitBounds(bounds, { padding: 110 });