[ Launch: two hours lets go ] 5650334 by gelicia
-
-
Save gelicia/5650334 to your computer and use it in GitHub Desktop.
two hours lets go
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
{"description":"two hours lets go","endpoint":"","display":"div","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"school.csv":{"default":true,"vim":false,"emacs":false,"fontSize":12},"mpls.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"thumbnail":"http://i.imgur.com/wBoRJzO.png"} |
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 rectSize = {height : 50, width: 300}; | |
var head = {x: 20, y: 20}; | |
var frl = {x: 20, y: 50}; | |
var ayp = {x: 20, y: 247}; | |
var eth = {x: 20, y: 150}; | |
var data = tributary.school; | |
var map = tributary["mpls"]; | |
var display = d3.select("#display"); | |
var path = d3.geo.path().projection( | |
d3.geo.mercator().center([-93, 45]). | |
scale(65995).translate([998 / 2, 778 / 2])); | |
var select = display.append("select") | |
.attr("size", 30) | |
.style("float","left"); | |
select.selectAll("option").data(data).enter() | |
.append("option") | |
.text(function(d){return d.schoolname}); | |
select.on("change", function() { | |
drawSchool(data[this.selectedIndex].schoolname, path); | |
}) | |
//these are all global variables which is bad but it's prototype time | |
var svg = display.append("svg") | |
.attr({ | |
width: "334px", | |
height: "700px" | |
}); | |
var mapG = svg.append('g').attr("id", "mapG"); | |
mapG.selectAll('path.shapes') | |
.data(map.features) | |
.enter().append('path') | |
.attr('class', 'shape') | |
.attr('d', path) | |
.style('fill', 'lightblue') | |
.style('stroke', "black"); | |
function drawSchool(schoolName, path){ | |
d3.select("#frl").remove(); | |
d3.select("#ayp").remove(); | |
d3.select("#eth").remove(); | |
d3.select("#head").remove(); | |
d3.select("#schoolPoint").remove(); | |
var schoolInfo = getRow(schoolName); | |
var popScale = d3.scale.linear().domain([0,100]).range([0, rectSize.width]); | |
svg.append('text') | |
.attr({ | |
x: head.x, | |
y: head.y, | |
id: 'head' | |
}) | |
.text(schoolName + " population " + schoolInfo.total); | |
var frlG = svg.append('g') | |
.attr({ | |
x : frl.x, | |
y: frl.y, | |
id: 'frl' | |
}); | |
frlG.append('rect') | |
.attr({ | |
x: frl.x, | |
y: frl.y, | |
width: popScale(100), | |
height: rectSize.height, | |
fill: 'lightblue' | |
}) | |
frlG.append('rect') | |
.attr({ | |
x: frl.x, | |
y: frl.y, | |
width: popScale(Number(schoolInfo.frl)), | |
height: rectSize.height, | |
fill: 'orange' | |
}) | |
var frlHead = frlG.append('text') | |
.attr({ | |
x: frl.x, | |
y: frl.y | |
}) | |
.text("Free/Reduced Lunch: "); | |
frlG.append('text') | |
.attr({ | |
x: frl.x + frlHead.node().getBBox().width + 5, | |
y: frl.y | |
}) | |
.text(schoolInfo.frl + "%"); | |
var ethMin = Number(schoolInfo.nativeAmericanpct) + | |
Number(schoolInfo.africanamericanpct) + | |
Number(schoolInfo.asianamericanpct) + | |
Number(schoolInfo.hispanicamericanpct) + | |
Number(schoolInfo.pacificislanderpct); | |
ethMin = Math.round(ethMin*100)/100 | |
var ethG = svg.append('g') | |
.attr({ | |
x : eth.x, | |
y: eth.y, | |
id: 'eth' | |
}); | |
ethG.append('rect') | |
.attr({ | |
x: eth.x, | |
y: eth.y, | |
width: popScale(100), | |
height: rectSize.height, | |
fill: 'lightblue' | |
}) | |
ethG.append('rect') | |
.attr({ | |
x: eth.x, | |
y: eth.y, | |
width: popScale(Number(ethMin)), | |
height: rectSize.height, | |
fill: 'orange' | |
}) | |
var ethGHead = ethG.append('text') | |
.attr({ | |
x: eth.x, | |
y: eth.y | |
}) | |
.text("Ethnic Minority: "); | |
frlG.append('text') | |
.attr({ | |
x: eth.x + ethGHead.node().getBBox().width + 5, | |
y: eth.y | |
}) | |
.text(ethMin + "%"); | |
svg.append('text') | |
.attr({ | |
x: ayp.x, | |
y: ayp.y, | |
id: 'ayp' | |
}) | |
.text(schoolInfo.ayp == 1 ? 'Making Adequate Yearly Progress' : 'Not Making Adequate Yearly Progress'); | |
//cound not figure out path data - I think my projection is messed up | |
//this randomly finds points in scope of the mpls map | |
var randX = d3.scale.linear().domain([0,30]).range([120, 251]); | |
var randY = d3.scale.linear().domain([0,30]).range([300, 560]); | |
d3.select("#mapG") | |
.append('circle') | |
.attr({ | |
cx: randX(Math.random() * 30 ), | |
cy: randY(Math.random() * 30 ), | |
// "transform" : function(d) {return "translate(" + path([schoolInfo.long,schoolInfo.lat]) + ")";}, | |
r: 5, | |
fill:"yellow", | |
stroke: 'black', | |
id: "schoolPoint" | |
}); | |
} | |
function getRow(schoolName){ | |
for (var i = 0; i < data.length; i++) { | |
if(data[i].schoolname == schoolName){ | |
return data[i]; | |
} | |
} | |
} |
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
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Bryant","cartodb_id":1,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.274678,44.934121],[-93.262492,44.93415],[-93.262501,44.926946],[-93.274769,44.926888],[-93.274678,44.934121]]]]}},{"type":"Feature","properties":{"name":"Regina","cartodb_id":2,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.274769,44.926888],[-93.262501,44.926946],[-93.262614,44.919715],[-93.266418,44.919719],[-93.26769,44.919724],[-93.268021,44.919715],[-93.26896,44.919718],[-93.274776,44.919654],[-93.274769,44.926888]]]]}},{"type":"Feature","properties":{"name":"NORTHROP","cartodb_id":3,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.262501,44.926946],[-93.247323,44.926932],[-93.2473,44.916087],[-93.247301,44.915034],[-93.24847,44.914715],[-93.249084,44.91511],[-93.250477,44.914948],[-93.252811,44.913478],[-93.254982,44.912879],[-93.25593,44.913115],[-93.25732,44.912478],[-93.259158,44.912236],[-93.260213,44.911363],[-93.262617,44.911086],[-93.262642,44.914304],[-93.262616,44.917906],[-93.262614,44.919715],[-93.262501,44.926946]]]]}},{"type":"Feature","properties":{"name":"Page","cartodb_id":4,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.262663,44.903414],[-93.267117,44.903393],[-93.271176,44.903086],[-93.271598,44.903139],[-93.274911,44.903556],[-93.274912,44.908873],[-93.274904,44.909493],[-93.270764,44.910805],[-93.269633,44.912356],[-93.267655,44.912528],[-93.266004,44.912348],[-93.264112,44.910958],[-93.262617,44.911086],[-93.262663,44.903414]]]]}},{"type":"Feature","properties":{"name":"Hale","cartodb_id":5,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.247452,44.903686],[-93.253283,44.903666],[-93.25384,44.903445],[-93.262663,44.903414],[-93.262617,44.911086],[-93.260213,44.911363],[-93.259158,44.912236],[-93.25732,44.912478],[-93.25593,44.913115],[-93.254982,44.912879],[-93.252811,44.913478],[-93.250477,44.914948],[-93.249084,44.91511],[-93.24847,44.914715],[-93.247301,44.915034],[-93.247403,44.905877],[-93.247452,44.903686],[-93.247452,44.903686]]]]}},{"type":"Feature","properties":{"name":"Keewaydin","cartodb_id":6,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.222871,44.905373],[-93.237337,44.905302],[-93.237886,44.905295],[-93.239219,44.905951],[-93.247403,44.905877],[-93.247301,44.915034],[-93.2473,44.916087],[-93.242833,44.916078],[-93.241609,44.916166],[-93.240722,44.916178],[-93.239746,44.916348],[-93.239388,44.916396],[-93.235059,44.916383],[-93.233596,44.916229],[-93.222825,44.916195],[-93.222871,44.905373]]]]}},{"type":"Feature","properties":{"name":"Diamond Lake","cartodb_id":7,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.275038,44.890448],[-93.274911,44.903556],[-93.271598,44.903139],[-93.271176,44.903086],[-93.267117,44.903393],[-93.262663,44.903414],[-93.25384,44.903445],[-93.253283,44.903666],[-93.247452,44.903686],[-93.247515,44.900906],[-93.247144,44.900341],[-93.247205,44.895778],[-93.247134,44.893816],[-93.246933,44.890739],[-93.266633,44.890695],[-93.27347,44.890455],[-93.275038,44.890448]]]]}},{"type":"Feature","properties":{"name":"Wenonah","cartodb_id":8,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.222903,44.890565],[-93.246933,44.890739],[-93.247134,44.893816],[-93.247205,44.895778],[-93.247144,44.900341],[-93.247515,44.900906],[-93.247403,44.905877],[-93.239219,44.905951],[-93.237886,44.905295],[-93.237337,44.905302],[-93.222871,44.905373],[-93.22293,44.897612],[-93.222903,44.890565]]]]}},{"type":"Feature","properties":{"name":"Morris Park","cartodb_id":9,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.207406,44.890639],[-93.222903,44.890565],[-93.22293,44.897612],[-93.222871,44.905373],[-93.207585,44.905356],[-93.207678,44.896303],[-93.207406,44.890639]]]]}},{"type":"Feature","properties":{"name":"Minnehaha","cartodb_id":10,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.210608,44.912639],[-93.208267,44.910554],[-93.207535,44.90989],[-93.206225,44.909015],[-93.20462,44.908571],[-93.204541,44.908536],[-93.201715,44.907284],[-93.198881,44.905896],[-93.198402,44.905398],[-93.207585,44.905356],[-93.222871,44.905373],[-93.222825,44.916195],[-93.217806,44.916203],[-93.217008,44.91631],[-93.215139,44.916299],[-93.214108,44.91548],[-93.213237,44.914943],[-93.212629,44.914423],[-93.210608,44.912639]]]]}},{"type":"Feature","properties":{"name":"Ericsson","cartodb_id":11,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.23214,44.925097],[-93.232147,44.926922],[-93.223579,44.926909],[-93.218555,44.919719],[-93.21592,44.917031],[-93.215139,44.916299],[-93.217008,44.91631],[-93.217806,44.916203],[-93.222825,44.916195],[-93.233596,44.916229],[-93.235059,44.916383],[-93.239388,44.916396],[-93.239746,44.916348],[-93.240722,44.916178],[-93.241609,44.916166],[-93.242833,44.916078],[-93.2473,44.916087],[-93.247323,44.926932],[-93.246061,44.926928],[-93.246078,44.925113],[-93.23214,44.925097]]]]}},{"type":"Feature","properties":{"name":"Hiawatha","cartodb_id":12,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.226027,44.930509],[-93.224809,44.930527],[-93.207658,44.930678],[-93.207108,44.930702],[-93.206506,44.930864],[-93.205261,44.930858],[-93.204923,44.93076],[-93.204871,44.930714],[-93.20459,44.930469],[-93.20429,44.930622],[-93.203925,44.930729],[-93.203625,44.930765],[-93.203099,44.93076],[-93.199959,44.930796],[-93.199744,44.926733],[-93.200333,44.923024],[-93.200716,44.917818],[-93.200589,44.909975],[-93.198274,44.90784],[-93.193778,44.905291],[-93.198402,44.905398],[-93.198881,44.905896],[-93.201715,44.907284],[-93.204541,44.908536],[-93.20462,44.908571],[-93.206225,44.909015],[-93.207535,44.90989],[-93.208267,44.910554],[-93.210608,44.912639],[-93.212629,44.914423],[-93.213237,44.914943],[-93.214108,44.91548],[-93.215139,44.916299],[-93.21592,44.917031],[-93.218555,44.919719],[-93.223579,44.926909],[-93.225999,44.930456],[-93.226027,44.930509]]]]}},{"type":"Feature","properties":{"name":"Howe","cartodb_id":13,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.233469,44.941345],[-93.228347,44.94135],[-93.217844,44.941437],[-93.216588,44.941444],[-93.199996,44.941572],[-93.200048,44.939246],[-93.200091,44.93455],[-93.199959,44.930796],[-93.203099,44.93076],[-93.203625,44.930765],[-93.203925,44.930729],[-93.20429,44.930622],[-93.20459,44.930469],[-93.204871,44.930714],[-93.204923,44.93076],[-93.205261,44.930858],[-93.206506,44.930864],[-93.207108,44.930702],[-93.207658,44.930678],[-93.224809,44.930527],[-93.226027,44.930509],[-93.231011,44.937766],[-93.233469,44.941345]]]]}},{"type":"Feature","properties":{"name":"Standish","cartodb_id":14,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.247366,44.937737],[-93.231011,44.937766],[-93.226027,44.930509],[-93.225999,44.930456],[-93.223579,44.926909],[-93.232147,44.926922],[-93.23214,44.925097],[-93.246078,44.925113],[-93.246061,44.926928],[-93.247323,44.926932],[-93.247342,44.934119],[-93.247366,44.937737]]]]}},{"type":"Feature","properties":{"name":"Bancroft","cartodb_id":15,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.262492,44.93415],[-93.247342,44.934119],[-93.247323,44.926932],[-93.262501,44.926946],[-93.262492,44.93415]]]]}},{"type":"Feature","properties":{"name":"Powderhorn Park","cartodb_id":16,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.262677,44.948357],[-93.247418,44.948371],[-93.247366,44.937737],[-93.247342,44.934119],[-93.262492,44.93415],[-93.262677,44.948357]]]]}},{"type":"Feature","properties":{"name":"Lyndale","cartodb_id":17,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288096,44.948363],[-93.274721,44.948352],[-93.274691,44.937744],[-93.288202,44.937711],[-93.288096,44.948363]]]]}},{"type":"Feature","properties":{"name":"ECCO","cartodb_id":18,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.31021,44.948343],[-93.304856,44.948369],[-93.298284,44.948363],[-93.298395,44.937705],[-93.310107,44.937702],[-93.31021,44.948343]]]]}},{"type":"Feature","properties":{"name":"Fulton","cartodb_id":19,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.32909,44.917919],[-93.328707,44.917922],[-93.326737,44.917932],[-93.326192,44.917928],[-93.32548,44.917919],[-93.321413,44.917905],[-93.317735,44.917895],[-93.317238,44.917896],[-93.316337,44.917895],[-93.315036,44.917898],[-93.313851,44.917996],[-93.308774,44.918021],[-93.308749,44.915445],[-93.308723,44.914178],[-93.3087,44.912364],[-93.30863,44.905127],[-93.318598,44.905267],[-93.318825,44.905268],[-93.328997,44.905311],[-93.329018,44.908926],[-93.32909,44.917919]]]]}},{"type":"Feature","properties":{"name":"Kenny","cartodb_id":20,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.303562,44.905117],[-93.288282,44.905078],[-93.288296,44.90046],[-93.289094,44.897827],[-93.289641,44.896885],[-93.290281,44.895995],[-93.290948,44.895173],[-93.291617,44.89454],[-93.294379,44.892315],[-93.294849,44.891862],[-93.29548,44.890955],[-93.29558,44.890531],[-93.297686,44.890587],[-93.299171,44.890555],[-93.304122,44.890759],[-93.304821,44.890769],[-93.304799,44.890942],[-93.304729,44.891138],[-93.304565,44.891373],[-93.304096,44.891871],[-93.303816,44.892341],[-93.303677,44.892833],[-93.303647,44.893129],[-93.303653,44.89429],[-93.303466,44.896101],[-93.303507,44.897882],[-93.30358,44.899725],[-93.303575,44.903311],[-93.303562,44.905117]]]]}},{"type":"Feature","properties":{"name":"Armatage","cartodb_id":21,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.318825,44.905268],[-93.318598,44.905267],[-93.30863,44.905127],[-93.303562,44.905117],[-93.303575,44.903311],[-93.30358,44.899725],[-93.303507,44.897882],[-93.303466,44.896101],[-93.303572,44.895077],[-93.303653,44.89429],[-93.303647,44.893129],[-93.303677,44.892833],[-93.303816,44.892341],[-93.304096,44.891871],[-93.304565,44.891373],[-93.304729,44.891138],[-93.304799,44.890942],[-93.304821,44.890769],[-93.308653,44.890756],[-93.310181,44.890757],[-93.318823,44.890716],[-93.318825,44.905268]]]]}},{"type":"Feature","properties":{"name":"Tangletown","cartodb_id":22,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288317,44.91956],[-93.274776,44.919654],[-93.274912,44.908873],[-93.274911,44.903556],[-93.278075,44.903961],[-93.283183,44.904718],[-93.285447,44.905098],[-93.288282,44.905078],[-93.288317,44.91956]]]]}},{"type":"Feature","properties":{"name":"Windom","cartodb_id":23,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288282,44.905078],[-93.285447,44.905098],[-93.283183,44.904718],[-93.278075,44.903961],[-93.274911,44.903556],[-93.275038,44.890448],[-93.276921,44.890268],[-93.278469,44.890099],[-93.282898,44.890138],[-93.288353,44.890242],[-93.29558,44.890531],[-93.29548,44.890955],[-93.294849,44.891862],[-93.294379,44.892315],[-93.291617,44.89454],[-93.290948,44.895173],[-93.290346,44.895915],[-93.290281,44.895995],[-93.289641,44.896885],[-93.289094,44.897827],[-93.288296,44.90046],[-93.288282,44.905078]]]]}},{"type":"Feature","properties":{"name":"East Harriet","cartodb_id":24,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.310107,44.937702],[-93.298395,44.937705],[-93.288202,44.937711],[-93.288317,44.91956],[-93.292137,44.919566],[-93.293395,44.919776],[-93.293395,44.919683],[-93.293732,44.919682],[-93.297042,44.919657],[-93.297909,44.91965],[-93.307114,44.919579],[-93.307515,44.928781],[-93.307498,44.929243],[-93.307563,44.929612],[-93.307668,44.929886],[-93.30787,44.930237],[-93.308068,44.930491],[-93.308095,44.931016],[-93.308169,44.93111],[-93.308306,44.931193],[-93.308576,44.931248],[-93.309219,44.931465],[-93.309352,44.931611],[-93.309407,44.931906],[-93.309776,44.932278],[-93.309959,44.93259],[-93.309975,44.932844],[-93.309786,44.933238],[-93.309767,44.933339],[-93.309778,44.933471],[-93.309921,44.933686],[-93.310177,44.934002],[-93.310107,44.937702]]]]}},{"type":"Feature","properties":{"name":"Lowry Hill East","cartodb_id":25,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288091,44.966763],[-93.287964,44.9642],[-93.287998,44.963744],[-93.288003,44.962696],[-93.288027,44.957313],[-93.288096,44.948363],[-93.298284,44.948363],[-93.298264,44.952182],[-93.296786,44.955548],[-93.294768,44.958219],[-93.292729,44.960919],[-93.292129,44.961708],[-93.291525,44.962692],[-93.289654,44.964654],[-93.288091,44.966763]]]]}},{"type":"Feature","properties":{"name":"Phillips","cartodb_id":26,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.262549,44.959122],[-93.259626,44.959129],[-93.256135,44.959128],[-93.249842,44.95913],[-93.249837,44.960927],[-93.247573,44.960939],[-93.246728,44.960107],[-93.245689,44.959137],[-93.238298,44.948375],[-93.247418,44.948371],[-93.262677,44.948357],[-93.274721,44.948352],[-93.274673,44.949919],[-93.273123,44.951999],[-93.271768,44.953473],[-93.269706,44.956076],[-93.269584,44.956618],[-93.269272,44.959647],[-93.269261,44.960889],[-93.266194,44.960905],[-93.262549,44.960922],[-93.262549,44.959122]]]]}},{"type":"Feature","properties":{"name":"STEVENS SQUARE - LORING HEIGHTS","cartodb_id":27,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.287964,44.9642],[-93.285717,44.964428],[-93.283933,44.964631],[-93.283309,44.964761],[-93.282326,44.964929],[-93.277569,44.96622],[-93.276526,44.966504],[-93.274129,44.966683],[-93.272007,44.966574],[-93.270096,44.966048],[-93.269843,44.965988],[-93.269298,44.96586],[-93.269246,44.963997],[-93.269246,44.962696],[-93.288003,44.962696],[-93.287998,44.963744],[-93.287964,44.9642]]]]}},{"type":"Feature","properties":{"name":"West Calhoun","cartodb_id":28,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.328855,44.948446],[-93.320583,44.948419],[-93.318061,44.948401],[-93.31021,44.948343],[-93.310107,44.937702],[-93.322622,44.937756],[-93.32902,44.937836],[-93.32897,44.944012],[-93.328841,44.945974],[-93.328816,44.94662],[-93.328855,44.948446]]]]}},{"type":"Feature","properties":{"name":"Linden Hills","cartodb_id":29,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.32902,44.937836],[-93.322622,44.937756],[-93.310107,44.937702],[-93.310177,44.934002],[-93.309921,44.933686],[-93.309778,44.933471],[-93.309767,44.933339],[-93.309786,44.933238],[-93.309975,44.932844],[-93.309959,44.93259],[-93.309776,44.932278],[-93.309407,44.931906],[-93.309352,44.931611],[-93.309219,44.931465],[-93.308576,44.931248],[-93.308306,44.931193],[-93.308169,44.93111],[-93.308095,44.931016],[-93.308068,44.930491],[-93.30787,44.930237],[-93.307668,44.929886],[-93.307563,44.929612],[-93.307498,44.929243],[-93.307515,44.928781],[-93.307114,44.919579],[-93.307098,44.918025],[-93.30839,44.918023],[-93.308569,44.918022],[-93.308774,44.918021],[-93.313851,44.917996],[-93.315036,44.917898],[-93.316337,44.917895],[-93.317238,44.917896],[-93.317735,44.917895],[-93.321413,44.917905],[-93.32548,44.917919],[-93.326192,44.917928],[-93.326737,44.917932],[-93.328707,44.917922],[-93.32909,44.917919],[-93.329104,44.921534],[-93.329103,44.925073],[-93.329057,44.930553],[-93.32902,44.937836]]]]}},{"type":"Feature","properties":{"name":"Lynnhurst","cartodb_id":30,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.307114,44.919579],[-93.297909,44.91965],[-93.297042,44.919657],[-93.293732,44.919682],[-93.293395,44.919683],[-93.293395,44.919776],[-93.292137,44.919566],[-93.288317,44.91956],[-93.288282,44.905078],[-93.303562,44.905117],[-93.30863,44.905127],[-93.3087,44.912364],[-93.308723,44.914178],[-93.308749,44.915445],[-93.308774,44.918021],[-93.308569,44.918022],[-93.30839,44.918023],[-93.307098,44.918025],[-93.307114,44.919579]]]]}},{"type":"Feature","properties":{"name":"Shingle Creek","cartodb_id":31,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.299177,45.051134],[-93.29921,45.043919],[-93.31944,45.043959],[-93.319504,45.051251],[-93.311824,45.05124],[-93.306808,45.051204],[-93.299177,45.051134]]]]}},{"type":"Feature","properties":{"name":"Humboldt Industrial","cartodb_id":32,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.31944,45.043959],[-93.29921,45.043919],[-93.299065,45.03781],[-93.299068,45.037735],[-93.300654,45.038242],[-93.306322,45.03928],[-93.306673,45.039363],[-93.31136,45.040451],[-93.314233,45.040965],[-93.317812,45.042097],[-93.319362,45.042362],[-93.31944,45.043959]]]]}},{"type":"Feature","properties":{"name":"Webber-Camden","cartodb_id":33,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.306673,45.039363],[-93.306322,45.03928],[-93.300654,45.038242],[-93.299068,45.037735],[-93.298627,45.037593],[-93.297063,45.037256],[-93.292199,45.035555],[-93.290135,45.034274],[-93.289136,45.033588],[-93.288192,45.032946],[-93.288111,45.032854],[-93.288111,45.031499],[-93.286523,45.029844],[-93.286287,45.029597],[-93.286244,45.029475],[-93.28631,45.029353],[-93.286457,45.029295],[-93.28611,45.029233],[-93.285884,45.029117],[-93.28549,45.028697],[-93.284364,45.026873],[-93.282602,45.023918],[-93.283877,45.023924],[-93.293081,45.023967],[-93.308329,45.024089],[-93.308486,45.031319],[-93.305926,45.031304],[-93.305997,45.03545],[-93.306588,45.035457],[-93.306673,45.039363]]]]}},{"type":"Feature","properties":{"name":"Cleveland","cartodb_id":34,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.318523,45.024103],[-93.308329,45.024089],[-93.308231,45.013241],[-93.316658,45.013262],[-93.31844,45.013241],[-93.318398,45.01398],[-93.318523,45.024103]]]]}},{"type":"Feature","properties":{"name":"Jordan","cartodb_id":35,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.31844,45.013241],[-93.316658,45.013262],[-93.308231,45.013241],[-93.294305,45.013146],[-93.294313,45.00595],[-93.294115,45.005949],[-93.294088,44.999143],[-93.297746,44.999143],[-93.298965,44.999478],[-93.299545,44.999609],[-93.300015,44.999622],[-93.300656,44.999487],[-93.301055,44.999443],[-93.301499,44.999426],[-93.302409,44.99952],[-93.302769,44.999592],[-93.303797,44.999894],[-93.304404,45.000134],[-93.304976,45.000439],[-93.305345,45.000852],[-93.305458,45.000978],[-93.305642,45.001306],[-93.305791,45.00177],[-93.305835,45.002219],[-93.305933,45.002342],[-93.30821,45.003862],[-93.312042,45.006321],[-93.313313,45.00784],[-93.314596,45.009123],[-93.316174,45.010974],[-93.316217,45.011351],[-93.317413,45.012491],[-93.31844,45.013241]]]]}},{"type":"Feature","properties":{"name":"Willard-Hay","cartodb_id":36,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.31844,45.013241],[-93.317413,45.012491],[-93.316217,45.011351],[-93.316174,45.010974],[-93.314596,45.009123],[-93.313313,45.00784],[-93.312042,45.006321],[-93.30821,45.003862],[-93.305933,45.002342],[-93.305835,45.002219],[-93.305791,45.00177],[-93.305642,45.001306],[-93.305458,45.000978],[-93.305345,45.000852],[-93.304976,45.000439],[-93.304404,45.000134],[-93.303797,44.999894],[-93.302769,44.999592],[-93.302409,44.99952],[-93.301499,44.999426],[-93.301055,44.999443],[-93.300656,44.999487],[-93.300015,44.999622],[-93.299545,44.999609],[-93.298965,44.999478],[-93.299185,44.999306],[-93.299331,44.999111],[-93.299393,44.998942],[-93.299424,44.998734],[-93.299435,44.997407],[-93.300698,44.997414],[-93.300715,44.99522],[-93.301942,44.995206],[-93.301927,44.991501],[-93.308227,44.991503],[-93.308292,44.984291],[-93.310918,44.984246],[-93.313296,44.984138],[-93.316046,44.983942],[-93.31846,44.983998],[-93.318477,44.987947],[-93.318482,44.989751],[-93.31847,44.991558],[-93.318445,44.998854],[-93.318455,45.000629],[-93.318464,45.004448],[-93.31844,45.013241]]]]}},{"type":"Feature","properties":{"name":"Bryn-Mawr","cartodb_id":37,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.309598,44.978077],[-93.3059,44.9776],[-93.305345,44.976629],[-93.287404,44.977729],[-93.290852,44.976296],[-93.296347,44.973331],[-93.296395,44.9733],[-93.299524,44.969879],[-93.301269,44.969605],[-93.3034,44.9696],[-93.30456,44.969242],[-93.315025,44.966379],[-93.32056,44.965943],[-93.320522,44.959309],[-93.32698,44.959306],[-93.327399,44.959311],[-93.328264,44.959322],[-93.328652,44.960161],[-93.328836,44.961588],[-93.328825,44.961681],[-93.328763,44.961752],[-93.328722,44.965489],[-93.328721,44.968127],[-93.328677,44.969828],[-93.3284,44.9702],[-93.3284,44.974558],[-93.328413,44.977139],[-93.319813,44.977148],[-93.318526,44.977163],[-93.318515,44.978945],[-93.318511,44.980742],[-93.313046,44.980745],[-93.313101,44.979986],[-93.312256,44.979088],[-93.309598,44.978077]]]]}},{"type":"Feature","properties":{"name":"CEDAR - ISLES - DEAN","cartodb_id":38,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.328261,44.958398],[-93.328264,44.959322],[-93.327399,44.959311],[-93.32698,44.959306],[-93.320522,44.959309],[-93.314951,44.959219],[-93.315054,44.957427],[-93.317292,44.955304],[-93.314899,44.954845],[-93.304743,44.954701],[-93.30513,44.951151],[-93.30498,44.950846],[-93.304942,44.950517],[-93.305003,44.95027],[-93.305002,44.950101],[-93.304996,44.948707],[-93.304856,44.948369],[-93.31021,44.948343],[-93.318061,44.948401],[-93.320583,44.948419],[-93.328855,44.948446],[-93.328779,44.952073],[-93.328825,44.953731],[-93.328315,44.956432],[-93.328272,44.957352],[-93.328261,44.958398]]]]}},{"type":"Feature","properties":{"name":"COLUMBIA PARK","cartodb_id":39,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.278188,45.035349],[-93.271757,45.035398],[-93.268482,45.035557],[-93.267699,45.035542],[-93.26243,45.035537],[-93.255477,45.035536],[-93.247028,45.035572],[-93.246969,45.035519],[-93.247289,45.033933],[-93.247313,45.025698],[-93.247357,45.02401],[-93.247338,45.016771],[-93.259174,45.016829],[-93.263119,45.016816],[-93.263161,45.018897],[-93.262767,45.020397],[-93.262702,45.021169],[-93.262696,45.021229],[-93.262635,45.022586],[-93.262661,45.024072],[-93.262604,45.027603],[-93.277754,45.02758],[-93.278238,45.027659],[-93.278604,45.027845],[-93.278842,45.028039],[-93.279232,45.028617],[-93.280051,45.029521],[-93.282227,45.029528],[-93.284012,45.032505],[-93.283198,45.035393],[-93.278188,45.035349]]]]}},{"type":"Feature","properties":{"name":"Camden Industrial","cartodb_id":40,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.281354,45.04218],[-93.281995,45.040567],[-93.283198,45.035393],[-93.284012,45.032505],[-93.282227,45.029528],[-93.282098,45.029313],[-93.278145,45.024017],[-93.280844,45.023824],[-93.282602,45.023918],[-93.284364,45.026873],[-93.28549,45.028697],[-93.285884,45.029117],[-93.28611,45.029233],[-93.286457,45.029295],[-93.28631,45.029353],[-93.286244,45.029475],[-93.286287,45.029597],[-93.286523,45.029844],[-93.288111,45.031499],[-93.288111,45.032854],[-93.288112,45.03515],[-93.288065,45.035456],[-93.287472,45.038549],[-93.28714,45.040339],[-93.286492,45.042133],[-93.281354,45.04218]]]]}},{"type":"Feature","properties":{"name":"Bottineau","cartodb_id":41,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.274634,45.013126],[-93.271733,45.013163],[-93.263086,45.013161],[-93.263072,45.005287],[-93.267668,45.005298],[-93.267667,45.005038],[-93.268887,45.005041],[-93.268884,45.006054],[-93.271674,45.006053],[-93.273755,45.005868],[-93.274634,45.013126]]]]}},{"type":"Feature","properties":{"name":"Logan Park","cartodb_id":42,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.256956,45.006399],[-93.256972,45.007467],[-93.255025,45.007494],[-93.252464,45.007494],[-93.252466,45.007917],[-93.247333,45.007912],[-93.247367,45.005932],[-93.247382,45.002281],[-93.24741,44.998713],[-93.257532,44.9987],[-93.257555,45.005913],[-93.256956,45.006399]]]]}},{"type":"Feature","properties":{"name":"Windom Park","cartodb_id":43,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.247337,45.013163],[-93.229422,45.0132],[-93.226852,45.013212],[-93.219369,45.01327],[-93.225083,45.007782],[-93.2263,45.006614],[-93.226921,45.005938],[-93.237169,45.00598],[-93.243536,45.005946],[-93.247367,45.005932],[-93.247351,45.006905],[-93.247337,45.013163]]]]}},{"type":"Feature","properties":{"name":"Mid-City Industrial","cartodb_id":44,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.207639,45.006208],[-93.207558,44.99163],[-93.210152,44.991648],[-93.217685,44.99154],[-93.226766,44.991451],[-93.227067,44.991625],[-93.227696,44.992349],[-93.228973,44.993214],[-93.230892,44.99329],[-93.2367,44.993284],[-93.237725,44.993279],[-93.238508,44.99545],[-93.238477,44.997856],[-93.238163,44.998698],[-93.237827,44.9996],[-93.236659,45.001327],[-93.233405,45.002681],[-93.229945,45.002338],[-93.225817,45.001186],[-93.222957,45.000797],[-93.220608,45.000954],[-93.218596,45.001363],[-93.215459,45.002793],[-93.21119,45.004658],[-93.207639,45.006208]]]]}},{"type":"Feature","properties":{"name":"Marcy Holmes","cartodb_id":45,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.247356,44.996277],[-93.247316,44.991398],[-93.246963,44.991226],[-93.246158,44.991491],[-93.242278,44.991492],[-93.24193,44.991057],[-93.238501,44.988669],[-93.237455,44.988096],[-93.230723,44.984533],[-93.235099,44.978942],[-93.240676,44.981143],[-93.242169,44.978302],[-93.244953,44.978815],[-93.24558,44.978821],[-93.251695,44.979853],[-93.256941,44.981845],[-93.259473,44.9832],[-93.257806,44.983719],[-93.256875,44.98425],[-93.256291,44.984862],[-93.254001,44.987789],[-93.253212,44.988759],[-93.252361,44.989847],[-93.249904,44.993021],[-93.247356,44.996277]]]]}},{"type":"Feature","properties":{"name":"PROSPECT PARK - EAST RIVER ROAD","cartodb_id":46,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.219678,44.979297],[-93.207488,44.976639],[-93.207513,44.971879],[-93.207707,44.969568],[-93.20772,44.968006],[-93.207756,44.964609],[-93.207755,44.962807],[-93.207748,44.960415],[-93.207727,44.960007],[-93.207648,44.959783],[-93.207704,44.959619],[-93.207723,44.958443],[-93.208088,44.956593],[-93.207394,44.954554],[-93.207324,44.952913],[-93.212066,44.956382],[-93.222452,44.963881],[-93.225463,44.966025],[-93.227078,44.966888],[-93.227086,44.968901],[-93.227113,44.970215],[-93.227105,44.973549],[-93.22703,44.97569],[-93.226982,44.976991],[-93.227008,44.98253],[-93.219678,44.979297]]]]}},{"type":"Feature","properties":{"name":"Lowry Hill","cartodb_id":47,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.287404,44.977729],[-93.287485,44.974507],[-93.287461,44.969701],[-93.288091,44.966763],[-93.289656,44.964651],[-93.291525,44.962692],[-93.292129,44.961708],[-93.292729,44.960919],[-93.299682,44.960934],[-93.301277,44.960894],[-93.302925,44.960891],[-93.303709,44.962308],[-93.303854,44.963059],[-93.303758,44.96332],[-93.303496,44.963313],[-93.303241,44.963239],[-93.303255,44.966421],[-93.30453,44.966423],[-93.304542,44.967982],[-93.30456,44.969242],[-93.3034,44.9696],[-93.301269,44.969605],[-93.299524,44.969879],[-93.296395,44.9733],[-93.296347,44.973331],[-93.290852,44.976296],[-93.287404,44.977729]]]]}},{"type":"Feature","properties":{"name":"Downtown West","cartodb_id":48,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.263752,44.985375],[-93.259473,44.9832],[-93.256941,44.981845],[-93.262423,44.975349],[-93.26379,44.975927],[-93.267887,44.971104],[-93.268736,44.969829],[-93.269945,44.969802],[-93.270201,44.969826],[-93.271004,44.969821],[-93.273538,44.970864],[-93.277851,44.972652],[-93.278882,44.972924],[-93.280777,44.97525],[-93.281063,44.975739],[-93.281059,44.975893],[-93.28145,44.976848],[-93.281629,44.977363],[-93.281651,44.977931],[-93.281638,44.978924],[-93.279606,44.980369],[-93.278757,44.980827],[-93.277559,44.9812],[-93.277429,44.981241],[-93.276438,44.981677],[-93.275982,44.982042],[-93.272512,44.98452],[-93.270259,44.982932],[-93.269076,44.982149],[-93.266813,44.983799],[-93.266074,44.984275],[-93.265298,44.98469],[-93.263752,44.985375]]]]}},{"type":"Feature","properties":{"name":"CEDAR RIVERSIDE","cartodb_id":49,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.244953,44.978815],[-93.242169,44.978302],[-93.241524,44.977842],[-93.239101,44.974853],[-93.242501,44.974845],[-93.243507,44.975526],[-93.244009,44.975564],[-93.245694,44.975541],[-93.245873,44.974947],[-93.245818,44.974227],[-93.24587,44.973365],[-93.245738,44.972295],[-93.24572,44.972154],[-93.24566,44.971166],[-93.245672,44.970023],[-93.24248,44.969992],[-93.2419,44.969987],[-93.238095,44.970598],[-93.235931,44.969495],[-93.230381,44.968454],[-93.227078,44.966888],[-93.225463,44.966025],[-93.228942,44.96452],[-93.2311,44.964202],[-93.242044,44.964249],[-93.244892,44.964591],[-93.247596,44.96577],[-93.250883,44.965982],[-93.250949,44.965986],[-93.251744,44.965968],[-93.252408,44.969335],[-93.25094,44.97171],[-93.250891,44.971766],[-93.249242,44.973675],[-93.246236,44.976887],[-93.244953,44.978815]]]]}},{"type":"Feature","properties":{"name":"Northeast Park","cartodb_id":50,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.21927,45.013373],[-93.218786,45.013344],[-93.217447,45.013347],[-93.217417,45.00619],[-93.207639,45.006208],[-93.21119,45.004658],[-93.215459,45.002793],[-93.218596,45.001363],[-93.220608,45.000954],[-93.222957,45.000797],[-93.225817,45.001186],[-93.229945,45.002338],[-93.233405,45.002681],[-93.236659,45.001327],[-93.237827,44.9996],[-93.238163,44.998698],[-93.24741,44.998713],[-93.247382,45.002281],[-93.247367,45.005932],[-93.243536,45.005946],[-93.237169,45.00598],[-93.226921,45.005938],[-93.2263,45.006614],[-93.225083,45.007782],[-93.219369,45.01327],[-93.21927,45.013373]]]]}},{"type":"Feature","properties":{"name":"Waite Park","cartodb_id":51,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.234571,45.023066],[-93.235146,45.023349],[-93.236142,45.023729],[-93.237105,45.023926],[-93.240949,45.023929],[-93.242571,45.023913],[-93.242889,45.023955],[-93.243369,45.024183],[-93.243728,45.02449],[-93.243992,45.024897],[-93.244239,45.025159],[-93.244413,45.025343],[-93.244908,45.025632],[-93.245418,45.025706],[-93.247313,45.025698],[-93.247289,45.033933],[-93.24698,45.035555],[-93.244797,45.03556],[-93.237108,45.035593],[-93.226933,45.035678],[-93.226866,45.018922],[-93.228155,45.018993],[-93.228828,45.019064],[-93.229613,45.019221],[-93.230713,45.019667],[-93.231296,45.020043],[-93.231744,45.020458],[-93.232537,45.021465],[-93.232592,45.021535],[-93.233279,45.022262],[-93.233962,45.022719],[-93.234571,45.023066]]]]}},{"type":"Feature","properties":{"name":"Sumner-Glenwood","cartodb_id":52,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.294096,44.988996],[-93.291038,44.988994],[-93.290557,44.989311],[-93.290166,44.989015],[-93.287987,44.989015],[-93.287975,44.986555],[-93.287416,44.979421],[-93.287982,44.979481],[-93.289513,44.979696],[-93.293024,44.980194],[-93.297149,44.980665],[-93.297144,44.981869],[-93.297108,44.982087],[-93.296986,44.98229],[-93.296812,44.982452],[-93.296561,44.982585],[-93.296356,44.982645],[-93.295215,44.982819],[-93.294932,44.982921],[-93.294707,44.98303],[-93.294296,44.983405],[-93.294095,44.983841],[-93.294096,44.988996]]]]}},{"type":"Feature","properties":{"name":"McKinley","cartodb_id":53,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.293081,45.023967],[-93.283877,45.023924],[-93.282602,45.023918],[-93.280844,45.023824],[-93.278145,45.024017],[-93.274634,45.013126],[-93.282642,45.013113],[-93.293057,45.013138],[-93.293081,45.023967]]]]}},{"type":"Feature","properties":{"name":"Hawthorne","cartodb_id":54,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.293057,45.013138],[-93.283385,45.013114],[-93.282642,45.013113],[-93.274634,45.013126],[-93.273755,45.005868],[-93.275182,44.998972],[-93.277512,44.999106],[-93.294088,44.999143],[-93.294115,45.005949],[-93.294313,45.00595],[-93.294305,45.013146],[-93.293057,45.013138]]]]}},{"type":"Feature","properties":{"name":"St. Anthony West","cartodb_id":55,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.275182,44.998972],[-93.27082,44.998706],[-93.260242,44.998724],[-93.257532,44.9987],[-93.257517,44.996937],[-93.257679,44.995026],[-93.255036,44.991177],[-93.25839,44.989971],[-93.261757,44.989018],[-93.263265,44.99035],[-93.264975,44.990758],[-93.266318,44.990523],[-93.267878,44.990081],[-93.273124,44.993008],[-93.274477,44.994809],[-93.275182,44.998972]]]]}},{"type":"Feature","properties":{"name":"Folwell","cartodb_id":56,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.308329,45.024089],[-93.293081,45.023967],[-93.293057,45.013138],[-93.294305,45.013146],[-93.308231,45.013241],[-93.308329,45.024089]]]]}},{"type":"Feature","properties":{"name":"Lind-Bohanon","cartodb_id":57,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288111,45.032854],[-93.288192,45.032946],[-93.289136,45.033588],[-93.290135,45.034274],[-93.292199,45.035555],[-93.297063,45.037256],[-93.298627,45.037593],[-93.299068,45.037735],[-93.299065,45.03781],[-93.29921,45.043919],[-93.299177,45.051134],[-93.284318,45.051111],[-93.283527,45.051122],[-93.28154,45.051145],[-93.280758,45.043874],[-93.281354,45.04218],[-93.286492,45.042133],[-93.28714,45.040339],[-93.287472,45.038549],[-93.288065,45.035456],[-93.288112,45.03515],[-93.288111,45.032854]]]]}},{"type":"Feature","properties":{"name":"Victory","cartodb_id":58,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.319362,45.042362],[-93.317812,45.042097],[-93.314233,45.040965],[-93.31136,45.040451],[-93.306673,45.039363],[-93.306588,45.035457],[-93.305997,45.03545],[-93.305926,45.031304],[-93.308486,45.031319],[-93.308329,45.024089],[-93.318523,45.024103],[-93.318642,45.029512],[-93.318855,45.037025],[-93.318914,45.037254],[-93.319176,45.03755],[-93.319249,45.037752],[-93.319268,45.038551],[-93.319306,45.040174],[-93.323154,45.04021],[-93.323235,45.043071],[-93.319356,45.042149],[-93.319362,45.042362]]]]}},{"type":"Feature","properties":{"name":"Field","cartodb_id":59,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.274776,44.919654],[-93.26896,44.919718],[-93.268021,44.919715],[-93.26769,44.919724],[-93.266418,44.919719],[-93.262614,44.919715],[-93.262616,44.917906],[-93.262642,44.914304],[-93.262617,44.911086],[-93.264112,44.910958],[-93.266004,44.912348],[-93.267655,44.912528],[-93.269633,44.912356],[-93.270764,44.910805],[-93.274904,44.909493],[-93.274776,44.919654]]]]}},{"type":"Feature","properties":{"name":"King Field","cartodb_id":60,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288202,44.937711],[-93.274691,44.937744],[-93.274678,44.934121],[-93.274769,44.926888],[-93.274776,44.919654],[-93.288317,44.91956],[-93.288202,44.937711]]]]}},{"type":"Feature","properties":{"name":"CARAG","cartodb_id":61,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.298284,44.948363],[-93.288096,44.948363],[-93.288202,44.937711],[-93.298395,44.937705],[-93.298284,44.948363]]]]}},{"type":"Feature","properties":{"name":"Central","cartodb_id":62,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.274721,44.948352],[-93.262677,44.948357],[-93.262492,44.93415],[-93.274678,44.934121],[-93.274691,44.937744],[-93.274721,44.948352]]]]}},{"type":"Feature","properties":{"name":"Longfellow","cartodb_id":63,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.217324,44.953266],[-93.216574,44.953917],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217322,44.953266],[-93.217324,44.953266]],[[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266]]],[[[-93.217335,44.953265],[-93.217324,44.953266],[-93.217324,44.953266],[-93.217335,44.953265]]],[[[-93.217321,44.953266],[-93.217322,44.953266],[-93.217322,44.953266],[-93.217323,44.953266],[-93.217322,44.953266],[-93.217321,44.953266]]],[[[-93.217335,44.953265],[-93.217324,44.953266],[-93.217324,44.953265],[-93.217323,44.953266],[-93.217322,44.953266],[-93.217322,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217843,44.951968],[-93.217845,44.941437],[-93.228347,44.94135],[-93.233469,44.941345],[-93.2373,44.946906],[-93.238298,44.948375],[-93.245689,44.959137],[-93.244459,44.958449],[-93.240238,44.954974],[-93.237278,44.953963],[-93.23484,44.953623],[-93.227011,44.953527],[-93.218674,44.953247],[-93.217335,44.953265]],[[-93.217324,44.953265],[-93.217323,44.953266],[-93.217323,44.953266],[-93.217324,44.953265]],[[-93.217322,44.953266],[-93.217323,44.953266],[-93.217323,44.953266],[-93.217322,44.953266],[-93.217322,44.953266]],[[-93.217322,44.953266],[-93.217322,44.953266],[-93.217322,44.953266],[-93.217322,44.953266]]],[[[-93.217324,44.953266],[-93.217323,44.953266],[-93.217323,44.953266],[-93.217324,44.953266],[-93.217324,44.953266]]],[[[-93.217322,44.953266],[-93.217322,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217322,44.953266]]],[[[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266],[-93.217321,44.953266]]]]}},{"type":"Feature","properties":{"name":"Corcoran","cartodb_id":64,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.247418,44.948371],[-93.238298,44.948375],[-93.2373,44.946906],[-93.233469,44.941345],[-93.231011,44.937766],[-93.247366,44.937737],[-93.247418,44.948371]]]]}},{"type":"Feature","properties":{"name":"Cooper","cartodb_id":65,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.212066,44.956382],[-93.207324,44.952913],[-93.201267,44.948369],[-93.199996,44.941572],[-93.217845,44.941438],[-93.217843,44.951968],[-93.217321,44.953266],[-93.216574,44.953917],[-93.216505,44.953988],[-93.215282,44.954546],[-93.212066,44.956382]]]]}},{"type":"Feature","properties":{"name":"Whittier","cartodb_id":66,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.288003,44.962696],[-93.269246,44.962696],[-93.269272,44.959647],[-93.269584,44.956618],[-93.269706,44.956076],[-93.271768,44.953473],[-93.273123,44.951999],[-93.274673,44.949919],[-93.274721,44.948352],[-93.288096,44.948363],[-93.288027,44.957313],[-93.288003,44.962696]]]]}},{"type":"Feature","properties":{"name":"East Isles","cartodb_id":67,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.302925,44.960891],[-93.301277,44.960894],[-93.299682,44.960934],[-93.292729,44.960919],[-93.294768,44.958219],[-93.296786,44.955548],[-93.298264,44.952182],[-93.298284,44.948363],[-93.304856,44.948369],[-93.304996,44.948707],[-93.305002,44.950101],[-93.305003,44.95027],[-93.304942,44.950517],[-93.30498,44.950846],[-93.30513,44.951151],[-93.304743,44.954701],[-93.302925,44.960891]]]]}},{"type":"Feature","properties":{"name":"Kenwood","cartodb_id":68,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.32056,44.965943],[-93.315025,44.966379],[-93.30456,44.969242],[-93.304542,44.967982],[-93.30453,44.966423],[-93.303255,44.966421],[-93.303241,44.963239],[-93.303496,44.963313],[-93.303758,44.96332],[-93.303854,44.963059],[-93.303709,44.962308],[-93.302925,44.960891],[-93.304743,44.954701],[-93.314899,44.954845],[-93.317292,44.955304],[-93.315054,44.957427],[-93.314951,44.959219],[-93.320522,44.959309],[-93.32056,44.965943]]]]}},{"type":"Feature","properties":{"name":"Harrison","cartodb_id":69,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.307732,44.984302],[-93.294095,44.984272],[-93.294095,44.983841],[-93.294206,44.9836],[-93.294296,44.983405],[-93.294707,44.98303],[-93.294932,44.982921],[-93.295215,44.982819],[-93.296356,44.982645],[-93.296561,44.982585],[-93.296812,44.982452],[-93.296986,44.98229],[-93.297108,44.982087],[-93.297144,44.981869],[-93.297149,44.980665],[-93.293024,44.980194],[-93.289513,44.979696],[-93.287982,44.979481],[-93.287416,44.979421],[-93.287404,44.977729],[-93.305345,44.976629],[-93.3059,44.9776],[-93.309598,44.978077],[-93.312256,44.979088],[-93.313101,44.979986],[-93.313046,44.980745],[-93.318511,44.980742],[-93.31846,44.983998],[-93.316046,44.983942],[-93.313296,44.984138],[-93.310918,44.984246],[-93.308292,44.984291],[-93.307732,44.984302]]]]}},{"type":"Feature","properties":{"name":"NICOLLET ISLAND - EAST BANK","cartodb_id":70,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.267878,44.990081],[-93.266318,44.990523],[-93.264975,44.990758],[-93.263265,44.99035],[-93.261757,44.989018],[-93.25839,44.989971],[-93.255036,44.991177],[-93.249904,44.993021],[-93.252361,44.989847],[-93.253212,44.988759],[-93.254001,44.987789],[-93.256291,44.984862],[-93.256875,44.98425],[-93.257806,44.983719],[-93.259473,44.9832],[-93.263752,44.985375],[-93.265911,44.987586],[-93.267878,44.990081]]]]}},{"type":"Feature","properties":{"name":"Near - North","cartodb_id":71,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.298965,44.999478],[-93.297746,44.999143],[-93.294088,44.999143],[-93.277512,44.999106],[-93.275182,44.998972],[-93.274477,44.994809],[-93.273124,44.993008],[-93.275468,44.992305],[-93.277249,44.992018],[-93.285741,44.991947],[-93.287503,44.990414],[-93.287987,44.989015],[-93.290166,44.989015],[-93.290557,44.989311],[-93.291038,44.988994],[-93.294096,44.988996],[-93.294095,44.984272],[-93.307732,44.984302],[-93.307734,44.984302],[-93.308292,44.984291],[-93.308227,44.991503],[-93.301927,44.991501],[-93.301942,44.995206],[-93.300715,44.99522],[-93.300698,44.997414],[-93.299435,44.997407],[-93.299424,44.998734],[-93.299393,44.998942],[-93.299331,44.999111],[-93.299185,44.999306],[-93.298965,44.999478]]]]}},{"type":"Feature","properties":{"name":"North Loop","cartodb_id":72,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.285741,44.991947],[-93.277249,44.992018],[-93.275468,44.992305],[-93.273124,44.993008],[-93.267878,44.990081],[-93.265911,44.987586],[-93.263752,44.985375],[-93.265298,44.98469],[-93.266074,44.984275],[-93.266813,44.983799],[-93.269076,44.982149],[-93.270259,44.982932],[-93.272512,44.98452],[-93.275982,44.982042],[-93.276438,44.981677],[-93.277429,44.981241],[-93.277559,44.9812],[-93.278757,44.980827],[-93.279606,44.980369],[-93.281638,44.978924],[-93.281651,44.977931],[-93.281629,44.977363],[-93.28145,44.976848],[-93.281059,44.975893],[-93.282162,44.975809],[-93.284789,44.975224],[-93.287472,44.974996],[-93.287404,44.977729],[-93.287416,44.979421],[-93.287975,44.986555],[-93.287987,44.989015],[-93.287503,44.990414],[-93.285741,44.991947]]]]}},{"type":"Feature","properties":{"name":"Elliot Park","cartodb_id":73,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.26379,44.975927],[-93.262423,44.975349],[-93.261057,44.974777],[-93.259663,44.974228],[-93.260491,44.973244],[-93.253688,44.970377],[-93.252408,44.969335],[-93.251744,44.965968],[-93.253812,44.965806],[-93.261032,44.965728],[-93.268322,44.965631],[-93.269843,44.965988],[-93.269841,44.968046],[-93.269382,44.969815],[-93.268736,44.969829],[-93.267887,44.971104],[-93.26379,44.975927]]]]}},{"type":"Feature","properties":{"name":"Downtown East","cartodb_id":74,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.256941,44.981845],[-93.251695,44.979853],[-93.24558,44.978821],[-93.244953,44.978815],[-93.246236,44.976887],[-93.249242,44.973675],[-93.250891,44.971766],[-93.25094,44.97171],[-93.252408,44.969335],[-93.253688,44.970377],[-93.260491,44.973244],[-93.259663,44.974228],[-93.261057,44.974777],[-93.262423,44.975349],[-93.256941,44.981845]]]]}},{"type":"Feature","properties":{"name":"UNIVERSITY OF MINNESOTA","cartodb_id":75,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.240676,44.981143],[-93.235099,44.978942],[-93.230723,44.984533],[-93.227008,44.98253],[-93.226982,44.976991],[-93.22703,44.97569],[-93.227105,44.973549],[-93.227113,44.970215],[-93.227086,44.968901],[-93.227078,44.966888],[-93.230381,44.968454],[-93.235931,44.969495],[-93.238095,44.970598],[-93.2419,44.969987],[-93.24248,44.969992],[-93.245672,44.970023],[-93.24566,44.971166],[-93.24572,44.972154],[-93.245738,44.972295],[-93.24587,44.973365],[-93.245818,44.974227],[-93.245873,44.974947],[-93.245694,44.975541],[-93.244009,44.975564],[-93.243507,44.975526],[-93.242501,44.974845],[-93.239101,44.974853],[-93.241524,44.977842],[-93.242169,44.978302],[-93.240676,44.981143]]]]}},{"type":"Feature","properties":{"name":"Seward","cartodb_id":76,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.246273,44.960526],[-93.247109,44.961479],[-93.249478,44.965419],[-93.249775,44.96591],[-93.247596,44.96577],[-93.244892,44.964591],[-93.242044,44.964249],[-93.2311,44.964202],[-93.228942,44.96452],[-93.225463,44.966025],[-93.222452,44.963881],[-93.212066,44.956382],[-93.215282,44.954546],[-93.216505,44.953988],[-93.216574,44.953917],[-93.217322,44.953266],[-93.218674,44.953247],[-93.227011,44.953527],[-93.23484,44.953623],[-93.237278,44.953963],[-93.240238,44.954974],[-93.244459,44.958449],[-93.245689,44.959137],[-93.24673,44.960108],[-93.246273,44.960526]]]]}},{"type":"Feature","properties":{"name":"Loring Park","cartodb_id":77,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.287472,44.974996],[-93.284789,44.975224],[-93.282162,44.975809],[-93.281059,44.975893],[-93.281063,44.975739],[-93.280778,44.975252],[-93.278882,44.972924],[-93.277851,44.972652],[-93.273538,44.970864],[-93.271004,44.969821],[-93.270201,44.969826],[-93.269945,44.969802],[-93.269382,44.969815],[-93.269841,44.968046],[-93.269843,44.965988],[-93.270096,44.966048],[-93.272007,44.966574],[-93.274129,44.966683],[-93.276526,44.966504],[-93.277569,44.96622],[-93.282326,44.964929],[-93.283309,44.964761],[-93.283933,44.964631],[-93.285717,44.964428],[-93.287964,44.9642],[-93.288091,44.966763],[-93.287461,44.969701],[-93.287485,44.974507],[-93.287472,44.974996]]]]}},{"type":"Feature","properties":{"name":"Como","cartodb_id":78,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.237725,44.993279],[-93.2367,44.993284],[-93.230892,44.99329],[-93.228973,44.993214],[-93.227696,44.992349],[-93.227067,44.991625],[-93.226766,44.991451],[-93.217685,44.99154],[-93.210152,44.991648],[-93.207558,44.99163],[-93.207488,44.976639],[-93.219678,44.979297],[-93.227008,44.98253],[-93.230723,44.984533],[-93.237455,44.988096],[-93.238501,44.988669],[-93.24193,44.991057],[-93.242278,44.991492],[-93.236711,44.991492],[-93.237725,44.993279]]]]}},{"type":"Feature","properties":{"name":"Beltrami","cartodb_id":79,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.24741,44.998713],[-93.238163,44.998698],[-93.238477,44.997856],[-93.238508,44.99545],[-93.237725,44.993279],[-93.236711,44.991492],[-93.242278,44.991492],[-93.246158,44.991491],[-93.246963,44.991226],[-93.247316,44.991398],[-93.247356,44.996277],[-93.24741,44.998713]]]]}},{"type":"Feature","properties":{"name":"St. Anthony East","cartodb_id":80,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.257532,44.9987],[-93.24741,44.998713],[-93.247356,44.996277],[-93.249904,44.993021],[-93.255036,44.991177],[-93.257679,44.995026],[-93.257517,44.996937],[-93.257532,44.9987]]]]}},{"type":"Feature","properties":{"name":"Sheridan","cartodb_id":81,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.273755,45.005868],[-93.271674,45.006053],[-93.268884,45.006054],[-93.268887,45.005041],[-93.267667,45.005038],[-93.267668,45.005298],[-93.263072,45.005287],[-93.260247,45.005246],[-93.257553,45.005245],[-93.257532,44.9987],[-93.260242,44.998724],[-93.27082,44.998706],[-93.275182,44.998972],[-93.273755,45.005868]]]]}},{"type":"Feature","properties":{"name":"Holland","cartodb_id":82,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.263119,45.016816],[-93.259174,45.016829],[-93.247338,45.016771],[-93.247337,45.013163],[-93.247396,45.007911],[-93.252486,45.007902],[-93.252444,45.007509],[-93.255464,45.00747],[-93.256972,45.007467],[-93.256956,45.006399],[-93.257555,45.005913],[-93.257553,45.005245],[-93.260247,45.005246],[-93.263072,45.005287],[-93.263086,45.013161],[-93.263119,45.016816]]]]}},{"type":"Feature","properties":{"name":"Marshall Terrace","cartodb_id":83,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.282227,45.029528],[-93.280051,45.029521],[-93.279232,45.028617],[-93.278842,45.028039],[-93.278604,45.027845],[-93.278238,45.027659],[-93.277754,45.02758],[-93.262604,45.027603],[-93.262661,45.024072],[-93.262635,45.022586],[-93.262696,45.021229],[-93.262702,45.021169],[-93.262767,45.020397],[-93.263161,45.018897],[-93.263119,45.016816],[-93.263086,45.013161],[-93.271733,45.013163],[-93.274634,45.013126],[-93.278145,45.024017],[-93.282098,45.029313],[-93.282227,45.029528]]]]}},{"type":"Feature","properties":{"name":"Audubon Park","cartodb_id":84,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.247313,45.025698],[-93.245418,45.025706],[-93.244908,45.025632],[-93.244413,45.025343],[-93.244239,45.025159],[-93.243992,45.024897],[-93.243728,45.02449],[-93.243369,45.024183],[-93.242889,45.023955],[-93.242571,45.023913],[-93.240949,45.023929],[-93.237105,45.023926],[-93.236142,45.023729],[-93.235146,45.023349],[-93.234571,45.023066],[-93.233962,45.022719],[-93.233279,45.022262],[-93.232592,45.021535],[-93.232537,45.021465],[-93.231744,45.020458],[-93.231296,45.020043],[-93.230713,45.019667],[-93.229613,45.019221],[-93.228828,45.019064],[-93.228155,45.018993],[-93.226866,45.018922],[-93.226852,45.013212],[-93.229422,45.0132],[-93.247337,45.013163],[-93.247338,45.016771],[-93.247357,45.02401],[-93.247313,45.025698]]]]}},{"type":"Feature","properties":{"name":"Ventura Village","cartodb_id":85,"created_at":"2013-02-20T04:06:07.501Z","updated_at":"2013-02-20T04:06:07.744Z"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.269298,44.96586],[-93.268322,44.965631],[-93.262859,44.965703],[-93.261032,44.965728],[-93.25824,44.965758],[-93.254193,44.965802],[-93.253812,44.965806],[-93.251744,44.965968],[-93.250949,44.965986],[-93.250883,44.965982],[-93.249775,44.96591],[-93.249478,44.965419],[-93.247551,44.962214],[-93.247112,44.961478],[-93.246286,44.960526],[-93.24673,44.960107],[-93.247567,44.960935],[-93.249837,44.960927],[-93.249842,44.95913],[-93.256135,44.959128],[-93.259626,44.959129],[-93.262549,44.959122],[-93.262549,44.960922],[-93.266194,44.960905],[-93.269261,44.960889],[-93.269246,44.962696],[-93.269246,44.963997],[-93.269298,44.96586]]]]}}]} |
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 19 columns, instead of 17 in line 2.
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
group,schoolname,nativeAmerican,nativeAmericanpct,africanamerican,africanamericanpct,asianamerican,asianamericanpct,hispanicamerican,hispanicamericanpct,whiteamerican,whiteamericanpct,pacificislander,pacificislanderpct,total,frl,ayp,long,lat | |
ELM-K_8,ANDERSEN UNITED,58,5.2,234,21.0,23,2.1,748,67.2,50,4.5,0,0.0,1113,98.8,0,44.953,-93.259321 | |
ELM-K_8,ANISHINABE ACAD,277,81.0,34,9.9,2,0.6,19,5.6,9,2.6,1,0.3,342,96.2,0 | |
ELM-K_8,ARMATAGE,3,0.5,110,18.6,33,5.6,31,5.2,413,69.9,1,0.2,591,28.4,1 | |
ELM-K_8,BANCROFT,53,10.0,145,27.5,14,2.7,229,43.4,87,16.5,0,0.0,528,87.8,0 | |
ELM-K_8,BARTON,8,1.1,168,22.4,38,5.1,28,3.7,505,67.4,2,0.3,749,25.9,0 | |
ELM-K_8,BETHUNE,15,4.6,268,82.5,15,4.6,11,3.4,16,4.9,0,0.0,325,99.7,0 | |
ELM-K_8,BRYN MAWR,9,2.2,208,51.1,120,29.5,24,5.9,45,11.1,1,0.2,407,81.7,0 | |
ELM-K_8,BURROUGHS,7,0.9,51,6.4,38,4.8,56,7.1,641,80.7,1,0.1,794,12,0 | |
ELM-K_8,CITY VIEW,0,0.0,64,81.0,7,8.9,2,2.5,6,7.6,0,0.0,79,97.5,0 | |
ELM-K_8,DOWLING,14,2.8,121,24.0,27,5.3,30,5.9,312,61.8,1,0.2,505,38.8,1 | |
ELM-K_8,EMERSON SILC,13,2.9,47,10.3,6,1.3,301,66.2,87,19.1,1,0.2,455,79.4,0 | |
ELM-K_8,FIELD,4,0.8,99,18.9,29,5.5,37,7.1,353,67.4,2,0.4,524,25.5,1 | |
ELM-K_8,GREEN,32,5.2,139,22.5,18,2.9,389,63.0,38,6.2,1,0.2,617,95,0 | |
ELM-K_8,HALE,8,1.3,83,13.1,32,5.0,21,3.3,491,77.2,1,0.2,636,16.5,1 | |
ELM-K_8,HALL,5,1.3,304,78.8,23,6.0,16,4.1,38,9.8,0,0.0,386,88.3,0 | |
ELM-K_8,HIAWATHA,24,7.6,65,20.5,9,2.8,60,18.9,159,50.2,0,0.0,317,54.9,1 | |
ELM-K_8,HMONG INTERNATION,6,1.3,103,22.1,321,68.9,21,4.5,15,3.2,0,0.0,466,90.3,0 | |
ELM-K_8,JEFFERSON,27,4.2,235,36.8,19,3.0,300,46.9,55,8.6,3,0.5,639,94.8,0 | |
ELM-K_8,KENNY,6,1.5,126,32.0,12,3.0,24,6.1,226,57.4,0,0.0,394,37.1,1 | |
ELM-K_8,KENWOOD,10,2.2,80,17.4,32,7.0,27,5.9,309,67.2,2,0.4,460,28.3,0 | |
ELM-K_8,LAKE HARRIET LOWER,0,0.0,15,3.8,16,4.1,11,2.8,347,89.0,1,0.3,390,7.7,1 | |
ELM-K_8,LAKE HARRIET UPPER,2,0.3,51,7.1,42,5.9,26,3.6,594,83.1,0,0.0,715,8.7,1 | |
ELM-K_8,LK NOKOMIS KEEWAYD,20,6.8,76,25.9,9,3.1,50,17.1,138,47.1,0,0.0,293,56.2,1 | |
ELM-K_8,LK NOKOMIS WENONA,9,2.8,69,21.6,11,3.4,48,15.0,182,56.9,1,0.3,320,52.8,1 | |
ELM-K_8,LORING,14,3.5,158,40.0,58,14.7,36,9.1,129,32.7,0,0.0,395,65.4,1 | |
ELM-K_8,LUCY LANEY,18,2.7,586,88.1,17,2.6,10,1.5,33,5.0,1,0.2,665,98.9,1 | |
ELM-K_8,LYNDALE,6,1.1,322,60.5,16,3.0,60,11.3,127,23.9,1,0.2,532,76.1,0 | |
ELM-K_8,MARCY OPEN,20,3.0,190,28.3,36,5.4,51,7.6,368,54.8,7,1.0,672,44.8,0 | |
ELM-K_8,NELLIE STONE JOHNSON,15,2.0,414,55.6,33,4.4,259,34.8,23,3.1,1,0.1,745,95.7,0 | |
ELM-K_8,NORTHROP,24,5.6,77,18.0,19,4.4,89,20.8,218,50.9,1,0.2,428,49,0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment