- Data Central
- 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.
Assumption Parish, Louisiana power outages in last 15 days
Total tracked customers: 10,363
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 Advocate is making this page free to read. To support important local journalism like this, please consider becoming a digital subscriber.
Power outages in Louisiana
Area | % of power outage | Number of outages reported | Number of customers tracked |
---|---|---|---|
Louisiana | 0.1 | 1,944 | 2,247,521 |
Tangipahoa Parish, LA | 1.3 | 962 | 72,072 |
Sabine Parish, LA | 0.2 | 36 | 19,020 |
St. Helena Parish, LA | 0.2 | 11 | 7,083 |
Washington Parish, LA | 0.2 | 40 | 25,180 |
Caddo Parish, LA | 0.1 | 155 | 119,180 |
Jefferson Parish, LA | 0.1 | 253 | 211,187 |
Livingston Parish, LA | 0.1 | 45 | 71,854 |
Orleans Parish, LA | 0.1 | 179 | 195,402 |
St. Tammany Parish, LA | 0.1 | 202 | 138,885 |
Ascension Parish, LA | 0.0 | 1 | 59,810 |
Avoyelles Parish, LA | 0.0 | 2 | 22,116 |
Beauregard Parish, LA | 0.0 | 1 | 20,633 |
Calcasieu Parish, LA | 0.0 | 1 | 101,201 |
Caldwell Parish, LA | 0.0 | 1 | 6,209 |
Concordia Parish, LA | 0.0 | 1 | 4,996 |
De Soto Parish, LA | 0.0 | 4 | 15,151 |
East Baton Rouge Parish, LA | 0.0 | 10 | 219,082 |
Evangeline Parish, LA | 0.0 | 1 | 18,051 |
Grant Parish, LA | 0.0 | 1 | 10,648 |
Iberville Parish, LA | 0.0 | 1 | 9,179 |
Natchitoches Parish, LA | 0.0 | 4 | 13,337 |
Ouachita Parish, LA | 0.0 | 7 | 81,165 |
Rapides Parish, LA | 0.0 | 1 | 46,259 |
Richland Parish, LA | 0.0 | 1 | 8,978 |
St. Charles Parish, LA | 0.0 | 2 | 22,536 |
St. James Parish, LA | 0.0 | 1 | 9,787 |
St. John the Baptist Parish, LA | 0.0 | 6 | 19,153 |
St. Landry Parish, LA | 0.0 | 1 | 47,734 |
St. Martin Parish, LA | 0.0 | 1 | 26,202 |
St. Mary Parish, LA | 0.0 | 1 | 19,058 |
Vernon Parish, LA | 0.0 | 10 | 24,412 |
West Baton Rouge Parish, LA | 0.0 | 1 | 13,345 |
West Feliciana Parish, LA | 0.0 | 1 | 6,447 |
Related Databaes
'; popupContent += '
'; return popupContent; } mapboxgl.accessToken = 'pk.eyJ1IjoieXB5dW4iLCJhIjoiY2oxcW4ybWhxMDBkMjJxcGVhbDV5cnpzYyJ9.oFQSnOc57xCR7A51OR6-3w'; var map = new mapboxgl.Map({container: 'map', style: 'mapbox://styles/ypyun/ck0flqufl2k1x1cpmupm5sl2y', center: [-82.4013, 40.0581], 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(72.0); document.getElementById('slider').addEventListener('input', function(e) { var time = parseInt(e.target.value, 10); filterBy(time); }); }); }); var bounds = new mapboxgl.LngLatBounds(); // var BounceLine = US22007; BounceLine.forEach(function(Tpolygon) { Tpolygon.forEach(function(Tline){ Tline.forEach(function(Tpoint){bounds.extend(Tpoint); }) }) }); map.fitBounds(bounds, { padding: 110 });