A map showing the time-evolution geographic center of the US, weighted by aggregate rWAR.
Last active
August 29, 2015 14:19
-
-
Save bdilday/15d88900a4528ded898c to your computer and use it in GitHub Desktop.
rWAR (year-to-year) weighted mean geographic center
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A map showing the time-evolution geographic center of the US, weighted by year-by-year rWAR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mean US location, weighted by year-by-year rWAR</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="chart"> | |
<div id="blahtext"> | |
</div> | |
</div> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script src="main.js"></script> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var vbose=0; | |
var width = 800, | |
height = 600; | |
var dx = 300; | |
var dy = 100; | |
var mnyear = 1787; | |
var mxyear = 1975; | |
var animateInterval = 300 // milliseconds | |
var startOpacity = 1.0; | |
var nyear = 20.0; | |
var bcolor = "#4682B4"; | |
var pcolor = "orange"; | |
var tx=310; | |
var ty=130; | |
/** | |
var projection = d3.geo.orthographic() | |
.scale(500) | |
.translate([width / 2, height / 2]) | |
.rotate([110, -30]) | |
.clipAngle(90); | |
**/ | |
/** | |
var projection = d3.geo.stereographic() | |
.scale(800) | |
.translate([width / 2, height / 2]) | |
.rotate([100, -40]) | |
.clipAngle(90); | |
**/ | |
var projection = d3.geo.albersUsa() | |
.scale(800) | |
.translate([width / 2, height / 2]); | |
/** | |
var projection = d3.geo.mercator() | |
.center([120, 50 ]) | |
.scale(200) | |
.rotate([-180,0]); | |
**/ | |
var gpath = d3.geo.path() | |
.projection(null); | |
var path = d3.geo.path() | |
.projection(projection); | |
var svg = d3.select("#chart").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
var lam = d3.scale.linear() | |
.domain([0, width]) | |
.range([-180, 180]); | |
var psi = d3.scale.linear() | |
.domain([0, height]) | |
.range([90, -90]); | |
var g = svg.append("g"); | |
var lam = d3.scale.linear() | |
.domain([0, width]) | |
.range([-180, 180]); | |
var psi = d3.scale.linear() | |
.domain([0, height]) | |
.range([90, -90]); | |
/** | |
svg.on("click", function() { | |
var p = d3.mouse(this); | |
var pi = projection.invert([p[0], p[1]]); | |
console.log(["click", p[0], p[1], pi[0], pi[1]]); | |
projection.center([pi[0], pi[1]]); | |
g.selectAll("path").attr("d", path); | |
}); | |
**/ | |
function parseData(data) { | |
var adata = []; | |
for (i=0 ; i<data.length ; i++ ) { | |
p = [+data[i]["lon"],+data[i]["lat"]]; | |
pr = projection(p); | |
data[i]["cx"] = pr[0]; | |
data[i]["cy"] = pr[1]; | |
if (i==data.length-1) { | |
; | |
} else if (data[i]["isbat"]!=data[i+1]["isbat"]) { | |
; | |
} else { | |
p = [+data[i+1]["lon"],+data[i+1]["lat"]]; | |
pr = projection(p); | |
}; | |
data[i]["nx"] = pr[0]; | |
data[i]["ny"] = pr[1]; | |
adata.push(data[i]); | |
} | |
return adata; | |
}; | |
d3.json("us_stateYear.json", function(error, us) { | |
if (error) return console.error(error); | |
if (vbose>=2) { | |
console.log(us); | |
} | |
var land = g.selectAll("path") | |
.data(topojson.feature(us, us.objects.us_40).features) | |
.enter() | |
.append("path") | |
.attr("class", "land") | |
.attr("d", path) | |
.style("fill", "#FFF") | |
.style("opacity", 1.0) | |
; | |
g.append("path") | |
.datum(topojson.mesh(us, us.objects.us_40, function(a, b) | |
{ | |
return a !== b; | |
} | |
)) | |
.attr("class", "border state-border") | |
.attr("d", path) | |
.style("opacity", 1) | |
.style("stroke", "#555"); | |
var grid = d3.geo.graticule(); | |
g.append("path") | |
.datum(d3.geo.graticule()) | |
.attr("d", path) | |
.style("fill", "none") | |
.style("stroke", "#000000") | |
.style("stroke-width", "0.5px") | |
.style("opacity", 0.1); | |
var color = d3.scale.category20(); | |
console.log(["color", color]); | |
d3.csv("warMeanPos_1.csv", function(data) | |
{ | |
console.log(["mdata",data]); | |
mdata = parseData(data); | |
g.append("g") | |
.attr("id","lineg") | |
.selectAll("path") | |
.data(mdata.slice(0, mdata.length-1)) | |
.enter() | |
.append("path") | |
.style("stroke", function(d, i) { | |
var pcol = d["isbat"] == 1 ? bcolor : pcolor; | |
console.log(["pathcolor", i, d, pcol]); | |
return pcol; | |
}) | |
.style("stroke-width", 0.2) | |
.datum(function(d) { | |
console.log(["datum", d]); | |
return {type: "LineString", coordinates: | |
[ | |
[d["cx"], d["cy"]], | |
[d["nx"], d["ny"]] | |
] | |
}}) | |
.attr("d",gpath) | |
; | |
/** | |
g.append("g") | |
.selectAll("text") | |
.data(["WAR-weighted map"]) | |
.enter() | |
.append("text") | |
.attr("id", "blah") | |
.attr("x", 375) | |
.attr("y", 145) | |
.text(function(d) { | |
console.log(["text", d]); | |
return d; | |
}) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "20px") | |
; | |
**/ | |
g.selectAll("text") | |
.data(["WAR-weighted map"]) | |
.enter() | |
.append("text") | |
.attr("id", "svgtext") | |
.attr("x", tx) | |
.attr("y", ty) | |
.text(function(d) { | |
console.log(["text", d]); | |
return d; | |
}) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "20px") | |
; | |
g.append("text") | |
.attr("x", tx) | |
.attr("y", ty) | |
.text("WAR-weighted map") | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "20px") | |
; | |
g.append("text") | |
.attr("x", tx+40) | |
.attr("y", ty+15) | |
.text("(year-to-year birth-place)") | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "12px") | |
; | |
g.append("text") | |
.attr("x", tx+200) | |
.attr("y", ty) | |
.text("batters") | |
.attr("fill", bcolor) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "12px") | |
; | |
g.append("text") | |
.attr("x", tx+200) | |
.attr("y", ty+15) | |
.text("pitchers") | |
.attr("fill", pcolor) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "12px") | |
; | |
g.selectAll("circle") | |
.data(mdata) | |
.enter() | |
.append("circle") | |
.attr("r", function(d) { | |
if (vbose>=2) { | |
console.log(["r", d]); | |
} | |
return 0.75; }) | |
.attr("cx", function(d) { | |
return d["cx"]; | |
}) | |
.attr("cy", function(d) { | |
return d["cy"]; | |
}) | |
.attr("fill", function(d) { | |
return d["isbat"]==1 ? bcolor : pcolor; | |
}) | |
.attr("opacity", 0.8) | |
.on("mouseover", function(d) { | |
console.log(["mouseover", d]); | |
g.selectAll("#svgtext") | |
.text(d["year"]) | |
.transition() | |
.style('fill', '#555') | |
.style('opacity', 1) | |
.style('font-size', "10px") | |
.attr('x', d["cx"]) | |
.attr('y', d["cy"]) | |
}) | |
.on("mouseout", function(d) { | |
g.selectAll("#svgtext") | |
.text(d["year"]) | |
.transition() | |
.style('fill', '#555') | |
.style('opacity', 0) | |
.style('font-size', "0px") | |
.attr('x', d["cx"]) | |
.attr('y', d["cy"]) | |
}) | |
/****************/ | |
}) | |
}) | |
/** | |
**/ | |
var zoom = d3.behavior.zoom() | |
.on("zoom",function() { | |
// console.log(["zoom", d3.event]); | |
g.attr("transform", | |
"translate(" + | |
d3.event.translate.join(",") + | |
")scale(" + | |
d3.event.scale+ | |
")" | |
); | |
/** | |
g.selectAll("path") | |
.attr("d", path.projection(projection)); | |
**/ | |
}); | |
svg.call(zoom) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.menutooltip { | |
position: absolute; | |
text-align: center; | |
width: 240px; | |
height: 120px; | |
padding: 4px; | |
font: 10px sans-serif; | |
background: lightsteelblue; | |
border: 2px; | |
border-radius: 8px; | |
pointer-events: none; | |
line-height: 8px; | |
} | |
.d3-tip { | |
line-height: 1; | |
font-weight: bold; | |
padding: 12px; | |
background: rgba(0, 0, 0, 0.8); | |
color: #fff; | |
border-radius: 2px; | |
display: block; | |
} | |
/* Creates a small triangle extender for the tooltip */ | |
/* display: inline; */ | |
.d3-tip:after { | |
box-sizing: border-box; | |
font-size: 10px; | |
display: block; | |
width: 100%; | |
line-height: 1; | |
color: rgba(0, 0, 0, 0.8); | |
content: "\25BC"; | |
position: absolute; | |
text-align: center; | |
} | |
/* Style northward tooltips differently */ | |
.d3-tip.n:after { | |
margin: -1px 0 0 0; | |
top: 100%; | |
left: 0; | |
color: "green"; | |
display: block; | |
} | |
#bubblehead { | |
font-size: 18px; | |
line-height: 4px; | |
font-weight: "bold"; | |
text-decoration: underline; | |
text-align: center; | |
} | |
#bubblemiles { | |
font-size: 18px; | |
line-height: 4px; | |
font-weight: "bold"; | |
text-decoration: normal; | |
text-align: center; | |
} | |
#bubblelab { | |
margin: 0; | |
font-family: serif, sans-serif; | |
font-size: 14px; | |
line-height: 4px; | |
text-align: left; | |
text-decoration: none; | |
} | |
#menuhead { | |
font-size: 18px; | |
font-weight: "bold"; | |
text-decoration: underline; | |
text-align: center; | |
} | |
#menulab { | |
margin: 0; | |
font-family: serif, sans-serif; | |
font-size: 12px; | |
line-height: 4px; | |
text-align: left; | |
text-decoration: none; | |
} | |
#brewery-menu { | |
position: absolute; | |
top: 20px; | |
left: 560px; | |
} | |
#style-menu { | |
position: absolute; | |
top: 30px; | |
left: 60px; | |
} | |
#s-menu-l { | |
position: absolute; | |
top: 40px; | |
left: -60px; | |
width: 120px; | |
text-align: "right"; | |
} | |
#chart { | |
position: absolute; | |
top: 40px; | |
left: 200px; | |
width: 700px; | |
/*margin: 25px auto;*/ | |
} | |
path { | |
fill: none; | |
stroke: #000; | |
stroke-linejoin: round; | |
stroke-linecap: round; | |
} | |
li.selected { | |
font-weight: bold; | |
} | |
p.selected { | |
font-weight: bold; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
year | lat | lon | isbat | |
---|---|---|---|---|
1871 | 40.891476904214912 | -76.514161908765203 | 1 | |
1872 | 40.82428325422962 | -76.679710101423268 | 1 | |
1873 | 41.116953878310639 | -76.570458634425947 | 1 | |
1874 | 40.78279685931939 | -76.951235089435983 | 1 | |
1875 | 40.648888207379962 | -77.160858102916706 | 1 | |
1876 | 40.390154304487616 | -77.990439191000533 | 1 | |
1877 | 40.355722644553367 | -77.333203850744425 | 1 | |
1878 | 40.337438975804943 | -77.34768266816684 | 1 | |
1879 | 40.658709165008176 | -76.31977107369697 | 1 | |
1880 | 40.993434273276584 | -77.154859892716189 | 1 | |
1881 | 41.179029739922846 | -76.786674994626878 | 1 | |
1882 | 40.752043810555747 | -77.797149111453663 | 1 | |
1883 | 41.051048748590794 | -77.547927927481254 | 1 | |
1884 | 40.754344490891825 | -78.390052957208496 | 1 | |
1885 | 40.901344212191603 | -78.08173652556215 | 1 | |
1886 | 40.882177376548917 | -79.123718431208601 | 1 | |
1887 | 40.789352695885533 | -79.696476578188438 | 1 | |
1888 | 40.738905450203127 | -79.516624341774289 | 1 | |
1889 | 40.656781028205131 | -80.719831578847391 | 1 | |
1890 | 40.650062557227017 | -80.523613634411248 | 1 | |
1891 | 40.824482874298454 | -79.546509931750606 | 1 | |
1892 | 40.672257531743767 | -79.845840302718656 | 1 | |
1893 | 40.688153520851756 | -80.78426106988843 | 1 | |
1894 | 40.898671634506755 | -79.459566853583866 | 1 | |
1895 | 40.799370282361423 | -80.984287806026984 | 1 | |
1896 | 40.872911935377473 | -80.463180178446052 | 1 | |
1897 | 40.873341086963869 | -80.468455736714077 | 1 | |
1898 | 40.887878165425086 | -81.744508798613296 | 1 | |
1899 | 40.798611301112636 | -81.718854733281901 | 1 | |
1900 | 40.820291392117021 | -81.547707649102193 | 1 | |
1901 | 40.773335612044853 | -82.01565049206144 | 1 | |
1902 | 40.783807686630773 | -81.743725259552235 | 1 | |
1903 | 40.76241276958698 | -82.227208699421283 | 1 | |
1904 | 40.888520372509838 | -81.429947501531913 | 1 | |
1905 | 40.801494187297436 | -81.752928990087227 | 1 | |
1906 | 40.66517147293257 | -82.824775692496686 | 1 | |
1907 | 40.74907271498585 | -82.297022932019786 | 1 | |
1908 | 40.558828634727469 | -82.809302172246021 | 1 | |
1909 | 40.136914427855316 | -83.752961502337854 | 1 | |
1910 | 39.873956630739151 | -85.101735691201043 | 1 | |
1911 | 39.562375588869493 | -85.718900865447878 | 1 | |
1912 | 39.458991297452734 | -85.525685014835929 | 1 | |
1913 | 39.282953829744223 | -86.299080834939318 | 1 | |
1914 | 39.588052204676764 | -85.403044999197363 | 1 | |
1915 | 39.437161997540507 | -85.809305835906983 | 1 | |
1916 | 39.29200442198659 | -86.856189418581693 | 1 | |
1917 | 39.041641222841513 | -87.058766654434962 | 1 | |
1918 | 39.163615192444666 | -87.150712532361112 | 1 | |
1919 | 39.043567717033191 | -87.870048100922048 | 1 | |
1920 | 38.892593973332751 | -88.303096851846334 | 1 | |
1921 | 38.809374598456785 | -89.221741301644698 | 1 | |
1922 | 38.671239470775753 | -90.481267144018659 | 1 | |
1923 | 39.042633581483948 | -88.824404727114057 | 1 | |
1924 | 38.37934661153394 | -89.369881972256934 | 1 | |
1925 | 38.682851980978775 | -89.370757379198892 | 1 | |
1926 | 38.742575275430326 | -88.690183418599688 | 1 | |
1927 | 38.429868895642961 | -89.114117634496949 | 1 | |
1928 | 38.366628628486858 | -88.354893494256544 | 1 | |
1929 | 38.041244381949582 | -91.030443171242325 | 1 | |
1930 | 38.432397011707153 | -88.202459133977925 | 1 | |
1931 | 38.192935229588052 | -89.401822340382495 | 1 | |
1932 | 37.936485472123977 | -89.085334773221305 | 1 | |
1933 | 37.90283236636099 | -89.170028066226308 | 1 | |
1934 | 37.863625589933747 | -89.651633502656836 | 1 | |
1935 | 37.775424004626927 | -89.302001495094743 | 1 | |
1936 | 37.625139567033514 | -91.057601485379379 | 1 | |
1937 | 37.462063367919917 | -91.209202183354193 | 1 | |
1938 | 37.402706178146076 | -92.533645753924233 | 1 | |
1939 | 37.478289924993419 | -91.635261749273667 | 1 | |
1940 | 37.378994406789438 | -92.039746744034531 | 1 | |
1941 | 37.683694630535101 | -91.963552207450746 | 1 | |
1942 | 37.434032431827056 | -93.66186942351942 | 1 | |
1943 | 37.572040717976236 | -90.074861487051052 | 1 | |
1944 | 38.42841467276309 | -88.518983318835367 | 1 | |
1945 | 38.425619365044575 | -90.084187564332751 | 1 | |
1946 | 38.043040729426956 | -90.645632519108347 | 1 | |
1947 | 37.728505234889525 | -92.042969810720535 | 1 | |
1948 | 38.111036335827592 | -93.08516930026893 | 1 | |
1949 | 37.573101886144386 | -93.062124698751234 | 1 | |
1950 | 37.931767735413359 | -92.471954215780514 | 1 | |
1951 | 37.373588162939228 | -92.171924798726664 | 1 | |
1952 | 37.323479211118311 | -90.515317002516852 | 1 | |
1953 | 37.323406166579105 | -90.582885960368927 | 1 | |
1954 | 37.123316206638293 | -90.855536623997665 | 1 | |
1955 | 37.584975453277401 | -90.333424752195384 | 1 | |
1956 | 37.047422780973108 | -91.122122764954213 | 1 | |
1957 | 37.549854849770568 | -90.988050330368338 | 1 | |
1958 | 37.138121177322802 | -91.740463403622584 | 1 | |
1959 | 37.010203411174544 | -91.280068149301499 | 1 | |
1960 | 37.361686824307242 | -91.372510282268266 | 1 | |
1961 | 37.181486367119149 | -90.918948594826063 | 1 | |
1962 | 37.009678701436187 | -89.970971345628058 | 1 | |
1963 | 36.859852821518736 | -90.380996612416368 | 1 | |
1964 | 37.124009886766039 | -90.619874985602038 | 1 | |
1965 | 36.584058910560614 | -90.837432304191225 | 1 | |
1966 | 36.946135492719613 | -89.854385507563663 | 1 | |
1967 | 37.11462464662398 | -89.774112132216246 | 1 | |
1968 | 37.038485735266747 | -90.527738940567403 | 1 | |
1969 | 36.65996306011764 | -91.004232759749229 | 1 | |
1970 | 36.620134353284911 | -92.03897579335252 | 1 | |
1971 | 36.564848438563843 | -92.4108623511882 | 1 | |
1972 | 37.169436857415889 | -92.992225729845558 | 1 | |
1973 | 37.123394097458601 | -92.735620492266818 | 1 | |
1974 | 37.072167770384048 | -92.344224406920162 | 1 | |
1975 | 37.226348111541107 | -92.128926662218987 | 1 | |
1976 | 37.124103400631569 | -91.393268031472786 | 1 | |
1977 | 36.433295421769948 | -93.071111085333982 | 1 | |
1978 | 36.61827708461211 | -93.224586309817639 | 1 | |
1979 | 36.804142754922267 | -93.615285223786017 | 1 | |
1980 | 36.896394510501835 | -94.536972224753697 | 1 | |
1981 | 36.60131973677435 | -94.019561145893903 | 1 | |
1982 | 36.879205640712378 | -95.551409645283115 | 1 | |
1983 | 36.911105032172991 | -94.855499500321699 | 1 | |
1984 | 37.073972361232208 | -96.315658431721161 | 1 | |
1985 | 36.867362230466071 | -97.138749927668499 | 1 | |
1986 | 36.619115994231258 | -96.869847673530188 | 1 | |
1987 | 36.672648693270396 | -97.319953700268954 | 1 | |
1988 | 36.718163530110814 | -96.878498392890393 | 1 | |
1989 | 36.394153037140562 | -95.517643124878433 | 1 | |
1990 | 36.421753709124303 | -96.14929368982321 | 1 | |
1991 | 36.54542470197709 | -95.370642998703644 | 1 | |
1992 | 36.522526266936595 | -94.68919967958071 | 1 | |
1993 | 36.551041967546738 | -93.982611274214989 | 1 | |
1994 | 36.301652167312838 | -93.869999412902033 | 1 | |
1995 | 36.681493755019837 | -92.560792930882201 | 1 | |
1996 | 36.93991080195876 | -92.881230222581891 | 1 | |
1997 | 37.019390474328631 | -92.373035498988031 | 1 | |
1998 | 36.572117535213962 | -94.669079055253391 | 1 | |
1999 | 36.658987492360239 | -94.706408259984116 | 1 | |
2000 | 36.328094575868469 | -95.370918721737496 | 1 | |
2001 | 36.087796113204647 | -95.977339581268765 | 1 | |
2002 | 36.567146942573856 | -98.801516121468737 | 1 | |
2003 | 36.016380585581693 | -97.622956980497221 | 1 | |
2004 | 36.129981496700999 | -96.747931082885941 | 1 | |
2005 | 36.720129649099057 | -97.536152215313834 | 1 | |
2006 | 36.347144386743814 | -96.773332887644017 | 1 | |
2007 | 36.131592159199116 | -96.814349019198048 | 1 | |
2008 | 35.499480030962474 | -98.102603832350539 | 1 | |
2009 | 35.788544641693242 | -96.673866290885115 | 1 | |
2010 | 35.042903986796084 | -94.306385613779227 | 1 | |
2011 | 35.035882383492087 | -96.624505689411492 | 1 | |
2012 | 35.210546872000194 | -94.274673756828108 | 1 | |
2013 | 34.702551368811243 | -96.035624541766524 | 1 | |
2014 | 34.889587243396797 | -93.829625409987671 | 1 | |
1871 | 40.689848187850025 | -77.531098587664971 | 0 | |
1872 | 41.034662350346039 | -78.242534070965476 | 0 | |
1873 | 40.754414197516972 | -77.215289987831142 | 0 | |
1874 | 40.610066782029548 | -77.602898471160387 | 0 | |
1875 | 40.888366067892598 | -77.282662027355912 | 0 | |
1876 | 40.656606955731704 | -78.473023350830445 | 0 | |
1877 | 40.185938678920195 | -75.787175273643442 | 0 | |
1878 | 40.395005478730731 | -76.653960664175102 | 0 | |
1879 | 40.6429864697852 | -80.294433769708604 | 0 | |
1880 | 41.071628610946746 | -76.951058449166155 | 0 | |
1881 | 41.314143594151098 | -77.468787647045943 | 0 | |
1882 | 41.459844988761091 | -76.816896081180658 | 0 | |
1883 | 41.090619496110691 | -77.501294690394644 | 0 | |
1884 | 40.650921094554562 | -80.238820110155444 | 0 | |
1885 | 40.740741295251361 | -76.99738984674778 | 0 | |
1886 | 40.719328081614151 | -78.215559598672471 | 0 | |
1887 | 40.373940563907915 | -79.058895912741235 | 0 | |
1888 | 40.57111010489465 | -80.706427416766033 | 0 | |
1889 | 40.813675194193621 | -78.512411732509207 | 0 | |
1890 | 40.145874847727107 | -81.239001192235506 | 0 | |
1891 | 40.335133660150483 | -81.618036288760806 | 0 | |
1892 | 40.763477995584019 | -80.95222439262507 | 0 | |
1893 | 40.255121264177987 | -82.247146648674374 | 0 | |
1894 | 40.238770230766988 | -83.448779518666328 | 0 | |
1895 | 40.728865515025191 | -82.528537160391437 | 0 | |
1896 | 40.204566138281372 | -83.115119549104023 | 0 | |
1897 | 40.162457422526806 | -83.684669368686301 | 0 | |
1898 | 39.861389367455644 | -83.307597149490888 | 0 | |
1899 | 39.804235935194342 | -85.318289180119294 | 0 | |
1900 | 39.788627034841348 | -85.166040432500608 | 0 | |
1901 | 40.373657174096294 | -82.392866915092881 | 0 | |
1902 | 40.266528522318204 | -82.280165198793313 | 0 | |
1903 | 40.321578329097981 | -83.407682759749989 | 0 | |
1904 | 40.906051113100517 | -82.123659670930621 | 0 | |
1905 | 40.888447771065898 | -82.779248369498163 | 0 | |
1906 | 40.682967876410792 | -83.426543164402645 | 0 | |
1907 | 40.14778352895906 | -85.171765547208153 | 0 | |
1908 | 40.619939791081649 | -81.969832180864685 | 0 | |
1909 | 40.113743222661604 | -86.345879825423339 | 0 | |
1910 | 39.826014545044679 | -85.538432000450655 | 0 | |
1911 | 40.329442401752566 | -87.90473598977681 | 0 | |
1912 | 39.489361632299982 | -86.996582712896029 | 0 | |
1913 | 39.696700515961425 | -87.752035757543382 | 0 | |
1914 | 39.215301526749762 | -86.871105784660344 | 0 | |
1915 | 38.484685816299255 | -87.223970702633466 | 0 | |
1916 | 38.954971488936401 | -86.743258236578896 | 0 | |
1917 | 39.031853727078023 | -87.357656406903672 | 0 | |
1918 | 38.941294730406 | -86.042039734428343 | 0 | |
1919 | 39.033750933611017 | -86.083327962390442 | 0 | |
1920 | 38.865806326139086 | -86.262802210262777 | 0 | |
1921 | 39.224859123510697 | -85.73803582288204 | 0 | |
1922 | 39.307044404997932 | -86.909398943287442 | 0 | |
1923 | 39.40509785411006 | -85.704752616955915 | 0 | |
1924 | 38.666069825330418 | -85.804803186854571 | 0 | |
1925 | 38.638276288598561 | -87.029904922696062 | 0 | |
1926 | 38.420672091932126 | -87.339941040793008 | 0 | |
1927 | 38.614191483344207 | -87.446437863231097 | 0 | |
1928 | 38.919415625659902 | -85.985250248583682 | 0 | |
1929 | 38.101949559892176 | -88.334742975589933 | 0 | |
1930 | 38.464064501695127 | -87.25501411145288 | 0 | |
1931 | 38.082516617413525 | -89.401140391846781 | 0 | |
1932 | 37.428967463029508 | -87.976669818239756 | 0 | |
1933 | 38.046268910686081 | -89.814618862805133 | 0 | |
1934 | 38.035060640688911 | -90.399276859337476 | 0 | |
1935 | 37.509736932469643 | -91.078136289846782 | 0 | |
1936 | 37.723205849704769 | -88.950979005991911 | 0 | |
1937 | 37.752794113433495 | -91.438921742064764 | 0 | |
1938 | 38.216459494770028 | -90.65604246870403 | 0 | |
1939 | 38.178621324336724 | -88.941104802813229 | 0 | |
1940 | 38.35787501064533 | -89.18165867904672 | 0 | |
1941 | 37.848915124814361 | -88.08886725784285 | 0 | |
1942 | 37.620808914569771 | -88.732375217992271 | 0 | |
1943 | 36.602880770931193 | -90.313035847660487 | 0 | |
1944 | 37.594524678622705 | -88.703125907419746 | 0 | |
1945 | 37.925387250611614 | -91.497880606386659 | 0 | |
1946 | 38.052511447405273 | -90.006023883595063 | 0 | |
1947 | 38.602198171199007 | -90.135509467311564 | 0 | |
1948 | 38.359775019425321 | -89.582756304888647 | 0 | |
1949 | 38.380314638871774 | -91.138418964846636 | 0 | |
1950 | 38.78918790638695 | -90.538854317867816 | 0 | |
1951 | 39.48459179372982 | -88.087963390377723 | 0 | |
1952 | 38.804241555834835 | -86.445925511267518 | 0 | |
1953 | 38.917922848536698 | -86.795745690244189 | 0 | |
1954 | 39.241169291260739 | -88.740284280641461 | 0 | |
1955 | 39.064481747218259 | -87.842404491839233 | 0 | |
1956 | 38.522231918850551 | -86.76637695713066 | 0 | |
1957 | 39.295717218960164 | -88.249331635142639 | 0 | |
1958 | 38.7466379693726 | -86.504569535317202 | 0 | |
1959 | 38.852837746811282 | -89.041659893145862 | 0 | |
1960 | 38.854473799082697 | -90.443722805463324 | 0 | |
1961 | 38.921115592298321 | -87.917737752018624 | 0 | |
1962 | 39.103951086904736 | -87.365594101511448 | 0 | |
1963 | 38.985614318665128 | -86.510170321216208 | 0 | |
1964 | 39.24867141318785 | -87.818306358071482 | 0 | |
1965 | 38.776116818740093 | -88.392495243782989 | 0 | |
1966 | 37.985601660219352 | -89.593099190968559 | 0 | |
1967 | 37.996451481724101 | -92.035092775598386 | 0 | |
1968 | 38.348346030562602 | -91.806092643555971 | 0 | |
1969 | 38.098759148916237 | -92.578101830837028 | 0 | |
1970 | 38.168348118085945 | -92.152622973240852 | 0 | |
1971 | 38.30758985937856 | -92.302418057850744 | 0 | |
1972 | 37.815468293405232 | -92.413775085220223 | 0 | |
1973 | 37.85568905180628 | -95.470363027637745 | 0 | |
1974 | 38.100780968686664 | -93.560399792960894 | 0 | |
1975 | 38.325071293133838 | -94.596316310550108 | 0 | |
1976 | 37.94343570370382 | -93.164764466632846 | 0 | |
1977 | 37.878350950387457 | -92.214728509522146 | 0 | |
1978 | 37.88933520952569 | -92.536682378975186 | 0 | |
1979 | 38.041663304807429 | -94.291005534948468 | 0 | |
1980 | 37.120206591673096 | -94.165250909524332 | 0 | |
1981 | 36.68041238927735 | -95.951395861203409 | 0 | |
1982 | 37.736252159952656 | -95.676976616942014 | 0 | |
1983 | 36.77431315172533 | -96.954651676465915 | 0 | |
1984 | 36.568252566474946 | -95.229498300470652 | 0 | |
1985 | 35.988112260613107 | -96.90259787258428 | 0 | |
1986 | 36.290758396202946 | -97.99016661273761 | 0 | |
1987 | 37.256652711268288 | -94.842576170208432 | 0 | |
1988 | 36.802912942656711 | -96.044624546400115 | 0 | |
1989 | 36.987912621556838 | -95.035259263042548 | 0 | |
1990 | 36.862877736204673 | -96.650877380700578 | 0 | |
1991 | 37.586757725960432 | -94.643064686838812 | 0 | |
1992 | 37.19977799351112 | -95.178066781417655 | 0 | |
1993 | 36.655002597675839 | -95.058106208487004 | 0 | |
1994 | 36.736508555224212 | -95.07748519372025 | 0 | |
1995 | 36.59613799704907 | -93.186616096049022 | 0 | |
1996 | 36.989661433917227 | -91.747971063645352 | 0 | |
1997 | 37.287839444614967 | -93.304226953904902 | 0 | |
1998 | 37.308043919500193 | -92.947052142473922 | 0 | |
1999 | 37.663383035642568 | -91.272980314086325 | 0 | |
2000 | 36.847657451407223 | -94.719968420983832 | 0 | |
2001 | 37.935409562736801 | -95.627534373700584 | 0 | |
2002 | 36.939734630425029 | -95.82763849055624 | 0 | |
2003 | 36.732228175114791 | -96.559858417960498 | 0 | |
2004 | 36.686652777827724 | -97.126550060631246 | 0 | |
2005 | 36.305633102804769 | -96.548369859384167 | 0 | |
2006 | 36.254822889223483 | -95.672368202664629 | 0 | |
2007 | 35.870247763011861 | -97.413927942723589 | 0 | |
2008 | 36.422526927919336 | -96.773732976267453 | 0 | |
2009 | 35.83059074696957 | -96.74806321968903 | 0 | |
2010 | 35.974884206105614 | -96.609502364787176 | 0 | |
2011 | 36.126452206553907 | -98.280749296891315 | 0 | |
2012 | 35.709211652267932 | -94.830215680218529 | 0 | |
2013 | 35.231025389550815 | -95.366527014633178 | 0 | |
2014 | 35.693260179624183 | -96.96486113216173 | 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment