Skip to content

Instantly share code, notes, and snippets.

@leenoah1
Created May 14, 2017 15:52
Show Gist options
  • Save leenoah1/8694516dc7dc986a6aadf338e5a55fc8 to your computer and use it in GitHub Desktop.
Save leenoah1/8694516dc7dc986a6aadf338e5a55fc8 to your computer and use it in GitHub Desktop.
MD census Map, GES778 class 12
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<title>md-geometry</title>
<body>
<script src="//d3js.org/d3.v4.min.js"></script>
<script src="//d3js.org/topojson.v2.min.js"></script>
<script src="//d3js.org/d3-scale-chromatic.v1.min.js"></script>
<script>
var width = 960, height = 500;
var svg = d3.select('body').append('svg')
.attr('width', width)
.attr('height', height);
// For d3 representation of various stateplanes, see: d3-stateplane
// We'll set the scale and translate later, based on the data
var projection = d3.geoConicConformal()
.parallels([38 + 18 / 60, 39 + 27 / 60])
.rotate([77, -37 - 40 / 60]);
var path = d3.geoPath()
.projection(projection);
var threshold = d3.scaleThreshold()
.domain([1, 10, 50, 200, 800, 2000, 5000, 10000])
.range(d3.schemeOrRd[9]);
d3.queue()
.defer(d3.json, "tracts.json")
.defer(d3.json, "population.json")
.await(ready);
function ready(error, json, population) {
if (error) throw error;
// Convert topojson to GeoJSON
geojson = topojson.feature(json, json.objects.tracts);
// Set the projection's scale and translate based on the GeoJSON
projection.fitSize([960, 500], geojson);
// Extract an array of features (one tract for each feature)
tracts = geojson.features;
console.log('tracts[0]', tracts[0])
console.log('population[0]', population[0])
console.log('population[1]', population[1])
// Compute population density for each census tract
tracts.forEach(function(tract, i) {
var countyfips = tract.properties.COUNTYFP;
var tractce = tract.properties.TRACTCE;
var pop = +population.filter(function(d) { return (d[2] === countyfips) && (d[3] === tractce); })[0][0];
var aland = tract.properties.ALAND / 2589975.2356; // area in square miles
tract.properties.density = pop / aland;
});
// Tracts
svg.selectAll('path.tract')
.data(tracts)
.enter().append('path')
.attr('d', path)
.attr('class', 'tract')
.style('fill', function(d) { return threshold(d.properties.density); })
.style('stroke', '#000')
.style('stroke-opacity', '0.15')
addLegend();
}
function addLegend() {
var formatNumber = d3.format("d");
var x = d3.scalePow().exponent('.15')
.domain([1, 80000])
.range([0, 300]);
var xAxis = d3.axisBottom(x)
.tickSize(13)
.tickValues(threshold.domain())
.tickFormat(formatNumber)
var g = svg.append("g")
.attr('transform', 'translate(100, 200)')
.call(xAxis);
g.select(".domain")
.remove();
g.selectAll("rect")
.data(threshold.range().map(function(color) {
var d = threshold.invertExtent(color);
if (d[0] == null) d[0] = x.domain()[0];
if (d[1] == null) d[1] = x.domain()[1];
return d;
}))
.enter().insert("rect", ".tick")
.attr("height", 8)
.attr("x", function(d) { return x(d[0]); })
.attr("width", function(d) { return x(d[1]) - x(d[0]); })
.attr("fill", function(d) { return threshold(d[0]); });
g.append("text")
.attr("fill", "#000")
.attr("font-weight", "bold")
.attr("text-anchor", "start")
.attr("y", -6)
.text("Population per square mile");
}
</script>
[["B01003_001E","state","county","tract"],
["3623","24","001","000100"],
["4224","24","001","000200"],
["2757","24","001","000300"],
["2902","24","001","000400"],
["2493","24","001","000500"],
["2753","24","001","000600"],
["3484","24","001","000700"],
["2329","24","001","000800"],
["2625","24","001","001000"],
["1484","24","001","001100"],
["3012","24","001","001200"],
["5188","24","001","001300"],
["4068","24","001","001401"],
["1440","24","001","001402"],
["1915","24","001","001502"],
["1923","24","001","001503"],
["1735","24","001","001600"],
["4782","24","001","001700"],
["5272","24","001","001800"],
["2867","24","001","001900"],
["5845","24","001","002000"],
["3590","24","001","002100"],
["3665","24","001","002200"],
["4057","24","003","701101"],
["7671","24","003","701102"],
["8560","24","003","701200"],
["7634","24","003","701300"],
["3590","24","003","701400"],
["6603","24","003","702100"],
["4183","24","003","702204"],
["5472","24","003","702205"],
["6553","24","003","702206"],
["7323","24","003","702208"],
["4609","24","003","702209"],
["5697","24","003","702300"],
["6672","24","003","702402"],
["6416","24","003","702500"],
["5615","24","003","702601"],
["5628","24","003","702602"],
["5603","24","003","702701"],
["3705","24","003","702702"],
["3546","24","003","706101"],
["4138","24","003","706301"],
["3318","24","003","706302"],
["7382","24","003","706401"],
["2793","24","003","706402"],
["5619","24","003","706500"],
["5403","24","003","706600"],
["5629","24","003","706700"],
["6736","24","003","707001"],
["4819","24","003","707002"],
["3901","24","003","708001"],
["5765","24","003","708004"],
["7979","24","003","730100"],
["5723","24","003","730203"],
["6208","24","003","730204"],
["3209","24","003","730300"],
["4792","24","003","730401"],
["6370","24","003","730402"],
["5955","24","003","730502"],
["7429","24","003","730504"],
["4901","24","003","730505"],
["3849","24","003","730506"],
["6939","24","003","730601"],
["2957","24","003","730603"],
["6803","24","003","730604"],
["7421","24","003","730700"],
["2478","24","003","730800"],
["2442","24","003","730901"],
["4066","24","003","730902"],
["3390","24","003","731002"],
["4169","24","003","731003"],
["4470","24","003","731004"],
["7819","24","003","731102"],
["4982","24","003","731103"],
["4774","24","003","731104"],
["3388","24","003","731105"],
["6460","24","003","731201"],
["6960","24","003","731202"],
["7415","24","003","731203"],
["6164","24","003","731204"],
["7010","24","003","731303"],
["6194","24","003","731306"],
["6435","24","003","731307"],
["3516","24","003","731308"],
["5960","24","003","731309"],
["5153","24","003","731310"],
["8362","24","003","731311"],
["9041","24","003","740102"],
["8398","24","003","740103"],
["7813","24","003","740104"],
["3525","24","003","740105"],
["6965","24","003","740201"],
["5706","24","003","740203"],
["4398","24","003","740303"],
["4154","24","003","740304"],
["11320","24","003","740305"],
["3884","24","003","740400"],
["10213","24","003","740500"],
["4272","24","003","740601"],
["3736","24","003","740602"],
["1822","24","003","740603"],
["5001","24","003","740701"],
["10350","24","003","740702"],
["4494","24","003","740800"],
["7608","24","003","740900"],
["2315","24","003","741000"],
["4138","24","003","750101"],
["2601","24","003","750102"],
["3020","24","003","750201"],
["2995","24","003","750202"],
["1433","24","003","750203"],
["2545","24","003","750300"],
["4280","24","003","750400"],
["6171","24","003","750801"],
["8176","24","003","750803"],
["4230","24","003","750804"],
["3004","24","003","750900"],
["3903","24","003","751000"],
["3827","24","003","751102"],
["5594","24","003","751103"],
["4079","24","003","751200"],
["3963","24","003","751400"],
["6787","24","003","751500"],
["5003","24","003","751600"],
["2702","24","003","751700"],
["21","24","003","980000"],
["0","24","003","990000"],
["4682","24","005","400100"],
["2511","24","005","400200"],
["5590","24","005","400400"],
["2488","24","005","400500"],
["2749","24","005","400600"],
["2920","24","005","400701"],
["1983","24","005","400702"],
["2645","24","005","400800"],
["2219","24","005","400900"],
["2755","24","005","401000"],
["6512","24","005","401101"],
["1104","24","005","401102"],
["3185","24","005","401200"],
["3580","24","005","401301"],
["2648","24","005","401302"],
["1640","24","005","401400"],
["6771","24","005","401503"],
["6644","24","005","401504"],
["4511","24","005","401505"],
["5115","24","005","401506"],
["5602","24","005","401507"],
["3903","24","005","402201"],
["1580","24","005","402202"],
["5223","24","005","402302"],
["7207","24","005","402303"],
["4042","24","005","402304"],
["2088","24","005","402305"],
["3684","24","005","402306"],
["5680","24","005","402307"],
["2151","24","005","402403"],
["5343","24","005","402404"],
["2978","24","005","402405"],
["6439","24","005","402406"],
["1525","24","005","402407"],
["5325","24","005","402503"],
["4203","24","005","402504"],
["3322","24","005","402505"],
["4022","24","005","402506"],
["8898","24","005","402509"],
["2029","24","005","402602"],
["6150","24","005","402603"],
["5631","24","005","402604"],
["2552","24","005","403100"],
["2994","24","005","403201"],
["1999","24","005","403202"],
["2358","24","005","403300"],
["3215","24","005","403401"],
["4559","24","005","403402"],
["5359","24","005","403500"],
["4723","24","005","403601"],
["5705","24","005","403602"],
["7032","24","005","403701"],
["4692","24","005","403702"],
["1623","24","005","403801"],
["2750","24","005","403802"],
["3371","24","005","403803"],
["4990","24","005","404101"],
["5749","24","005","404102"],
["6371","24","005","404201"],
["8861","24","005","404202"],
["5959","24","005","404402"],
["5540","24","005","404403"],
["4676","24","005","404404"],
["7128","24","005","404501"],
["3778","24","005","404502"],
["2573","24","005","404600"],
["2034","24","005","404800"],
["4786","24","005","404900"],
["4525","24","005","405000"],
["5559","24","005","406000"],
["3255","24","005","407001"],
["6105","24","005","407002"],
["6176","24","005","408100"],
["2079","24","005","408200"],
["2966","24","005","408302"],
["3504","24","005","408303"],
["4931","24","005","408304"],
["825","24","005","408400"],
["5353","24","005","408502"],
["3156","24","005","408503"],
["4026","24","005","408505"],
["4626","24","005","408506"],
["6536","24","005","408507"],
["3981","24","005","408601"],
["2049","24","005","408602"],
["2413","24","005","408702"],
["6105","24","005","408703"],
["5840","24","005","408704"],
["2374","24","005","408800"],
["2886","24","005","408900"],
["5445","24","005","410100"],
["4970","24","005","410200"],
["2320","24","005","411101"],
["3043","24","005","411102"],
["3248","24","005","411201"],
["3463","24","005","411202"],
["3741","24","005","411302"],
["5817","24","005","411303"],
["5598","24","005","411306"],
["3844","24","005","411307"],
["3383","24","005","411308"],
["8867","24","005","411309"],
["3752","24","005","411404"],
["4592","24","005","411406"],
["9203","24","005","411407"],
["3400","24","005","411408"],
["5294","24","005","411409"],
["4805","24","005","411410"],
["3632","24","005","420100"],
["2264","24","005","420200"],
["2757","24","005","420301"],
["2704","24","005","420302"],
["1285","24","005","420303"],
["6062","24","005","420401"],
["2210","24","005","420402"],
["3172","24","005","420500"],
["4417","24","005","420600"],
["3617","24","005","420701"],
["2052","24","005","420702"],
["3460","24","005","420800"],
["3206","24","005","420900"],
["1875","24","005","421000"],
["2892","24","005","421101"],
["2151","24","005","421102"],
["1673","24","005","421200"],
["2798","24","005","421300"],
["4191","24","005","430101"],
["2887","24","005","430104"],
["2870","24","005","430200"],
["5844","24","005","430300"],
["4563","24","005","430400"],
["2293","24","005","430600"],
["5157","24","005","430700"],
["3551","24","005","430800"],
["5840","24","005","430900"],
["4706","24","005","440100"],
["2416","24","005","440200"],
["2153","24","005","440300"],
["5314","24","005","440400"],
["3041","24","005","440500"],
["2207","24","005","440600"],
["6756","24","005","440701"],
["5100","24","005","440702"],
["3207","24","005","440800"],
["3653","24","005","440900"],
["3397","24","005","441000"],
["2095","24","005","441101"],
["4863","24","005","441102"],
["4056","24","005","450100"],
["3286","24","005","450200"],
["3247","24","005","450300"],
["2225","24","005","450400"],
["3989","24","005","450501"],
["5418","24","005","450503"],
["5375","24","005","450504"],
["3797","24","005","450800"],
["3896","24","005","450900"],
["1765","24","005","451000"],
["2087","24","005","451100"],
["3838","24","005","451200"],
["3523","24","005","451300"],
["3843","24","005","451401"],
["6399","24","005","451402"],
["4107","24","005","451500"],
["2169","24","005","451600"],
["2770","24","005","451701"],
["1988","24","005","451702"],
["5177","24","005","451801"],
["3811","24","005","451802"],
["4188","24","005","451803"],
["2428","24","005","451900"],
["2405","24","005","452000"],
["3402","24","005","452100"],
["3123","24","005","452300"],
["3350","24","005","452400"],
["3546","24","005","452500"],
["4093","24","005","490100"],
["2825","24","005","490200"],
["6868","24","005","490301"],
["3979","24","005","490302"],
["1721","24","005","490400"],
["3648","24","005","490500"],
["2147","24","005","490601"],
["2966","24","005","490602"],
["2255","24","005","490603"],
["4963","24","005","490605"],
["1760","24","005","490701"],
["3234","24","005","490703"],
["3515","24","005","490800"],
["4465","24","005","490900"],
["2240","24","005","491000"],
["3946","24","005","491100"],
["1843","24","005","491201"],
["1815","24","005","491202"],
["3391","24","005","491300"],
["5735","24","005","491401"],
["3503","24","005","491402"],
["3502","24","005","491500"],
["2817","24","005","491600"],
["4098","24","005","491701"],
["1955","24","005","491900"],
["1564","24","005","492001"],
["3942","24","005","492002"],
["3512","24","005","492101"],
["2325","24","005","492102"],
["4809","24","005","492200"],
["4085","24","005","492300"],
["3991","24","005","492401"],
["6681","24","005","492402"],
["3484","24","005","492500"],
["3795","24","005","492600"],
["0","24","005","980000"],
["0","24","005","980100"],
["0","24","005","980200"],
["3293","24","009","860101"],
["2579","24","009","860102"],
["6292","24","009","860200"],
["3967","24","009","860300"],
["9823","24","009","860401"],
["3448","24","009","860402"],
["5799","24","009","860501"],
["3269","24","009","860502"],
["7859","24","009","860600"],
["2828","24","009","860701"],
["3432","24","009","860702"],
["3870","24","009","860703"],
["6900","24","009","860801"],
["4973","24","009","860802"],
["6675","24","009","860900"],
["1178","24","009","861001"],
["5975","24","009","861003"],
["7633","24","009","861004"],
["0","24","009","990100"],
["3457","24","011","955000"],
["5409","24","011","955100"],
["3858","24","011","955201"],
["2400","24","011","955202"],
["3591","24","011","955301"],
["3144","24","011","955302"],
["2264","24","011","955400"],
["4300","24","011","955500"],
["4336","24","011","955600"],
["4674","24","013","501001"],
["5144","24","013","501002"],
["4105","24","013","502000"],
["5338","24","013","503000"],
["5135","24","013","504100"],
["6161","24","013","504201"],
["5809","24","013","504202"],
["4454","24","013","505101"],
["5361","24","013","505102"],
["3565","24","013","505203"],
["3377","24","013","505205"],
["3471","24","013","505206"],
["3651","24","013","505207"],
["6141","24","013","505208"],
["4588","24","013","506101"],
["3992","24","013","506102"],
["4855","24","013","506200"],
["4617","24","013","507500"],
["5196","24","013","507601"],
["4252","24","013","507602"],
["3800","24","013","507702"],
["3064","24","013","507703"],
["6130","24","013","507704"],
["5981","24","013","507801"],
["4421","24","013","507802"],
["4505","24","013","508101"],
["3184","24","013","508102"],
["6999","24","013","508200"],
["4093","24","013","509001"],
["2736","24","013","509002"],
["1296","24","013","510000"],
["3443","24","013","511000"],
["1470","24","013","512000"],
["4646","24","013","513001"],
["5527","24","013","513002"],
["3689","24","013","514100"],
["5180","24","013","514201"],
["3349","24","013","514202"],
["5016","24","015","030100"],
["4729","24","015","030200"],
["5375","24","015","030400"],
["3735","24","015","030501"],
["5234","24","015","030503"],
["3752","24","015","030505"],
["7075","24","015","030506"],
["3861","24","015","030601"],
["5502","24","015","030602"],
["5323","24","015","030700"],
["5641","24","015","030903"],
["6699","24","015","030904"],
["3034","24","015","030905"],
["9568","24","015","030906"],
["6762","24","015","031201"],
["5335","24","015","031202"],
["3795","24","015","031301"],
["7174","24","015","031302"],
["4193","24","015","031400"],
["5862","24","017","850101"],
["2620","24","017","850102"],
["1055","24","017","850201"],
["4863","24","017","850202"],
["2297","24","017","850300"],
["3778","24","017","850400"],
["2712","24","017","850500"],
["4327","24","017","850600"],
["5580","24","017","850706"],
["5417","24","017","850708"],
["7296","24","017","850709"],
["5378","24","017","850710"],
["5178","24","017","850711"],
["5480","24","017","850712"],
["7077","24","017","850713"],
["4863","24","017","850801"],
["4022","24","017","850802"],
["5750","24","017","850901"],
["6185","24","017","850902"],
["6477","24","017","850904"],
["4634","24","017","850905"],
["4860","24","017","850906"],
["3181","24","017","851001"],
["8858","24","017","851002"],
["2619","24","017","851100"],
["4579","24","017","851200"],
["4469","24","017","851301"],
["4410","24","017","851302"],
["9057","24","017","851400"],
["8076","24","017","851500"],
["0","24","017","990000"],
["2748","24","019","970100"],
["4882","24","019","970200"],
["4919","24","019","970300"],
["3353","24","019","970400"],
["4042","24","019","970500"],
["4792","24","019","970600"],
["4084","24","019","970702"],
["2114","24","019","970804"],
["1680","24","019","970900"],
["0","24","019","990000"],
["4955","24","021","740200"],
["1339","24","021","750100"],
["1611","24","021","750200"],
["1525","24","021","750300"],
["5873","24","021","750503"],
["5845","24","021","750504"],
["6589","24","021","750505"],
["3770","24","021","750506"],
["2582","24","021","750600"],
["5380","24","021","750701"],
["3537","24","021","750702"],
["3046","24","021","750801"],
["4080","24","021","750802"],
["6460","24","021","750803"],
["1056","24","021","751001"],
["4972","24","021","751002"],
["5850","24","021","751003"],
["3982","24","021","751004"],
["4983","24","021","751201"],
["5990","24","021","751202"],
["2034","24","021","751203"],
["3110","24","021","751301"],
["2819","24","021","751302"],
["3085","24","021","751600"],
["2328","24","021","751701"],
["3902","24","021","751702"],
["4309","24","021","751801"],
["3902","24","021","751802"],
["4515","24","021","751901"],
["5895","24","021","751902"],
["6344","24","021","751903"],
["3459","24","021","751904"],
["4982","24","021","752001"],
["3346","24","021","752101"],
["4439","24","021","752102"],
["2363","24","021","752201"],
["3960","24","021","752202"],
["6549","24","021","752204"],
["4611","24","021","752301"],
["4239","24","021","752302"],
["3012","24","021","752303"],
["4953","24","021","752501"],
["2569","24","021","752502"],
["3923","24","021","752601"],
["2552","24","021","752602"],
["4038","24","021","752603"],
["2108","24","021","752801"],
["3430","24","021","752802"],
["3202","24","021","752900"],
["4858","24","021","753001"],
["2987","24","021","753002"],
["3964","24","021","765100"],
["6011","24","021","766800"],
["2826","24","021","767500"],
["3624","24","021","767600"],
["3410","24","021","770700"],
["1969","24","021","772200"],
["4319","24","021","773500"],
["4068","24","021","775302"],
["3734","24","021","775400"],
["4080","24","021","775600"],
["4109","24","023","000100"],
["4079","24","023","000200"],
["2778","24","023","000300"],
["3076","24","023","000400"],
["3763","24","023","000500"],
["6350","24","023","000600"],
["5790","24","023","000700"],
["3726","24","025","301102"],
["4108","24","025","301105"],
["3994","24","025","301106"],
["3057","24","025","301107"],
["3353","24","025","301108"],
["2093","24","025","301201"],
["6947","24","025","301202"],
["4091","24","025","301204"],
["4069","24","025","301205"],
["4874","24","025","301301"],
["7497","24","025","301302"],
["7466","24","025","301401"],
["2585","24","025","301402"],
["6903","24","025","301601"],
["7995","24","025","301602"],
["8890","24","025","301702"],
["4903","24","025","301703"],
["3649","24","025","301704"],
["2146","24","025","302100"],
["2574","24","025","302200"],
["2962","24","025","302400"],
["3838","24","025","302801"],
["4925","24","025","302802"],
["2615","24","025","302901"],
["4544","24","025","302902"],
["5925","24","025","303101"],
["3131","24","025","303102"],
["5700","24","025","303201"],
["3327","24","025","303203"],
["4926","24","025","303204"],
["1548","24","025","303205"],
["3275","24","025","303206"],
["5862","24","025","303300"],
["4113","24","025","303400"],
["6131","24","025","303501"],
["3787","24","025","303502"],
["3710","24","025","303602"],
["6802","24","025","303603"],
["5811","24","025","303605"],
["3377","24","025","303606"],
["3754","24","025","303700"],
["2591","24","025","303801"],
["1786","24","025","303802"],
["5094","24","025","303803"],
["2333","24","025","303900"],
["4259","24","025","304101"],
["3667","24","025","304102"],
["6122","24","025","304201"],
["7119","24","025","304202"],
["7131","24","025","305100"],
["2659","24","025","305200"],
["2332","24","025","305300"],
["3896","24","025","306100"],
["2268","24","025","306200"],
["2444","24","025","306300"],
["6735","24","025","306400"],
["2610","24","025","306500"],
["6121","24","027","601103"],
["5930","24","027","601104"],
["4177","24","027","601105"],
["4870","24","027","601107"],
["3861","24","027","601108"],
["8133","24","027","601201"],
["4028","24","027","601203"],
["5355","24","027","601204"],
["8089","24","027","602100"],
["3450","24","027","602201"],
["5417","24","027","602202"],
["6844","24","027","602302"],
["3874","24","027","602303"],
["5049","24","027","602304"],
["3792","24","027","602305"],
["5594","24","027","602306"],
["6947","24","027","602600"],
["5264","24","027","602700"],
["6123","24","027","602800"],
["4461","24","027","602900"],
["5580","24","027","603001"],
["3968","24","027","603003"],
["7411","24","027","603004"],
["6039","24","027","604001"],
["7977","24","027","604002"],
["9350","24","027","605102"],
["5257","24","027","605103"],
["5143","24","027","605104"],
["5237","24","027","605401"],
["6652","24","027","605402"],
["5494","24","027","605502"],
["6495","24","027","605503"],
["2805","24","027","605504"],
["6038","24","027","605505"],
["6698","24","027","605601"],
["7120","24","027","605602"],
["2985","24","027","606601"],
["7864","24","027","606603"],
["4225","24","027","606604"],
["4708","24","027","606606"],
["4818","24","027","606607"],
["2785","24","027","606701"],
["7550","24","027","606704"],
["2052","24","027","606705"],
["4920","24","027","606706"],
["3921","24","027","606707"],
["6092","24","027","606803"],
["3349","24","027","606804"],
["4189","24","027","606805"],
["6694","24","027","606806"],
["5761","24","027","606901"],
["4689","24","027","606904"],
["6884","24","027","606905"],
["5917","24","027","606906"],
["5223","24","027","606907"],
["4080","24","029","950100"],
["4818","24","029","950200"],
["5559","24","029","950300"],
["2894","24","029","950400"],
["2665","24","029","950500"],
["0","24","029","990000"],
["4494","24","031","700101"],
["5815","24","031","700103"],
["5698","24","031","700104"],
["6342","24","031","700105"],
["2155","24","031","700204"],
["7328","24","031","700205"],
["5786","24","031","700206"],
["5620","24","031","700207"],
["2215","24","031","700208"],
["8133","24","031","700304"],
["6953","24","031","700306"],
["5644","24","031","700308"],
["5587","24","031","700309"],
["5978","24","031","700310"],
["8239","24","031","700311"],
["5945","24","031","700312"],
["2081","24","031","700400"],
["6392","24","031","700500"],
["6841","24","031","700604"],
["4429","24","031","700606"],
["7779","24","031","700607"],
["5675","24","031","700608"],
["2124","24","031","700610"],
["6590","24","031","700611"],
["6058","24","031","700613"],
["4904","24","031","700614"],
["2957","24","031","700615"],
["4513","24","031","700616"],
["3087","24","031","700704"],
["3888","24","031","700706"],
["6650","24","031","700710"],
["5848","24","031","700711"],
["5741","24","031","700713"],
["6327","24","031","700715"],
["8094","24","031","700716"],
["6449","24","031","700717"],
["4277","24","031","700718"],
["9716","24","031","700719"],
["3707","24","031","700720"],
["2801","24","031","700721"],
["4147","24","031","700722"],
["3449","24","031","700723"],
["3515","24","031","700724"],
["5126","24","031","700810"],
["4804","24","031","700811"],
["4079","24","031","700812"],
["6317","24","031","700813"],
["7486","24","031","700815"],
["8360","24","031","700816"],
["5225","24","031","700817"],
["6640","24","031","700818"],
["7219","24","031","700819"],
["3034","24","031","700820"],
["1637","24","031","700822"],
["3178","24","031","700823"],
["3092","24","031","700824"],
["5619","24","031","700826"],
["2324","24","031","700828"],
["3460","24","031","700829"],
["2716","24","031","700830"],
["3021","24","031","700832"],
["4315","24","031","700833"],
["5050","24","031","700834"],
["4606","24","031","700835"],
["3983","24","031","700901"],
["3993","24","031","700902"],
["1846","24","031","700903"],
["2948","24","031","700904"],
["4207","24","031","700905"],
["5868","24","031","701001"],
["3468","24","031","701002"],
["5109","24","031","701004"],
["3937","24","031","701005"],
["5413","24","031","701006"],
["3081","24","031","701007"],
["4972","24","031","701101"],
["6242","24","031","701102"],
["5761","24","031","701201"],
["2772","24","031","701202"],
["6695","24","031","701205"],
["7104","24","031","701206"],
["3922","24","031","701210"],
["6503","24","031","701211"],
["2667","24","031","701212"],
["6526","24","031","701213"],
["3384","24","031","701214"],
["4683","24","031","701215"],
["4779","24","031","701216"],
["2722","24","031","701218"],
["3773","24","031","701219"],
["4188","24","031","701220"],
["4325","24","031","701221"],
["3686","24","031","701303"],
["6125","24","031","701304"],
["3055","24","031","701306"],
["3966","24","031","701307"],
["3240","24","031","701308"],
["6357","24","031","701312"],
["3577","24","031","701313"],
["3137","24","031","701314"],
["4760","24","031","701315"],
["6160","24","031","701316"],
["4408","24","031","701317"],
["5588","24","031","701407"],
["6394","24","031","701408"],
["4563","24","031","701409"],
["7303","24","031","701410"],
["7572","24","031","701414"],
["8004","24","031","701415"],
["5794","24","031","701417"],
["3549","24","031","701418"],
["6702","24","031","701420"],
["2057","24","031","701421"],
["2938","24","031","701422"],
["4779","24","031","701423"],
["7149","24","031","701503"],
["6525","24","031","701505"],
["5246","24","031","701506"],
["4592","24","031","701507"],
["4012","24","031","701508"],
["6186","24","031","701509"],
["2266","24","031","701601"],
["7134","24","031","701602"],
["3288","24","031","701701"],
["2477","24","031","701702"],
["3615","24","031","701703"],
["3013","24","031","701704"],
["4926","24","031","701800"],
["3140","24","031","701900"],
["5526","24","031","702000"],
["5720","24","031","702101"],
["3036","24","031","702102"],
["4690","24","031","702200"],
["3844","24","031","702301"],
["4212","24","031","702302"],
["2612","24","031","702401"],
["4363","24","031","702402"],
["5605","24","031","702500"],
["4465","24","031","702601"],
["4672","24","031","702602"],
["7173","24","031","702700"],
["4829","24","031","702800"],
["5485","24","031","702900"],
["1938","24","031","703000"],
["4439","24","031","703100"],
["7447","24","031","703201"],
["5970","24","031","703202"],
["3746","24","031","703206"],
["6474","24","031","703207"],
["5148","24","031","703208"],
["6362","24","031","703209"],
["3687","24","031","703210"],
["8750","24","031","703212"],
["6343","24","031","703213"],
["7497","24","031","703214"],
["3522","24","031","703215"],
["3696","24","031","703216"],
["1867","24","031","703218"],
["3526","24","031","703219"],
["5200","24","031","703220"],
["5065","24","031","703221"],
["4852","24","031","703301"],
["4548","24","031","703302"],
["5505","24","031","703401"],
["3460","24","031","703402"],
["3630","24","031","703403"],
["3068","24","031","703404"],
["7279","24","031","703501"],
["3118","24","031","703502"],
["4471","24","031","703601"],
["3298","24","031","703602"],
["4032","24","031","703701"],
["4120","24","031","703702"],
["3118","24","031","703800"],
["3077","24","031","703901"],
["7502","24","031","703902"],
["6960","24","031","704000"],
["4593","24","031","704100"],
["1909","24","031","704200"],
["3852","24","031","704300"],
["3372","24","031","704401"],
["1572","24","031","704403"],
["4933","24","031","704404"],
["3541","24","031","704501"],
["2594","24","031","704502"],
["4093","24","031","704503"],
["5175","24","031","704600"],
["4201","24","031","704700"],
["3609","24","031","704803"],
["1706","24","031","704804"],
["1887","24","031","704805"],
["3025","24","031","704806"],
["4066","24","031","705000"],
["5418","24","031","705100"],
["3343","24","031","705200"],
["1929","24","031","705300"],
["2907","24","031","705400"],
["2349","24","031","705501"],
["3881","24","031","705502"],
["2954","24","031","705601"],
["4735","24","031","705602"],
["4389","24","031","705701"],
["4766","24","031","705702"],
["6148","24","031","705800"],
["3879","24","031","705901"],
["4157","24","031","705902"],
["4317","24","031","705903"],
["4858","24","031","706005"],
["7525","24","031","706007"],
["5136","24","031","706008"],
["5575","24","031","706009"],
["2955","24","031","706010"],
["5166","24","031","706011"],
["3202","24","031","706012"],
["2990","24","031","706013"],
["3072","24","033","800102"],
["1989","24","033","800103"],
["3794","24","033","800105"],
["2689","24","033","800106"],
["3211","24","033","800108"],
["3722","24","033","800109"],
["4385","24","033","800203"],
["4009","24","033","800206"],
["7598","24","033","800208"],
["3862","24","033","800209"],
["3097","24","033","800210"],
["2726","24","033","800211"],
["4881","24","033","800212"],
["4157","24","033","800213"],
["2570","24","033","800214"],
["2512","24","033","800215"],
["2518","24","033","800401"],
["4863","24","033","800402"],
["4147","24","033","800403"],
["7139","24","033","800408"],
["6067","24","033","800409"],
["6819","24","033","800410"],
["3705","24","033","800411"],
["3239","24","033","800412"],
["3824","24","033","800413"],
["4977","24","033","800504"],
["2576","24","033","800505"],
["2940","24","033","800507"],
["9791","24","033","800509"],
["5231","24","033","800511"],
["5634","24","033","800513"],
["5337","24","033","800514"],
["4205","24","033","800515"],
["3888","24","033","800516"],
["5562","24","033","800517"],
["3335","24","033","800518"],
["3770","24","033","800519"],
["1808","24","033","800520"],
["2045","24","033","800601"],
["1532","24","033","800604"],
["5420","24","033","800605"],
["4993","24","033","800606"],
["6109","24","033","800607"],
["4377","24","033","800608"],
["5424","24","033","800701"],
["4976","24","033","800704"],
["4507","24","033","800705"],
["3738","24","033","800706"],
["2827","24","033","800707"],
["3485","24","033","800800"],
["1559","24","033","800900"],
["5199","24","033","801003"],
["4702","24","033","801004"],
["3971","24","033","801005"],
["3803","24","033","801006"],
["3356","24","033","801104"],
["4670","24","033","801207"],
["3816","24","033","801208"],
["5477","24","033","801209"],
["4760","24","033","801210"],
["3126","24","033","801211"],
["3630","24","033","801212"],
["3755","24","033","801213"],
["3795","24","033","801214"],
["2578","24","033","801215"],
["3382","24","033","801216"],
["4005","24","033","801217"],
["2442","24","033","801302"],
["6096","24","033","801305"],
["3799","24","033","801307"],
["3843","24","033","801308"],
["3836","24","033","801309"],
["6046","24","033","801310"],
["6431","24","033","801311"],
["3561","24","033","801312"],
["3142","24","033","801313"],
["4829","24","033","801404"],
["5058","24","033","801405"],
["2471","24","033","801406"],
["6119","24","033","801407"],
["3523","24","033","801408"],
["3094","24","033","801409"],
["3146","24","033","801410"],
["3356","24","033","801411"],
["2618","24","033","801500"],
["2366","24","033","801600"],
["4266","24","033","801701"],
["4016","24","033","801702"],
["6080","24","033","801704"],
["1554","24","033","801706"],
["6878","24","033","801707"],
["3645","24","033","801708"],
["2028","24","033","801801"],
["3467","24","033","801802"],
["2114","24","033","801804"],
["2189","24","033","801805"],
["4423","24","033","801807"],
["3857","24","033","801808"],
["4769","24","033","801901"],
["2946","24","033","801904"],
["5197","24","033","801905"],
["1788","24","033","801906"],
["2842","24","033","801907"],
["3430","24","033","801908"],
["5788","24","033","802001"],
["3670","24","033","802002"],
["3207","24","033","802103"],
["1887","24","033","802104"],
["3827","24","033","802106"],
["3587","24","033","802107"],
["1793","24","033","802201"],
["4324","24","033","802203"],
["5802","24","033","802204"],
["3556","24","033","802301"],
["3851","24","033","802404"],
["4124","24","033","802405"],
["2148","24","033","802406"],
["3829","24","033","802407"],
["1325","24","033","802408"],
["2757","24","033","802501"],
["2574","24","033","802502"],
["3327","24","033","802600"],
["2740","24","033","802700"],
["4855","24","033","802803"],
["5508","24","033","802804"],
["4795","24","033","802805"],
["4016","24","033","802901"],
["2872","24","033","803001"],
["2775","24","033","803002"],
["2706","24","033","803100"],
["2892","24","033","803200"],
["4521","24","033","803300"],
["1419","24","033","803401"],
["4461","24","033","803402"],
["4386","24","033","803508"],
["3076","24","033","803509"],
["6281","24","033","803512"],
["4020","24","033","803513"],
["4318","24","033","803514"],
["4903","24","033","803516"],
["4611","24","033","803519"],
["4153","24","033","803520"],
["5422","24","033","803521"],
["3830","24","033","803522"],
["4145","24","033","803523"],
["3700","24","033","803524"],
["2285","24","033","803525"],
["3206","24","033","803526"],
["3144","24","033","803527"],
["3659","24","033","803601"],
["2228","24","033","803602"],
["6885","24","033","803605"],
["5190","24","033","803606"],
["3352","24","033","803607"],
["5961","24","033","803608"],
["3174","24","033","803610"],
["3101","24","033","803612"],
["5026","24","033","803613"],
["2492","24","033","803700"],
["2535","24","033","803801"],
["5857","24","033","803803"],
["3974","24","033","803900"],
["4952","24","033","804001"],
["4578","24","033","804002"],
["3326","24","033","804101"],
["6034","24","033","804102"],
["2799","24","033","804200"],
["3212","24","033","804300"],
["2807","24","033","804400"],
["3076","24","033","804600"],
["3526","24","033","804700"],
["2419","24","033","804801"],
["2872","24","033","804802"],
["4215","24","033","804900"],
["5511","24","033","805000"],
["3944","24","033","805101"],
["4844","24","033","805201"],
["3727","24","033","805202"],
["4475","24","033","805500"],
["6686","24","033","805601"],
["6064","24","033","805602"],
["6495","24","033","805700"],
["4514","24","033","805801"],
["4587","24","033","805802"],
["3498","24","033","805904"],
["3215","24","033","805906"],
["4071","24","033","805907"],
["2693","24","033","805908"],
["4915","24","033","805909"],
["5631","24","033","806000"],
["4140","24","033","806100"],
["3817","24","033","806200"],
["2019","24","033","806300"],
["3649","24","033","806400"],
["5776","24","033","806501"],
["4792","24","033","806601"],
["4702","24","033","806602"],
["3414","24","033","806706"],
["4233","24","033","806708"],
["5739","24","033","806710"],
["5222","24","033","806711"],
["3356","24","033","806712"],
["3604","24","033","806713"],
["3675","24","033","806714"],
["4286","24","033","806800"],
["4188","24","033","806900"],
["5985","24","033","807000"],
["2427","24","033","807102"],
["15285","24","033","807200"],
["3484","24","033","807301"],
["1842","24","033","807304"],
["3478","24","033","807305"],
["4795","24","033","807404"],
["6024","24","033","807405"],
["6476","24","033","807407"],
["5489","24","033","807408"],
["3969","24","033","807409"],
["4431","24","033","807410"],
["3288","24","035","810100"],
["2422","24","035","810200"],
["5089","24","035","810300"],
["6552","24","035","810400"],
["4462","24","035","810500"],
["5018","24","035","810600"],
["3824","24","035","810700"],
["5716","24","035","810800"],
["4703","24","035","810901"],
["3036","24","035","810902"],
["4329","24","035","811000"],
["0","24","035","990000"],
["0","24","035","990100"],
["0","24","035","990200"],
["6774","24","037","875000"],
["5277","24","037","875100"],
["4960","24","037","875201"],
["6198","24","037","875202"],
["3597","24","037","875300"],
["6908","24","037","875400"],
["9029","24","037","875500"],
["8898","24","037","875600"],
["6953","24","037","875700"],
["1421","24","037","875801"],
["4018","24","037","875802"],
["6826","24","037","875901"],
["8893","24","037","875902"],
["5361","24","037","876001"],
["8553","24","037","876002"],
["7513","24","037","876100"],
["7293","24","037","876200"],
["0","24","037","990000"],
["7151","24","039","930101"],
["3753","24","039","930102"],
["1498","24","039","930200"],
["2247","24","039","930300"],
["3996","24","039","930500"],
["3044","24","039","930600"],
["4508","24","039","980400"],
["0","24","039","990100"],
["4377","24","041","960100"],
["3920","24","041","960201"],
["3762","24","041","960300"],
["5460","24","041","960400"],
["4725","24","041","960501"],
["4398","24","041","960502"],
["1694","24","041","960600"],
["3378","24","041","960700"],
["2008","24","041","960800"],
["4172","24","041","960900"],
["0","24","041","990000"],
["3211","24","043","000100"],
["3574","24","043","000200"],
["3311","24","043","000301"],
["2860","24","043","000302"],
["1898","24","043","000400"],
["5457","24","043","000500"],
["2701","24","043","000601"],
["3149","24","043","000602"],
["3002","24","043","000700"],
["3572","24","043","000800"],
["3979","24","043","000900"],
["5142","24","043","001001"],
["4117","24","043","001002"],
["1313","24","043","010100"],
["4681","24","043","010200"],
["7556","24","043","010300"],
["8138","24","043","010400"],
["6371","24","043","010500"],
["5019","24","043","010600"],
["3616","24","043","010700"],
["4478","24","043","010801"],
["2547","24","043","010802"],
["8220","24","043","010900"],
["5862","24","043","011000"],
["6012","24","043","011100"],
["8951","24","043","011201"],
["4579","24","043","011202"],
["5068","24","043","011301"],
["3993","24","043","011302"],
["5524","24","043","011400"],
["7974","24","043","011500"],
["3038","24","043","011600"],
["6102","24","045","000100"],
["2130","24","045","000200"],
["1438","24","045","000300"],
["4388","24","045","000400"],
["2628","24","045","000500"],
["6035","24","045","010101"],
["3197","24","045","010102"],
["6183","24","045","010200"],
["8074","24","045","010300"],
["7166","24","045","010400"],
["4813","24","045","010501"],
["8715","24","045","010502"],
["7285","24","045","010603"],
["5188","24","045","010604"],
["4079","24","045","010605"],
["4017","24","045","010606"],
["4175","24","045","010701"],
["8456","24","045","010702"],
["6307","24","045","010800"],
["1705","24","047","950000"],
["2063","24","047","950100"],
["3325","24","047","950300"],
["2963","24","047","950400"],
["3007","24","047","950600"],
["1963","24","047","950700"],
["5429","24","047","950800"],
["1650","24","047","950900"],
["4493","24","047","951000"],
["5962","24","047","951100"],
["3538","24","047","951200"],
["3049","24","047","951300"],
["3739","24","047","951400"],
["5229","24","047","951500"],
["3443","24","047","951700"],
["0","24","047","980000"],
["0","24","047","990000"],
["3091","24","510","010100"],
["3334","24","510","010200"],
["2390","24","510","010300"],
["2264","24","510","010400"],
["2018","24","510","010500"],
["2057","24","510","020100"],
["2079","24","510","020200"],
["3693","24","510","020300"],
["3150","24","510","030100"],
["2559","24","510","030200"],
["3465","24","510","040100"],
["944","24","510","040200"],
["2840","24","510","060100"],
["3484","24","510","060200"],
["1788","24","510","060300"],
["1347","24","510","060400"],
["2920","24","510","070100"],
["3195","24","510","070200"],
["924","24","510","070300"],
["1207","24","510","070400"],
["3737","24","510","080101"],
["1943","24","510","080102"],
["1396","24","510","080200"],
["1559","24","510","080301"],
["2763","24","510","080302"],
["1172","24","510","080400"],
["1608","24","510","080500"],
["2437","24","510","080600"],
["784","24","510","080700"],
["1260","24","510","080800"],
["4471","24","510","090100"],
["3558","24","510","090200"],
["4089","24","510","090300"],
["1450","24","510","090400"],
["2139","24","510","090500"],
["2947","24","510","090600"],
["3151","24","510","090700"],
["3521","24","510","090800"],
["2088","24","510","090900"],
["2095","24","510","100100"],
["3125","24","510","100200"],
["4828","24","510","100300"],
["3526","24","510","110100"],
["5161","24","510","110200"],
["4747","24","510","120100"],
["1972","24","510","120201"],
["6811","24","510","120202"],
["3205","24","510","120300"],
["1657","24","510","120400"],
["2110","24","510","120500"],
["2491","24","510","120600"],
["2639","24","510","120700"],
["2941","24","510","130100"],
["3357","24","510","130200"],
["2123","24","510","130300"],
["2267","24","510","130400"],
["3839","24","510","130600"],
["4860","24","510","130700"],
["2381","24","510","130803"],
["1878","24","510","130804"],
["877","24","510","130805"],
["1405","24","510","130806"],
["4876","24","510","140100"],
["2787","24","510","140200"],
["2663","24","510","140300"],
["3449","24","510","150100"],
["2734","24","510","150200"],
["1993","24","510","150300"],
["3950","24","510","150400"],
["1928","24","510","150500"],
["2451","24","510","150600"],
["1345","24","510","150701"],
["1990","24","510","150702"],
["3708","24","510","150800"],
["2853","24","510","150900"],
["5135","24","510","151000"],
["6983","24","510","151100"],
["5118","24","510","151200"],
["5351","24","510","151300"],
["2414","24","510","160100"],
["2649","24","510","160200"],
["1719","24","510","160300"],
["3065","24","510","160400"],
["4114","24","510","160500"],
["2392","24","510","160600"],
["4282","24","510","160700"],
["3458","24","510","160801"],
["3327","24","510","160802"],
["1599","24","510","170100"],
["3253","24","510","170200"],
["1981","24","510","170300"],
["2079","24","510","180100"],
["981","24","510","180200"],
["1675","24","510","180300"],
["2027","24","510","190100"],
["2157","24","510","190200"],
["2348","24","510","190300"],
["1597","24","510","200100"],
["2436","24","510","200200"],
["1764","24","510","200300"],
["1653","24","510","200400"],
["2896","24","510","200500"],
["2800","24","510","200600"],
["4577","24","510","200701"],
["1353","24","510","200702"],
["2506","24","510","200800"],
["2289","24","510","210100"],
["3132","24","510","210200"],
["4328","24","510","220100"],
["1896","24","510","230100"],
["2156","24","510","230200"],
["1107","24","510","230300"],
["2862","24","510","240100"],
["2955","24","510","240200"],
["2077","24","510","240300"],
["2829","24","510","240400"],
["4105","24","510","250101"],
["2875","24","510","250102"],
["3776","24","510","250103"],
["1909","24","510","250203"],
["4178","24","510","250204"],
["4765","24","510","250205"],
["2007","24","510","250206"],
["2431","24","510","250207"],
["2511","24","510","250301"],
["2400","24","510","250303"],
["3391","24","510","250401"],
["4949","24","510","250402"],
["6044","24","510","250500"],
["0","24","510","250600"],
["4777","24","510","260101"],
["5131","24","510","260102"],
["5017","24","510","260201"],
["5652","24","510","260202"],
["2626","24","510","260203"],
["4574","24","510","260301"],
["6309","24","510","260302"],
["818","24","510","260303"],
["3300","24","510","260401"],
["2795","24","510","260402"],
["1814","24","510","260403"],
["2555","24","510","260404"],
["5359","24","510","260501"],
["1315","24","510","260604"],
["4594","24","510","260605"],
["2639","24","510","260700"],
["2984","24","510","260800"],
["2609","24","510","260900"],
["2822","24","510","261000"],
["2028","24","510","261100"],
["1757","24","510","270101"],
["3761","24","510","270102"],
["1862","24","510","270200"],
["2988","24","510","270301"],
["1659","24","510","270302"],
["5948","24","510","270401"],
["3117","24","510","270402"],
["4189","24","510","270501"],
["4341","24","510","270502"],
["4674","24","510","270600"],
["2801","24","510","270701"],
["2355","24","510","270702"],
["2531","24","510","270703"],
["4437","24","510","270801"],
["5827","24","510","270802"],
["6614","24","510","270803"],
["2877","24","510","270804"],
["5074","24","510","270805"],
["4355","24","510","270901"],
["5383","24","510","270902"],
["4286","24","510","270903"],
["2363","24","510","271001"],
["3943","24","510","271002"],
["1911","24","510","271101"],
["4461","24","510","271102"],
["6220","24","510","271200"],
["2853","24","510","271300"],
["3612","24","510","271400"],
["4181","24","510","271501"],
["930","24","510","271503"],
["5085","24","510","271600"],
["5221","24","510","271700"],
["3311","24","510","271801"],
["2907","24","510","271802"],
["4066","24","510","271900"],
["5532","24","510","272003"],
["4434","24","510","272004"],
["3288","24","510","272005"],
["4158","24","510","272006"],
["4703","24","510","272007"],
["3860","24","510","280101"],
["5977","24","510","280102"],
["4863","24","510","280200"],
["3851","24","510","280301"],
["2047","24","510","280302"],
["3641","24","510","280401"],
["1850","24","510","280402"],
["5164","24","510","280403"],
["2368","24","510","280404"],
["2412","24","510","280500"]]
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment