Skip to content

Instantly share code, notes, and snippets.

@measrainsey
Created January 29, 2020 23:46
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
US Nuclear Generating Capacity Map

US Nuclear Generating Capacity Map

This Github repository all relevant code used to create an interactive map of US nuclear generating capacity. See the full blog post describing the map here.

.chroniton {
font: 10px sans-serif;
outline:none;
}
.chroniton .play-button {
fill:#444;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis, .slider text {
-webkit-user-select:none;
-moz-user-select:none;
user-select:none;
}
.x.axis path.domain {
stroke-width:10;
stroke-linecap:round;
stroke:#ddd;
}
.x.axis path.halo {
stroke-width:12;
stroke-linecap:round;
stroke:#ccc;
}
.tick line {
stroke:#d0d0d0;
stroke-width:1;
transform:translate(0px, -5px);
}
.slider .handle {
fill: #fff;
stroke-width:1;
stroke:#333;
}
.slider .handle, .slider text {
cursor: move;
cursor: -webkit-grab;
transition:fill 200ms ease-in-out;
}
.handle:active, .slider text:active {
cursor: move;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
.slider.brushing .handle {
fill: #eee;
}
.label {
font:bold 12px sans-serif;
}
var handleRadius = 6,
handleHeight = 8,
caretHeight = 5,
handleD = 'M' + [
-handleRadius, -handleHeight,
handleRadius, -handleHeight,
handleRadius, handleHeight - caretHeight,
0, handleHeight,
-handleRadius, handleHeight - caretHeight,
-handleRadius, -handleHeight].join(','),
playWidth = 10,
playD = 'M' + [
0, 0,
playWidth/1.2, playWidth/2,
0, playWidth,
0, 0].join(','),
pauseD = 'M' + [
0, 0,
playWidth/3, 0,
playWidth/3, playWidth,
0, playWidth
].join(',') + 'Z M' + [
(playWidth / 2) + 0, 0,
(playWidth / 2) + playWidth/3, 0,
(playWidth / 2) + playWidth/3, playWidth,
(playWidth / 2) + 0, playWidth
].join(',');
function chroniton() {
var margin = {top: 10, right: 20, bottom: 20, left: 20},
domain = [new Date('1/1/2000'), new Date()],
width = 660,
height = 50,
// configurable options
keybindings = true,
playButton = false,
play = false,
noLabel = false,
loop = false,
playbackRate = 1,
// internal state
playLastTick = null,
labelFormat = d3.time.format("%Y-%m-%d"),
// scales
xScale = d3.time.scale().clamp(true),
xAxis = d3.svg.axis()
.scale(xScale)
.orient('bottom')
.tickSize(10, 0),
brush = d3.svg.brush(),
events = d3.dispatch('change', 'setValue');
function chart(selection) {
if (selection instanceof HTMLElement) selection = d3.select(selection);
selection.each(function() {
if (playButton) { margin.left = 30; }
if (noLabel) { margin.top = 0; }
xScale
.domain(domain)
.range([0, width - margin.left - margin.right]);
brush.x(xScale)
.extent([domain[0], domain[0]])
.on('brush', brushed);
var svg = d3.select(this)
.selectAll('svg').data([0]);
var gEnter = svg.enter()
.append('svg')
.attr('class', 'chroniton')
.attr('tabindex', 1) // make this element focusable
.on('keydown', keydown)
.append('g');
gEnter
.append('g')
.attr('class', 'x axis');
svg .attr('width', width)
.attr('height', height);
var g = svg.select('g')
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
g.select('.x.axis')
.attr('transform', 'translate(0,' + (height - margin.bottom - margin.top) + ')')
.call(xAxis);
var domainNode = g.select('.x.axis .domain')
.remove()
.node();
var axisNode = g.select('.x.axis').node();
axisNode.insertBefore(domainNode, axisNode.childNodes[0]);
g.select('.domain')
.select(function() { return this.parentNode.insertBefore(this.cloneNode(true), this.parentNode.childNodes[0]); })
.attr('class', 'halo');
g.select('.x.axis .domain')
.on('click', function() {
setValue(xScale.invert(d3.mouse(this)[0]));
});
if (playButton) {
var playButtonG = svg.append('g')
.attr('transform', 'translate(' + [8, margin.top + 13] + ')');
var playIcon = playButtonG.append('path')
.attr('transform', 'translate(2, 2)')
.attr('d', playD)
.attr('class', 'play-button');
var playRect = playButtonG.append('rect')
.attr('fill', 'none')
.attr('pointer-events', 'visible')
.attr('width', 15)
.attr('height', 15)
.on('click', function() {
chart.playPause();
playIcon.attr('d', chart.playing() ? pauseD : playD);
});
}
var slider = g.append('g')
.attr('class', 'slider')
.attr('transform', 'translate(' + [0, height - margin.bottom - margin.top + 2] + ')')
.call(brush);
var handle = slider.append('path')
.attr('d', handleD)
.attr('class', 'handle');
var textG = slider.append('g')
.attr('transform', 'translate(0, -35)');
var labelText = textG
.append('text')
.attr('class', 'label');
slider.call(brush.event);
brush.on('brushstart', function() {
slider.classed('brushing', true);
}).on('brushend', function() {
slider.classed('brushing', false);
});
function setValue(value, transition) {
var v = new Date(Math.min(Math.max(+domain[0], +value), +domain[1]));
var s = slider;
if (transition) {
s = slider.transition();
if (transition.ease) s.ease(transition.ease);
if (transition.duration) s.duration(transition.duration);
}
s.call(brush.extent([v, v]))
.call(brush.event);
}
events.on('setValue', setValue);
function brushed() {
var value = brush.extent()[0];
if (d3.event && d3.event.sourceEvent &&
d3.event.sourceEvent.type !== 'keydown') { // not a programmatic event
value = xScale.invert(d3.mouse(this)[0]);
brush.extent([value, value]);
}
handle.attr('transform', function(d) {
return 'translate(' + [xScale(value), 0] + ')';
});
labelText
.text(labelFormat(value))
.attr('text-anchor', 'left');
var textRadius = labelText.node().getComputedTextLength() / 2,
leftEdge = xScale(value) - textRadius,
rightEdge = xScale(value) + textRadius;
labelText.attr('transform', function(d) {
if (leftEdge < -margin.left) {
return 'translate(' + [-margin.left, 20] + ')';
} else if (rightEdge > width - margin.left) {
return 'translate(' + [width - margin.left - textRadius * 2, 20] + ')';
} else {
return 'translate(' + [xScale(value) - textRadius, 20] + ')';
}
});
events.change(value);
}
});
}
function jumpSize() { return +xScale.invert(10) - domain[0]; }
function ticker() {
if (!play) return;
var now = new Date().getTime();
if (playLastTick === null) playLastTick = now;
var playSinceLastTick = now - playLastTick,
tenthPx = (+xScale.invert(0.1) - +domain[0]) * playbackRate,
increment = playSinceLastTick * tenthPx;
chart.setValue(new Date(+brush.extent()[0] + increment));
playLastTick = now;
if (loop && chart.isAtEnd()) chart.setValue(domain[0]);
}
function keydown() {
if (!keybindings) return;
// right
switch (d3.event.which) {
case 39:
setValue(new Date(+brush.extent()[0] + jumpSize()));
d3.event.preventDefault();
break;
case 37:
setValue(new Date(+brush.extent()[0] - jumpSize()));
d3.event.preventDefault();
break;
}
}
chart.playbackRate = function(_) {
if (!arguments.length) return playbackRate;
if (typeof _ !== 'number') throw new Error('argument must be a number of pixels per second');
playbackRate = _;
return chart;
};
chart.play = function() {
play = true;
return chart;
};
chart.playing = function() {
return play;
};
chart.playPause = function() {
if (play) chart.pause();
else chart.play();
return chart;
};
chart.pause = function() {
playLastTick = null;
play = false;
return chart;
};
chart.stop = function() {
chart.pause();
chart.setValue(domain[0]);
return chart;
};
chart.loop = function(_) {
if (!arguments.length) return loop;
if (typeof _ !== 'boolean') throw new Error('argument must be a boolean for whether to loop');
loop = _;
return chart;
};
chart.width = function(_) {
if (!arguments.length) return width;
width = _;
xScale
.domain(domain)
.range([0, width - margin.left - margin.right]);
return chart;
};
chart.tapAxis = function(_) {
_(xAxis);
if (typeof _ !== 'function') throw new Error('argument must be a function');
return chart;
};
chart.height = function(_) {
if (!arguments.length) return height;
if (typeof _ !== 'number') throw new Error('argument must be a numeric width');
height = _;
return chart;
};
chart.domain = function(_) {
if (!arguments.length) return domain;
domain = _;
xScale
.domain(domain)
.range([0, width - margin.left - margin.right]);
return chart;
};
chart.labelFormat = function(_) {
if (!_) return labelFormat;
if (typeof _ !== 'function') throw new Error('argument must be a label formatter function');
noLabel = false;
margin.top = 10;
height = 50;
labelFormat = _;
return chart;
};
chart.hideLabel = function() {
labelFormat = d3.functor('');
noLabel = true;
margin.top = 0;
height = 27;
return chart;
};
chart.getValue = function() {
return brush.extent()[0];
};
chart.isAtStart = function() {
return +brush.extent()[0] === +domain[0];
};
chart.isAtEnd = function() {
return +brush.extent()[0] === +domain[1];
};
chart.getScale = function() {
return xScale.copy();
};
chart.getMargin = function() {
return JSON.parse(JSON.stringify(margin));
};
chart.setValue = function(_, transition) {
events.setValue(_, transition);
return chart;
};
chart.playButton = function(_) {
if (_ === undefined) return playButton;
if (typeof _ !== 'boolean') throw new Error('argument must be a boolean setting');
playButton = _;
return chart;
};
chart.keybindings = function(_) {
if (_ === undefined) return keybindings;
if (typeof _ !== 'boolean') throw new Error('argument must be a boolean setting');
keybindings = _;
return chart;
};
var timer = d3.timer(ticker);
var bound = d3.rebind(chart, events, 'on');
return bound;
}
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: 'Roboto Condensed', sans-serif;
/* font: 14px/16px "Helvetica Neue", Helvetica, Arial, sans-serif; */
}
h1, h2 {
font-family: 'Roboto Condensed', sans-serif;
text-align: center;
font-weight: normal;
}
h1{
font-family: 'Roboto Condensed', sans-serif;
font-size: 30px;
margin: 20px;
color: #1a1a1a;
}
h2{
font-size: 18px;
color: #999;
margin: 15px;
}
.states {
fill: #ddd;
stroke: #fff;
}
.symbol{
fill: #33aa89;
stroke: #fff;
opacity: 0.65;
stroke-width: .5px;
}
.symbol:hover {
stroke: #000;
fill-opacity: 1;
stroke-width: 1px;
stroke-width: .5px;
}
.symbol--gain{
fill: #67a9cf;
stroke: #fff;
stroke-width: .5px;
fill-opacity: .65;
stroke-opacity: 1;
}
.symbol--loss{
fill: #ef8a62;
stroke: #fff;
stroke-width: .5px;
fill-opacity: .65;
stroke-opacity: 1;
}
div.tooltip {
position: absolute;
background-color: white;
text-align: center;
padding: 10px;
font-size: 12px;
border: 1px solid #ccc;
border-radius: 5px;
pointer-events: none;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.25);
}
#label{
position: absolute;
font-family: 'Roboto Condensed', sans-serif;
bottom: 511px;
left: 270px;
color: #333;
font-size: 30px;
}
#label p{
margin: 0;
}
#source{
color: #999;
font-size: 12px;
/* position: relative;*/
text-align: center;
/* margin-left: 60px;*/
padding-top: 0px;
padding-bottom: 2px;
}
#slider {
position: relative;
text-align: center;
}
/*
#slider {
position: fixed;
left: 300px;
bottom: 520px;
width: 600px;
}
*/
</style>
<head>
<link rel="stylesheet" href="css/main.css" />
<title>US Nuclear Generating Capacity</title>
</head>
<body>
<!-- <h1>U.S. Nuclear Generation in <span id="year">1968</span></h1> -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<h1>U.S. Nuclear Generating Capacity (1968-2028)</h1>
<!--<p id="source">Source: U.S. Energy Information Administration</p> -->
<!-- <p id="label"></p> -->
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="chroniton.js"></script>
<link href="chroniton.css" rel="stylesheet">
<div id="slider"></div>
<script>
var plants = {},
startYear = 1968,
endYear = 2028,
currentYear = startYear;
var width = 1200,
height = 500;
//var width = window.innerWidth-100,
// height = window.innerHeight-100;
var projection = d3.geo.albersUsa()
.scale(980)
.translate( [width/2, height/2-20] );
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("body")
.append("svg")
.attr("width", width)
.attr("height", height);
var radius = function(d) { return (Math.abs(d.net_capacity))/70;}
var div = d3.select("body")
.append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var g = svg.append("g");
g.append( "rect" )
.attr("width",width)
.attr("height",height)
.attr("fill","white")
.attr("opacity",0)
.on("mouseover",function(){
hoverData = null;
if ( probe ) probe.style("display","none");
})
queue()
.defer(d3.json, "us.json")
.defer(d3.csv, "nuclear_capacity.csv")
.await(ready);
function ready(error, us, sequence) {
if (error) throw error;
svg.append("path")
.attr("class", "states")
.datum(topojson.feature(us, us.objects.states))
.attr("d", path);
function update(y,tween) {
circle = svg.selectAll("circle")
.data(sequence.filter(function(d) { return d.year == y; })
.sort(function (a,b) {return d3.descending(a.order, b.order);})
)
circle
.enter()
.append("circle")
if ( tween ){
circle
.transition()
.ease("linear")
.duration(500)
.attr("class", function(d) { return "symbol symbol--" + (d.net_capacity < 0 ? "loss" : "gain"); })
.attr("r", radius );
} else {
circle
.attr("class", function(d) { return "symbol symbol--" + (d.net_capacity < 0 ? "loss" : "gain"); })
.attr("r", radius );
}
circle
.attr("cx", function(d) {
return projection([d.longitude, d.latitude])[0];})
.attr("cy", function(d) {
return projection([d.longitude, d.latitude])[1];})
.attr("vector-effect","non-scaling-stroke")
.on("mouseover", function(d) {
div.transition()
.style("left", (d3.event.pageX + 10) + "px")
.style("top", (d3.event.pageY - 80) + "px")
.duration(200)
.style("opacity", .9);
div.html("<strong>" + d.plant_name + "</strong><br/>" +
(d.net_capacity < 0 ? Math.abs(d.net_capacity) + " MW lost" + "<br/>" + Math.abs( d.op_capacity ) + " MW operating" : Math.abs( d.op_capacity ) + " MW operating") +
"<br/>" + d.city + ", " + d.state)
})
.on("mouseout", function(d) {
div.transition()
.duration(500)
.style("opacity", 0);
});
d3.select("#label").html(currentYear);
}
update(currentYear,false)
d3.select("#slider")
.call(
chroniton()
.domain([new Date(startYear, 1, 1), new Date(endYear, 1, 1)])
.labelFormat(function(date) {
return Math.ceil((date.getFullYear()) / 1) * 1;
})
.width(600)
.on('change', function(date) {
var newYear = Math.ceil((date.getFullYear()) / 1) * 1;
if (newYear != currentYear) {
currentYear = newYear;
// circle
// .remove();
update(currentYear,true);
}
})
.playButton(true)
.playbackRate(0.2)
.loop(true)
);
var legend = svg.append("g")
.attr("id","legend")
.attr("transform", "translate(" + (width - 260) + "," + (height - 185) + ")");
legend.append("circle")
.attr("class","symbol symbol--gain")
.attr("r",5)
.attr("cx",5)
.attr("cy",10);
legend.append("circle")
.attr("class","symbol symbol--loss")
.attr("r",5)
.attr("cx",5)
.attr("cy",30);
legend.append("text").text("Capacity added").attr("x",15).attr("y",13).style("font-size","12px");
legend.append("text").text("Capacity lost").attr("x",15).attr("y",33).style("font-size","12px");
var sizes = [ 1000, 3000, 4000 ];
for ( var i in sizes ){
legend.append("circle")
.attr( "r", ( sizes[i] )/70 )
.attr( "cx", 125 + ( sizes[sizes.length-1] )/70 )
.attr( "cy", 1.5 * ( sizes[sizes.length-1] )/70 - ( sizes[i] )/70 )
.attr("vector-effect","non-scaling-stroke")
.style("stroke", "#ccc")
.style("fill", "none");
legend.append("text")
.text( (sizes[i] / 1000) + "GW" + (i == sizes.length-1 ? "" : "") )
.attr( "text-anchor", "middle" )
.attr( "x", 125 + ( sizes[sizes.length-1] )/70 )
.attr( "y", 2 * ( ( sizes[sizes.length-1] )/70 - ( sizes[i] )/70 ) - 20 )
.attr( "dy", 10)
.style("font-size","10px");
}
}
</script>
year plant_code plant_name capacity op_capacity net_capacity city state latitude longitude order
1968 46 Browns Ferry 0.0 0.0 0.0 Decatur AL 34.7042 -87.1189 63
1969 46 Browns Ferry 0.0 0.0 0.0 Decatur AL 34.7042 -87.1189 63
1970 46 Browns Ferry 0.0 0.0 0.0 Decatur AL 34.7042 -87.1189 63
1971 46 Browns Ferry 0.0 0.0 0.0 Decatur AL 34.7042 -87.1189 63
1972 46 Browns Ferry 0.0 0.0 0.0 Decatur AL 34.7042 -87.1189 63
1973 46 Browns Ferry 0.0 0.0 0.0 Decatur AL 34.7042 -87.1189 63
1974 46 Browns Ferry 1152.0 1152.0 1152.0 Decatur AL 34.7042 -87.1189 63
1975 46 Browns Ferry 1152.0 2304.0 2304.0 Decatur AL 34.7042 -87.1189 63
1976 46 Browns Ferry 0.0 2304.0 2304.0 Decatur AL 34.7042 -87.1189 63
1977 46 Browns Ferry 1190.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1978 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1979 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1980 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1981 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1982 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1983 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1984 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1985 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1986 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1987 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1988 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1989 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1990 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1991 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1992 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1993 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1994 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1995 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1996 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1997 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1998 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1999 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2000 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2001 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2002 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2003 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2004 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2005 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2006 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2007 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2008 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2009 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2010 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2011 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2012 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2013 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2014 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2015 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2016 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2017 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2018 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2019 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2020 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2021 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2022 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2023 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2024 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2025 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2026 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2027 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
2028 46 Browns Ferry 0.0 3494.0 3494.0 Decatur AL 34.7042 -87.1189 63
1968 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1969 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1970 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1971 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1972 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1973 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1974 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1975 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1976 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1977 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1978 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1979 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1980 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1981 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1982 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1983 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1984 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1985 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1986 204 Clinton Power Station 0.0 0.0 0.0 Clinton IL 40.1719 -88.8339 19
1987 204 Clinton Power Station 1138.3 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1988 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1989 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1990 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1991 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1992 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1993 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1994 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1995 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1996 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1997 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1998 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1999 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2000 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2001 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2002 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2003 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2004 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2005 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2006 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2007 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2008 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2009 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2010 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2011 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2012 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2013 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2014 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2015 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2016 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2017 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2018 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2019 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2020 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2021 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2022 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2023 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2024 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2025 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2026 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2027 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
2028 204 Clinton Power Station 0.0 1138.3 1138.3 Clinton IL 40.1719 -88.8339 19
1968 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1969 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1970 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1971 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1972 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1973 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1974 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1975 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1976 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1977 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1978 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1979 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1980 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1981 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1982 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1983 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1984 210 Wolf Creek Generating Station 0.0 0.0 0.0 Burlington KS 38.23926 -95.68978 26
1985 210 Wolf Creek Generating Station 1267.7 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1986 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1987 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1988 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1989 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1990 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1991 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1992 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1993 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1994 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1995 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1996 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1997 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1998 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1999 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2000 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2001 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2002 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2003 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2004 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2005 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2006 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2007 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2008 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2009 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2010 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2011 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2012 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2013 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2014 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2015 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2016 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2017 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2018 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2019 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2020 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2021 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2022 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2023 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2024 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2025 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2026 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2027 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
2028 210 Wolf Creek Generating Station 0.0 1267.7 1267.7 Burlington KS 38.23926 -95.68978 26
1968 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1969 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1970 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1971 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1972 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1973 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1974 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1975 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1976 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1977 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1978 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1979 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1980 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1981 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1982 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1983 371 Columbia Generating Station 0.0 0.0 0.0 Richland WA 46.4711 -119.3339 22
1984 371 Columbia Generating Station 1200.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1985 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1986 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1987 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1988 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1989 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1990 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1991 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1992 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1993 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1994 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1995 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1996 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1997 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1998 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1999 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2000 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2001 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2002 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2003 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2004 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2005 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2006 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2007 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2008 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2009 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2010 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2011 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2012 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2013 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2014 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2015 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2016 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2017 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2018 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2019 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2020 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2021 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2022 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2023 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2024 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2025 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2026 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2027 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
2028 371 Columbia Generating Station 0.0 1200.0 1200.0 Richland WA 46.4711 -119.3339 22
1968 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1969 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1970 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1971 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1972 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1973 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1974 566 Millstone 0.0 0.0 0.0 Waterford CT 41.3107 -72.1677 45
1975 566 Millstone 909.9 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1976 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1977 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1978 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1979 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1980 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1981 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1982 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1983 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1984 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1985 566 Millstone 0.0 909.9 909.9 Waterford CT 41.3107 -72.1677 45
1986 566 Millstone 1253.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1987 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1988 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1989 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1990 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1991 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1992 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1993 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1994 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1995 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1996 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1997 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1998 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1999 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2000 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2001 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2002 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2003 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2004 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2005 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2006 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2007 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2008 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2009 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2010 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2011 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2012 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2013 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2014 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2015 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2016 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2017 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2018 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2019 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2020 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2021 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2022 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2023 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2024 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2025 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2026 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2027 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
2028 566 Millstone 0.0 2162.9 2162.9 Waterford CT 41.3107 -72.1677 45
1968 621 Turkey Point 0.0 0.0 0.0 Homestead FL 25.4356 -80.3308 32
1969 621 Turkey Point 0.0 0.0 0.0 Homestead FL 25.4356 -80.3308 32
1970 621 Turkey Point 0.0 0.0 0.0 Homestead FL 25.4356 -80.3308 32
1971 621 Turkey Point 0.0 0.0 0.0 Homestead FL 25.4356 -80.3308 32
1972 621 Turkey Point 877.2 877.2 877.2 Homestead FL 25.4356 -80.3308 32
1973 621 Turkey Point 760.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1974 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1975 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1976 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1977 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1978 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1979 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1980 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1981 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1982 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1983 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1984 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1985 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1986 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1987 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1988 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1989 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1990 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1991 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1992 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1993 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1994 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1995 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1996 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1997 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1998 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1999 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2000 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2001 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2002 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2003 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2004 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2005 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2006 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2007 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2008 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2009 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2010 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2011 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2012 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2013 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2014 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2015 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2016 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2017 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2018 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2019 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2020 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2021 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2022 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2023 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2024 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2025 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2026 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2027 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
2028 621 Turkey Point 0.0 1637.2 1637.2 Homestead FL 25.4356 -80.3308 32
1968 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1969 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1970 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1971 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1972 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1973 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1974 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1975 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1976 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1977 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1978 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1979 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1980 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1981 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1982 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1983 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1984 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1985 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1986 649 Vogtle 0.0 0.0 0.0 Waynesboro GA 33.1427 -81.7625 65
1987 649 Vogtle 1160.0 1160.0 1160.0 Waynesboro GA 33.1427 -81.7625 65
1988 649 Vogtle 0.0 1160.0 1160.0 Waynesboro GA 33.1427 -81.7625 65
1989 649 Vogtle 1160.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1990 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1991 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1992 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1993 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1994 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1995 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1996 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1997 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1998 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
1999 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2000 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2001 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2002 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2003 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2004 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2005 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2006 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2007 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2008 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2009 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2010 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2011 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2012 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2013 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2014 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2015 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2016 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2017 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2018 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2019 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2020 649 Vogtle 0.0 2320.0 2320.0 Waynesboro GA 33.1427 -81.7625 65
2021 649 Vogtle 1100.0 3420.0 3420.0 Waynesboro GA 33.1427 -81.7625 65
2022 649 Vogtle 1100.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
2023 649 Vogtle 0.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
2024 649 Vogtle 0.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
2025 649 Vogtle 0.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
2026 649 Vogtle 0.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
2027 649 Vogtle 0.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
2028 649 Vogtle 0.0 4520.0 4520.0 Waynesboro GA 33.1427 -81.7625 65
1968 869 Dresden Generating Station 0.0 0.0 0.0 Morris IL 41.39 -88.27 43
1969 869 Dresden Generating Station 0.0 0.0 0.0 Morris IL 41.39 -88.27 43
1970 869 Dresden Generating Station 1009.3 1009.3 1009.3 Morris IL 41.39 -88.27 43
1971 869 Dresden Generating Station 1009.3 2018.6 2018.6 Morris IL 41.39 -88.27 43
1972 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1973 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1974 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1975 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1976 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1977 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1978 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1979 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1980 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1981 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1982 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1983 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1984 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1985 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1986 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1987 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1988 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1989 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1990 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1991 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1992 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1993 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1994 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1995 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1996 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1997 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1998 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1999 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2000 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2001 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2002 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2003 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2004 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2005 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2006 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2007 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2008 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2009 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2010 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2011 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2012 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2013 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2014 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2015 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2016 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2017 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2018 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2019 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2020 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2021 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2022 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2023 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2024 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2025 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2026 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2027 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
2028 869 Dresden Generating Station 0.0 2018.6 2018.6 Morris IL 41.39 -88.27 43
1968 880 Quad Cities Generating Station 0.0 0.0 0.0 Cordova IL 41.726111 -90.310278 42
1969 880 Quad Cities Generating Station 0.0 0.0 0.0 Cordova IL 41.726111 -90.310278 42
1970 880 Quad Cities Generating Station 0.0 0.0 0.0 Cordova IL 41.726111 -90.310278 42
1971 880 Quad Cities Generating Station 0.0 0.0 0.0 Cordova IL 41.726111 -90.310278 42
1972 880 Quad Cities Generating Station 2018.6 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1973 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1974 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1975 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1976 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1977 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1978 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1979 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1980 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1981 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1982 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1983 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1984 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1985 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1986 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1987 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1988 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1989 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1990 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1991 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1992 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1993 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1994 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1995 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1996 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1997 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1998 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1999 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2000 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2001 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2002 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2003 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2004 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2005 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2006 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2007 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2008 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2009 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2010 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2011 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2012 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2013 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2014 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2015 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2016 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2017 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2018 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2019 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2020 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2021 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2022 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2023 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2024 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2025 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2026 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2027 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
2028 880 Quad Cities Generating Station 0.0 2018.6 2018.6 Cordova IL 41.726111 -90.310278 42
1968 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1969 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1970 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1971 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1972 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1973 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1974 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1975 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1976 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1977 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1978 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1979 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1980 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1981 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1982 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1983 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1984 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1985 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1986 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1987 1729 Fermi 0.0 0.0 0.0 Frenchtown Twp MI 41.9631 -83.2581 23
1988 1729 Fermi 1217.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1989 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1990 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1991 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1992 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1993 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1994 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1995 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1996 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1997 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1998 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1999 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2000 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2001 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2002 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2003 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2004 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2005 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2006 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2007 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2008 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2009 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2010 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2011 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2012 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2013 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2014 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2015 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2016 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2017 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2018 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2019 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2020 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2021 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2022 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2023 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2024 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2025 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2026 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2027 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
2028 1729 Fermi 0.0 1217.0 1217.0 Frenchtown Twp MI 41.9631 -83.2581 23
1968 1922 Monticello Nuclear Facility 0.0 0.0 0.0 Monticello MN 45.3338 -93.8493 7
1969 1922 Monticello Nuclear Facility 0.0 0.0 0.0 Monticello MN 45.3338 -93.8493 7
1970 1922 Monticello Nuclear Facility 0.0 0.0 0.0 Monticello MN 45.3338 -93.8493 7
1971 1922 Monticello Nuclear Facility 685.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1972 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1973 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1974 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1975 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1976 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1977 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1978 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1979 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1980 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1981 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1982 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1983 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1984 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1985 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1986 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1987 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1988 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1989 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1990 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1991 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1992 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1993 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1994 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1995 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1996 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1997 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1998 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1999 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2000 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2001 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2002 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2003 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2004 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2005 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2006 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2007 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2008 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2009 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2010 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2011 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2012 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2013 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2014 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2015 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2016 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2017 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2018 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2019 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2020 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2021 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2022 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2023 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2024 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2025 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2026 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2027 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
2028 1922 Monticello Nuclear Facility 0.0 685.0 685.0 Monticello MN 45.3338 -93.8493 7
1968 1925 Prairie Island 0.0 0.0 0.0 Welch MN 44.622 -92.6333 20
1969 1925 Prairie Island 0.0 0.0 0.0 Welch MN 44.622 -92.6333 20
1970 1925 Prairie Island 0.0 0.0 0.0 Welch MN 44.622 -92.6333 20
1971 1925 Prairie Island 0.0 0.0 0.0 Welch MN 44.622 -92.6333 20
1972 1925 Prairie Island 0.0 0.0 0.0 Welch MN 44.622 -92.6333 20
1973 1925 Prairie Island 0.0 0.0 0.0 Welch MN 44.622 -92.6333 20
1974 1925 Prairie Island 1186.2 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1975 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1976 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1977 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1978 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1979 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1980 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1981 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1982 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1983 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1984 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1985 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1986 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1987 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1988 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1989 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1990 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1991 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1992 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1993 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1994 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1995 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1996 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1997 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1998 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1999 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2000 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2001 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2002 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2003 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2004 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2005 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2006 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2007 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2008 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2009 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2010 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2011 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2012 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2013 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2014 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2015 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2016 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2017 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2018 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2019 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2020 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2021 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2022 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2023 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2024 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2025 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2026 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2027 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
2028 1925 Prairie Island 0.0 1186.2 1186.2 Welch MN 44.622 -92.6333 20
1968 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1969 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1970 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1971 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1972 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1973 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1974 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1975 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1976 2410 PSEG Salem Generating Station 0.0 0.0 0.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1977 2410 PSEG Salem Generating Station 1170.0 1170.0 1170.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1978 2410 PSEG Salem Generating Station 0.0 1170.0 1170.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1979 2410 PSEG Salem Generating Station 0.0 1170.0 1170.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1980 2410 PSEG Salem Generating Station 0.0 1170.0 1170.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1981 2410 PSEG Salem Generating Station 1170.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1982 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1983 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1984 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1985 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1986 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1987 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1988 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1989 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1990 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1991 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1992 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1993 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1994 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1995 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1996 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1997 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1998 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1999 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2000 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2001 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2002 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2003 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2004 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2005 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2006 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2007 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2008 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2009 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2010 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2011 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2012 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2013 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2014 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2015 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2016 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2017 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2018 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2019 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2020 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2021 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2022 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2023 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2024 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2025 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2026 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2027 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
2028 2410 PSEG Salem Generating Station 0.0 2340.0 2340.0 Hancocks Bridge NJ 39.4625 -75.5358 50
1968 2589 Nine Mile Point Nuclear Station 0.0 0.0 0.0 Lycoming NY 43.5211 -76.41 39
1969 2589 Nine Mile Point Nuclear Station 641.8 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1970 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1971 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1972 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1973 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1974 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1975 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1976 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1977 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1978 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1979 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1980 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1981 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1982 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1983 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1984 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1985 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1986 2589 Nine Mile Point Nuclear Station 0.0 641.8 641.8 Lycoming NY 43.5211 -76.41 39
1987 2589 Nine Mile Point Nuclear Station 1259.3 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1988 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1989 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1990 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1991 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1992 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1993 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1994 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1995 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1996 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1997 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1998 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1999 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2000 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2001 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2002 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2003 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2004 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2005 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2006 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2007 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2008 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2009 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2010 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2011 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2012 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2013 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2014 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2015 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2016 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2017 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2018 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2019 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2020 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2021 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2022 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2023 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2024 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2025 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2026 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2027 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
2028 2589 Nine Mile Point Nuclear Station 0.0 1901.1 1901.1 Lycoming NY 43.5211 -76.41 39
1968 3166 Peach Bottom 0.0 0.0 0.0 Delta PA 39.758936 -76.268742 62
1969 3166 Peach Bottom 0.0 0.0 0.0 Delta PA 39.758936 -76.268742 62
1970 3166 Peach Bottom 0.0 0.0 0.0 Delta PA 39.758936 -76.268742 62
1971 3166 Peach Bottom 0.0 0.0 0.0 Delta PA 39.758936 -76.268742 62
1972 3166 Peach Bottom 0.0 0.0 0.0 Delta PA 39.758936 -76.268742 62
1973 3166 Peach Bottom 0.0 0.0 0.0 Delta PA 39.758936 -76.268742 62
1974 3166 Peach Bottom 2876.4 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1975 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1976 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1977 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1978 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1979 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1980 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1981 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1982 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1983 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1984 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1985 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1986 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1987 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1988 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1989 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1990 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1991 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1992 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1993 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1994 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1995 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1996 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1997 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1998 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1999 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2000 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2001 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2002 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2003 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2004 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2005 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2006 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2007 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2008 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2009 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2010 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2011 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2012 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2013 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2014 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2015 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2016 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2017 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2018 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2019 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2020 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2021 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2022 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2023 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2024 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2025 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2026 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2027 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
2028 3166 Peach Bottom 0.0 2876.4 2876.4 Delta PA 39.758936 -76.268742 62
1968 3251 H B Robinson 0.0 0.0 0.0 Hartsville SC 34.4017 -80.1589 8
1969 3251 H B Robinson 0.0 0.0 0.0 Hartsville SC 34.4017 -80.1589 8
1970 3251 H B Robinson 0.0 0.0 0.0 Hartsville SC 34.4017 -80.1589 8
1971 3251 H B Robinson 768.6 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1972 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1973 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1974 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1975 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1976 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1977 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1978 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1979 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1980 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1981 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1982 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1983 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1984 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1985 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1986 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1987 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1988 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1989 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1990 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1991 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1992 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1993 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1994 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1995 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1996 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1997 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1998 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1999 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2000 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2001 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2002 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2003 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2004 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2005 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2006 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2007 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2008 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2009 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2010 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2011 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2012 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2013 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2014 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2015 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2016 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2017 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2018 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2019 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2020 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2021 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2022 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2023 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2024 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2025 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2026 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2027 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
2028 3251 H B Robinson 0.0 768.6 768.6 Hartsville SC 34.4017 -80.1589 8
1968 3265 Oconee 0.0 0.0 0.0 Seneca SC 34.7939 -82.8986 60
1969 3265 Oconee 0.0 0.0 0.0 Seneca SC 34.7939 -82.8986 60
1970 3265 Oconee 0.0 0.0 0.0 Seneca SC 34.7939 -82.8986 60
1971 3265 Oconee 0.0 0.0 0.0 Seneca SC 34.7939 -82.8986 60
1972 3265 Oconee 0.0 0.0 0.0 Seneca SC 34.7939 -82.8986 60
1973 3265 Oconee 886.7 886.7 886.7 Seneca SC 34.7939 -82.8986 60
1974 3265 Oconee 1780.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1975 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1976 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1977 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1978 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1979 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1980 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1981 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1982 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1983 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1984 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1985 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1986 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1987 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1988 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1989 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1990 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1991 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1992 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1993 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1994 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1995 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1996 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1997 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1998 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1999 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2000 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2001 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2002 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2003 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2004 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2005 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2006 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2007 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2008 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2009 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2010 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2011 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2012 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2013 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2014 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2015 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2016 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2017 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2018 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2019 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2020 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2021 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2022 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2023 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2024 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2025 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2026 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2027 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
2028 3265 Oconee 0.0 2666.7 2666.7 Seneca SC 34.7939 -82.8986 60
1968 3806 Surry 0.0 0.0 0.0 Surry VA 37.1661 -76.6986 33
1969 3806 Surry 0.0 0.0 0.0 Surry VA 37.1661 -76.6986 33
1970 3806 Surry 0.0 0.0 0.0 Surry VA 37.1661 -76.6986 33
1971 3806 Surry 0.0 0.0 0.0 Surry VA 37.1661 -76.6986 33
1972 3806 Surry 847.5 847.5 847.5 Surry VA 37.1661 -76.6986 33
1973 3806 Surry 847.5 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1974 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1975 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1976 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1977 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1978 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1979 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1980 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1981 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1982 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1983 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1984 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1985 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1986 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1987 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1988 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1989 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1990 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1991 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1992 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1993 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1994 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1995 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1996 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1997 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1998 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1999 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2000 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2001 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2002 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2003 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2004 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2005 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2006 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2007 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2008 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2009 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2010 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2011 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2012 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2013 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2014 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2015 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2016 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2017 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2018 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2019 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2020 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2021 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2022 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2023 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2024 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2025 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2026 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2027 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
2028 3806 Surry 0.0 1695.0 1695.0 Surry VA 37.1661 -76.6986 33
1968 4046 Point Beach Nuclear Plant 0.0 0.0 0.0 Two Rivers WI 44.2806 -87.5369 27
1969 4046 Point Beach Nuclear Plant 0.0 0.0 0.0 Two Rivers WI 44.2806 -87.5369 27
1970 4046 Point Beach Nuclear Plant 643.0 643.0 643.0 Two Rivers WI 44.2806 -87.5369 27
1971 4046 Point Beach Nuclear Plant 0.0 643.0 643.0 Two Rivers WI 44.2806 -87.5369 27
1972 4046 Point Beach Nuclear Plant 643.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1973 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1974 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1975 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1976 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1977 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1978 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1979 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1980 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1981 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1982 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1983 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1984 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1985 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1986 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1987 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1988 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1989 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1990 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1991 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1992 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1993 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1994 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1995 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1996 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1997 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1998 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1999 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2000 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2001 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2002 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2003 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2004 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2005 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2006 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2007 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2008 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2009 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2010 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2011 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2012 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2013 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2014 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2015 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2016 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2017 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2018 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2019 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2020 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2021 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2022 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2023 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2024 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2025 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2026 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2027 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
2028 4046 Point Beach Nuclear Plant 0.0 1286.0 1286.0 Two Rivers WI 44.2806 -87.5369 27
1968 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1969 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1970 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1971 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1972 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1973 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1974 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1975 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1976 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1977 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1978 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1979 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1980 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1981 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1982 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1983 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1984 4270 Waterford 3 0.0 0.0 0.0 Killona LA 29.995267 -90.471581 21
1985 4270 Waterford 3 1199.8 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1986 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1987 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1988 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1989 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1990 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1991 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1992 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1993 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1994 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1995 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1996 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1997 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1998 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1999 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2000 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2001 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2002 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2003 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2004 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2005 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2006 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2007 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2008 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2009 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2010 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2011 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2012 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2013 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2014 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2015 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2016 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2017 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2018 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2019 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2020 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2021 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2022 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2023 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2024 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2025 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2026 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2027 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
2028 4270 Waterford 3 0.0 1199.8 1199.8 Killona LA 29.995267 -90.471581 21
1968 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1969 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1970 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1971 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1972 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1973 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1974 6000 Donald C Cook 0.0 0.0 0.0 Bridgman MI 41.975604 -86.565206 48
1975 6000 Donald C Cook 1152.0 1152.0 1152.0 Bridgman MI 41.975604 -86.565206 48
1976 6000 Donald C Cook 0.0 1152.0 1152.0 Bridgman MI 41.975604 -86.565206 48
1977 6000 Donald C Cook 0.0 1152.0 1152.0 Bridgman MI 41.975604 -86.565206 48
1978 6000 Donald C Cook 1133.3 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1979 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1980 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1981 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1982 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1983 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1984 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1985 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1986 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1987 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1988 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1989 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1990 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1991 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1992 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1993 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1994 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1995 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1996 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1997 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1998 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1999 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2000 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2001 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2002 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2003 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2004 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2005 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2006 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2007 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2008 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2009 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2010 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2011 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2012 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2013 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2014 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2015 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2016 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2017 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2018 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2019 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2020 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2021 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2022 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2023 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2024 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2025 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2026 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2027 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
2028 6000 Donald C Cook 0.0 2285.3 2285.3 Bridgman MI 41.975604 -86.565206 48
1968 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1969 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1970 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1971 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1972 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1973 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1974 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1975 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1976 6001 Joseph M Farley 0.0 0.0 0.0 Columbia AL 31.2231 -85.1116 35
1977 6001 Joseph M Farley 888.2 888.2 888.2 Columbia AL 31.2231 -85.1116 35
1978 6001 Joseph M Farley 0.0 888.2 888.2 Columbia AL 31.2231 -85.1116 35
1979 6001 Joseph M Farley 0.0 888.2 888.2 Columbia AL 31.2231 -85.1116 35
1980 6001 Joseph M Farley 0.0 888.2 888.2 Columbia AL 31.2231 -85.1116 35
1981 6001 Joseph M Farley 888.2 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1982 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1983 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1984 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1985 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1986 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1987 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1988 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1989 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1990 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1991 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1992 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1993 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1994 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1995 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1996 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1997 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1998 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1999 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2000 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2001 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2002 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2003 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2004 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2005 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2006 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2007 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2008 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2009 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2010 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2011 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2012 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2013 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2014 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2015 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2016 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2017 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2018 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2019 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2020 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2021 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2022 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2023 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2024 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2025 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2026 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2027 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
2028 6001 Joseph M Farley 0.0 1776.4 1776.4 Columbia AL 31.2231 -85.1116 35
1968 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1969 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1970 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1971 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1972 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1973 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1974 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1975 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1976 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1977 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1978 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1979 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1980 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1981 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1982 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1983 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1984 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1985 6008 Palo Verde 0.0 0.0 0.0 Wintersburg AZ 33.3881 -112.8617 64
1986 6008 Palo Verde 2806.4 2806.4 2806.4 Wintersburg AZ 33.3881 -112.8617 64
1987 6008 Palo Verde 0.0 2806.4 2806.4 Wintersburg AZ 33.3881 -112.8617 64
1988 6008 Palo Verde 1403.2 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1989 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1990 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1991 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1992 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1993 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1994 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1995 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1996 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1997 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1998 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1999 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2000 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2001 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2002 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2003 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2004 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2005 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2006 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2007 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2008 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2009 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2010 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2011 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2012 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2013 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2014 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2015 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2016 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2017 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2018 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2019 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2020 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2021 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2022 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2023 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2024 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2025 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2026 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2027 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
2028 6008 Palo Verde 0.0 4209.6 4209.6 Wintersburg AZ 33.3881 -112.8617 64
1968 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1969 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1970 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1971 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1972 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1973 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1974 6011 Calvert Cliffs Nuclear Power Plant 0.0 0.0 0.0 Lusby MD 38.4344 -76.4417 36
1975 6011 Calvert Cliffs Nuclear Power Plant 918.0 918.0 918.0 Lusby MD 38.4344 -76.4417 36
1976 6011 Calvert Cliffs Nuclear Power Plant 0.0 918.0 918.0 Lusby MD 38.4344 -76.4417 36
1977 6011 Calvert Cliffs Nuclear Power Plant 910.7 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1978 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1979 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1980 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1981 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1982 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1983 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1984 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1985 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1986 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1987 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1988 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1989 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1990 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1991 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1992 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1993 6011 Calvert Cliffs Nuclear Power Plant 0.0 1828.7 1828.7 Lusby MD 38.4344 -76.4417 36
1994 6011 Calvert Cliffs