Skip to content

Instantly share code, notes, and snippets.

@t-t-t-t-t
Forked from coop16/NZL_adm1.json
Created March 19, 2020 23:36
Show Gist options
  • Select an option

  • Save t-t-t-t-t/50d944ee71c8ea64513e696a61241940 to your computer and use it in GitHub Desktop.

Select an option

Save t-t-t-t-t/50d944ee71c8ea64513e696a61241940 to your computer and use it in GitHub Desktop.
New Zealand Sheep Density

New Zealand Sheep Density

Background

One of the many things New Zealand is famous for is their sheep. We show sheep density (sheep per square km) by region, as well as changes in sheep density over time.

Interactivity

  • By hovering over the regions on the map, the bar plot will show the sheep density over time for the specific region
  • By hovering over a bar on the chart, the map colors will change for the specified year

Data

Raw data from the New Zealand Ministry for the Environment can be found HERE. We focus on sheep, the years 2002-2015, and find the density by scaling the total count by land area (taken Wikipedia ).

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NZ Sheep Density</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.js"></script>
<style type="text/css">
body {
background-color: steelblue;
}
svg {
background-color: steelblue;
}
#container {
width: 1200px;
margin: 0px auto 0px auto;
background-color: steelblue;
padding
}
.totalContainer {
/* Place the map and barplot containers side-by-side */
display: inline-block;
width: 49%;
}
path {
stroke: lightgray;
}
.description {
fill:navy;
font-family: helvetica;
}
.highlight {
fill: lightgray;
}
.yeartitle {
fill: white;
font-family: helvetica;
font-size: 28px;
font-weight: bold;
}
.axis--x path,
.axis--x line {
fill: none;
stroke: none;
}
.axis--x text {
fill: white;
font-family: helvetica;
font-size: 11px;
font-weight:bold;
}
.axis--y path,
.axis--y line {
fill: none;
stroke: lightgray;
}
.axis--y text {
fill: white;
font-family: helvetica;
font-size: 11px;
font-weight:bold;
}
.label {
fill:white;
font-family: helvetica;
}
.chartTitle {
fill:white;
font-family: helvetica;
font-weight: bold;
font-size: 18px;
}
</style>
</head>
<body>
<div id=container>
<div class="totalContainer" id="mapContainer"></div>
<div class="totalContainer" id="bargraphContainer"></div>
</div>
<script type="text/javascript">
//Width and height of containers
var w = d3.select(".totalContainer").node().clientWidth;
var h = 800;
//height of bargraph and padding
var h_bar = h/2;
var padding = 60;
var bottompadding =150;
//Color Scale
var color = d3.scale.quantize()
.domain([ 1, 310])
.range(['#edf8e9','#c7e9c0','#a1d99b','#74c476','#41ab5d','#238b45','#005a32']); //ColorBrewer: Green/Sequential/n=7
//Define Projection
var projection = d3.geo.mercator()
.center([ 172.5, -41 ])
.translate([ w/2, h/2 ])
.scale([ h*3 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//---------------------------------------------------------------------------------------------------------//
// Load Data
//---------------------------------------------------------------------------------------------------------//
//Load in sheep data (by region)
d3.csv("sheepdat.csv", function(data) {
//Load in sheep data (total)
d3.csv("sheepdattotal.csv", function(totaldata) {
//Load in GeoJSON data
d3.json("NZL_adm1.json", function(json) {
//---------------------------------------------------------------------------------------------------------//
// Make Map
//---------------------------------------------------------------------------------------------------------//
//Merge the regional sheep data and GeoJSON into a single array
//
//Loop through once for each sheep data entry
for (var i = 0; i < data.length; i++) {
//Grab region name
var dataRegionCode = data[i].region;
//Grab year
var currentyear = +data[i].year;
//Grab density value
var dataValue = +data[i].density;
//Restrict to 2015 (default year for map)
if (currentyear == 2015){
//Find the corresponding region inside the GeoJSON
for (var j = 0; j < json.features.length; j++) {
//We'll check if the json region name matches csv region name
var jsonRegionCode = json.features[j].properties.NAME_1;
if (dataRegionCode == jsonRegionCode) {
//Copy the density value into the GeoJSON
json.features[j].properties.sheepdensity = dataValue;
//Stop looking through the JSON
break;
}
}
}
}
//Create SVG element for map
var svg = d3.select("#mapContainer")
.append("svg")
.attr("id", "map")
.attr("width", w)
.attr("height", h);
//Create groups
var groups = svg.selectAll("g")
.attr("id","graphsgroup");
//Bind data and create one path per GeoJSON feature
var regions = groups.data(json.features)
.enter()
.append("path")
.attr("d", path)
.attr("fill", function(d) {
return color(d.properties.sheepdensity);
})
.attr("opacity",0) //Start hidden for initial transition in
//Make mouseover (affecting both charts)
.on("mouseover",function(d){
//highlight the region on the map
d3.select(this)
.classed("highlight",true);
//define variable for selected region name
var thisName = d.properties.NAME_1 ;
//Dim the bars for national average
totalbars.transition()
.duration(500)
.attr("opacity",.2);
//hide title with (National Average)
figuretitle.transition()
.attr("opacity",0);
//show title with correct region name
regiontext.filter(function(d){
if (thisName == d.properties.NAME_1) {
return true;
}
})
.transition()
.attr("opacity",1);
//Show barplot for specified region
barplots.filter(function(d) {
if (thisName == d.region) {
return true; //…then it's a match
}
})
.transition()
.duration(500)
.delay(function(d,i){return i*20;})
.attr("opacity",.8); //don't give full opacity so can still see national average
})
//Put everything back to default on mouseout
.on("mouseout", function(d) {
//remove highlighted region
d3.select(this)
.classed("highlight",false);
//bring back national average bars
totalbars.transition()
.duration(500)
.attr("opacity",1);
//bring back original figure title
figuretitle.transition()
.attr("opacity",1);
//hide region specific title
regiontext.transition()
.attr("opacity",0);
//hide region specific bars
barplots.transition()
.attr("opacity",0);
});
//Add year next to map
yeartext = groups.data(totaldata)
.enter()
.append("text")
.attr("class","yeartitle")
.attr("text-anchor","left")
.attr("x",2*padding)
.attr("y",h-h_bar-padding)
.text(function(d){
return d.year;
})
.attr("opacity",0); //hide at first so will transition in
//Create Legend for colors
//define range of values for each color
var legenddat = color.range().map(function(d) {
d = color.invertExtent(d);
if (d[0] == null) d[0] = x.domain()[0];
if (d[1] == null) d[1] = x.domain()[1];
return d;
});
var squarewidth = 30
//create group
var key = svg.selectAll("g")
.data(legenddat)
.enter()
.append("g")
//make rectangles
var keysquares = key.append("rect")
.attr("x",function(d,i){
return w/2 +squarewidth*i;
})
.attr("y", h - bottompadding)
.attr("width",squarewidth)
.attr("height",squarewidth)
.attr("fill",function(d,i){
return ['#edf8e9','#c7e9c0','#a1d99b','#74c476','#41ab5d','#238b45','#005a32'][i];
})
.attr("opacity",0);
//add labels
var keytext = key.append("text")
.attr("x",function(d,i){
return w/2 +squarewidth*i;
})
.attr("y", h - bottompadding - 3)
.text(function(d,i){
return "< " + d3.format(".0f")(+d[1]);
})
.attr("font-size",10)
.attr("font-family","helvetica")
.attr("fill","white")
.attr("opacity",0);
//---------------------------------------------------------------------------------------------------------//
//Create Bar graphs
//---------------------------------------------------------------------------------------------------------//
//Create SVG for bar graph
var svg = d3.select("#bargraphContainer")
.append("svg")
.attr("id", "map")
.attr("width", w)
.attr("height", h);
//create groups
var groups = svg.selectAll("g")
.attr("id","graphsgroup");
//Define x scale
//get list of years
var xdomain = []
for (var i = d3.min(data,function(d){
return d.year;
});
i <= d3.max(data,function(d){
return d.year;}
);
i++) {
xdomain.push(i.toString());
}
//define scale
var xScale = d3.scale.ordinal()
.domain( xdomain)
.rangeRoundBands([ padding, w - padding ], 0.08);
//define y scale
var yScale = d3.scale.linear()
.domain([ 0, 320 ])
.rangeRound([ h - bottompadding, h - bottompadding - h_bar ]);
//Add Bars for Region (hidden until mouseover region on map)
var barplots = groups.data(data) //use "data" because region specific csv
.enter()
.append("rect")
.attr("x", function(d) {
return xScale(d.year);
})
.attr("y", function(d) {
return yScale(d.density);
})
.attr("width", xScale.rangeBand())
.attr("height", function(d){
return h - bottompadding - yScale(d.density);
})
.attr("fill","white")
.attr("opacity",0);
//Add Bars for National Average (show by default)
var totalbars = groups.data(totaldata) //use "totaldata" because national average csv
.enter()
.append("rect")
.attr("x", function(d) {
return xScale(d.year);
})
.attr("y", function(d) {
return h-bottompadding;
})
.attr("width", xScale.rangeBand())
.attr("height", function(d){
return 0;
})
.attr("fill", function(d){
return color(d.density);
})
.attr("opacity",0) //hide at first so can transition in
//Create mouseover to highlight bars and change year being displayed on map
.on("mouseover",function(d){
//highlight selected bar
d3.select(this)
.classed("highlight",true);
//define year selected
var thisyear = d.year;
//Change year shown next to map
yeartext.transition()
.attr("opacity",function(d){
if(d.year==thisyear){
return 1;
}else{
return 0;
}
});
//Change Map colors based on year (use similar loop as before but change 2015 to selected year)
//Loop through once for each data entry
for (var i = 0; i < data.length; i++) {
//Grab region name
var dataRegionCode = data[i].region;
//Grab year
var currentyear = +data[i].year;
//Grab density value
var dataValue = +data[i].density;
//Restrict to year highlighted on barplot ---This is what differs in the loop from the original selection!
if (currentyear == d.year){
//Find the corresponding region inside the GeoJSON
for (var j = 0; j < json.features.length; j++) {
//Check if region from json matches region from csv
var jsonRegionCode = json.features[j].properties.NAME_1;
if (dataRegionCode == jsonRegionCode) {
//Copy the data value into the GeoJSON
json.features[j].properties.sheepdensity = dataValue;
//Stop looking through the JSON
break;
}
}
}
}
//Change region colors with updated values
regions.transition()
.attr("fill", function(d) {
return color(d.properties.sheepdensity);
});
})
//Return to default (2015) on mouseout
.on("mouseout",function(d){
//remove highlight
d3.select(this)
.classed("highlight",false);
//change year back
yeartext.transition()
.attr("opacity",function(d){
if(d.year==2015){
return 1;
} else {
return 0;
}
});
//Change Map colors back to 2015
//same as original loop
for (var i = 0; i < data.length; i++) {
var dataRegionCode = data[i].region;
var currentyear = +data[i].year;
var dataValue = +data[i].density;
if (currentyear == 2015){
for (var j = 0; j < json.features.length; j++) {
var jsonRegionCode = json.features[j].properties.NAME_1;
if (dataRegionCode == jsonRegionCode) {
json.features[j].properties.sheepdensity = dataValue;
break;
}
}
}
}
//update colors again
regions.transition()
.attr("fill", function(d) {
return color(d.properties.sheepdensity);
})
});
//Add x axis
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.ticks(14);
var xAx = svg.append("g")
.attr("class", "axis--x")
.attr("transform", "translate(0," + (h - bottompadding) + ")")
.attr("opacity",0) //hide before initial transition in
.call(xAxis);
//Create y axis
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.ticks(5);
var yAx = svg.append("g")
.attr("class", "axis--y")
.attr("transform", "translate(" + padding + ",0)")
.attr("opacity",0) //hide before initial transition in
.call(yAxis);
//Create y axis label
var ylabel = svg.append("text")
.attr("class","label")
.attr("text-anchor","middle")
.text("sheep per square km ")
.attr("transform","translate(" + padding/3 +","+ h*.6 +") rotate(-90)" )
.attr("opacity",0); //hide before initial transition in
//Create Figure Title
var figuretitle = svg.append("text")
.attr("class","chartTitle")
.attr("x",2*padding)
.attr("y",h-h_bar-bottompadding)
.attr("text-anchor","left")
.text("Sheep Density (National Average)")
.attr("opacity",0); //hide before initial transition in
//Create Text for Region (hidden until mouseover on map)
var regiontext = groups.data(json.features)
.enter()
.append("text")
.attr("class","chartTitle")
.attr("text-anchor","left")
.attr("x",2*padding)
.attr("y",h-h_bar-bottompadding)
.text(function(d){
return "Sheep Density ("+d.properties.NAME_1+" Region)";
})
.attr("opacity",0);
//Add text descriptions
svg.append("text")
.attr("class","description")
.attr("x",padding)
.attr("y",bottompadding/3)
.text("Interactivity:")
.attr("opacity",0)
.attr("font-weight","bold")
.transition()
.delay(1000)
.duration(1500)
.attr("opacity",1);
svg.append("text")
.attr("class","description")
.attr("x",padding)
.attr("y",bottompadding/3+20)
.text("Hovering over a region on the map will show region-specific changes ")
.attr("opacity",0)
.transition()
.delay(1000)
.duration(1500)
.attr("opacity",1);
svg.append("text")
.attr("class","description")
.attr("x",padding)
.attr("y",bottompadding/3+40)
.text("in sheep density over time in the barplot. Hovering over the barplot will ")
.attr("opacity",0)
.transition()
.delay(1000)
.duration(1500)
.attr("opacity",1);
svg.append("text")
.attr("class","description")
.attr("x",padding)
.attr("y",bottompadding/3+60)
.text("update the map to show the year highlighted.")
.attr("opacity",0)
.transition()
.delay(1000)
.duration(1500)
.attr("opacity",1);
//---------------------------------------------------------------------------------------------------------//
// Add initial fade in for each element - start all blue, then show map, then rest of details
//---------------------------------------------------------------------------------------------------------//
//map
regions.transition()
.duration(1500)
.attr("opacity",1)
.attr("stroke","gray");
//year on side of map
yeartext.transition()
.duration(1500)
.delay(1000)
.attr("opacity",function(d){
if(d.year==2015){
return 1;
} else {
return 0;
}
});
//Map Key
keysquares.transition()
.duration(1500)
.delay(1000)
.attr("opacity",1);
keytext.transition()
.duration(1500)
.delay(1000)
.attr("opacity",1);
//bar plot
totalbars.transition()
.duration(1500)
.delay(function(d,i){
return 1000 +30*i;
})
.attr("y", function(d) {
return yScale(d.density);
})
.attr("height", function(d){
return h - bottompadding - yScale(d.density);
})
.attr("opacity",1);
//barplot title
figuretitle.transition()
.duration(1500)
.delay(1000)
.attr("opacity",1);
//y axis label
ylabel.transition()
.duration(1500)
.delay(1000)
.attr("opacity",1);
//y axis
yAx.transition()
.duration(1500)
.delay(1000)
.attr("opacity",1);
//x axis
xAx.transition()
.duration(1500)
.delay(1000)
.attr("opacity",1);
}); // end json
}); //end csv
}); // end csv
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection", "features": [
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[175.17313985300655,-36.739288539345814],[175.1364429734666,-36.84547145676988],[175.06427244370468,-36.833219581682485],[174.9823160793988,-36.78829603969538],[175.0557098384787,-36.76889723747368],[175.10096932324464,-36.78523307092354],[175.17313985300655,-36.739288539345814]]],[[[174.91626169622688,-36.72907864343966],[174.92849398940686,-36.78421208133292],[174.84776085441896,-36.80973682109832],[174.837975019875,-36.76889723747368],[174.89424356850293,-36.75868734156752],[174.91626169622688,-36.72907864343966]]],[[[175.2844537209444,-37.002703853724746],[175.27344465708242,-37.02414463512768],[175.18292568755055,-37.030270572671384],[175.15112172528256,-37.06090026038986],[175.0581562971147,-37.04558541653062],[175.01534327098474,-37.12318062541744],[174.95295857576684,-37.146663386001606],[174.99944128985078,-37.21506968857288],[174.92115461349889,-37.259993230559985],[174.86488606487094,-37.271224116056764],[174.80739428692502,-37.32227359558756],[174.71932177602915,-37.38047000225268],[174.6875178137612,-37.3498403145342],[174.53828383696538,-37.07519411465849],[174.54195352491936,-37.04864838530247],[174.62635634786128,-37.03639651021508],[174.69363396035118,-37.1844400008544],[174.7706974073851,-37.091529948108345],[174.85754668896297,-37.051711354074314],[174.833082102603,-37.01801869758399],[174.77436709533907,-37.010871770449675],[174.77436709533907,-36.96901119723442],[174.70708948284917,-36.92612963442855],[174.50770310401543,-37.04762739571186],[174.48323851765545,-37.046606406121235],[174.46855976583947,-36.95573833255641],[174.38782663085158,-36.76583426870183],[174.26672692836974,-36.60247593420327],[174.16642212429386,-36.490167079235505],[174.17743118815585,-36.44728551642963],[174.2361461954198,-36.42788671420793],[174.30220057859168,-36.52692270449768],[174.40862152925754,-36.58409812157218],[174.43553257425353,-36.54427952753815],[174.40495184130356,-36.47791520414811],[174.41351444652955,-36.40236197444253],[174.35602266858362,-36.41155088075807],[174.32544193563365,-36.385005151402055],[174.25082494723577,-36.38194218263021],[174.25816432314375,-36.326808744736944],[174.39149631880557,-36.30945192169647],[174.47345268311147,-36.24206660871582],[174.58354332173133,-36.17059733737269],[174.61901697195327,-36.12158983702312],[174.66672291535522,-36.18897515000378],[174.72788438125514,-36.24512957748766],[174.81962658010502,-36.291074109065384],[174.76825094874908,-36.341102599005566],[174.83919824919298,-36.36969030754281],[174.73033083989114,-36.41052989116746],[174.72176823466515,-36.525901714907064],[174.69608041898718,-36.562657340169245],[174.73277729852714,-36.62187473642497],[174.77803678329306,-36.77910713337984],[174.7462328210251,-36.819946717004484],[174.65693708081122,-36.819946717004484],[174.6924107310332,-36.877122134078974],[174.74256313307112,-36.83424057127311],[174.79271553510904,-36.84853442554173],[174.87589512873294,-36.8464924463605],[174.8856809632769,-36.873038175716516],[174.9859857673528,-36.89958390507253],[175.0569330677967,-36.883248071622674],[175.09118348870066,-36.94246546787841],[175.1914882927765,-36.92919260320039],[175.25020330004045,-36.95778031173764],[175.2844537209444,-37.002703853724746]]],[[[175.41044634069823,-36.02970077386768],[175.42879478046822,-36.13996764965421],[175.49607239295813,-36.179786243688234],[175.47283103591616,-36.23083572321904],[175.54989448295007,-36.3114939008777],[175.48384009977815,-36.30230499456216],[175.32237382980236,-36.22062582731287],[175.3651868559323,-36.18591218123193],[175.3602939386603,-36.11444290988881],[175.34072226957232,-36.069519367901705],[175.41044634069823,-36.02970077386768]]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2125,"NAME_1":"Auckland","VARNAME_1":"","HASC_1":"NZ.AU","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[175.94010463539155,-37.37536505429959],[175.9706853683415,-37.44683432564272],[175.94010463539155,-37.4713380758175],[175.9780247442495,-37.51421963862337],[175.93276525948355,-37.56833208692602],[176.0514185033294,-37.65920016049085],[176.1248122624093,-37.66022115008147],[176.28994822033908,-37.69799776493426],[176.4416286557709,-37.76334109873368],[176.4991204337168,-37.77150901545861],[176.60676461370068,-37.83174740130496],[176.74988244390647,-37.88381787042638],[176.93459007092423,-37.9175105269167],[177.0593594613601,-37.971622975219354],[177.06669883726806,-37.999189694165985],[177.14253905498396,-38.007357610890914],[177.16211072407194,-37.987958808669205],[177.29421949041577,-37.991021777441055],[177.39330106517363,-37.98387485030675],[177.4862664933415,-37.95018219381642],[177.54375827128743,-37.90934261019177],[177.68442964285725,-37.758236150780604],[177.7272426689872,-37.67757797312194],[177.869137269875,-37.651032243765926],[177.90216446146096,-37.606108701778815],[177.9535400928169,-37.614276618503744],[178.00736218280883,-37.55199625347617],[178.07953271257074,-37.542807347160625],[178.09421146438672,-37.583646930785264],[177.97800467917688,-37.611213649731894],[177.99268343099286,-37.65511620212838],[177.97311176190487,-37.73679536937767],[178.0367196864408,-37.7327114110152],[178.07463979529874,-37.76334109873368],[177.97066530326887,-37.847062245164196],[177.86302112328502,-38.11047755954313],[177.84956560078703,-38.115582507496214],[177.72357298103321,-38.025735423522],[177.66975089104128,-38.021651465159536],[177.69299224808324,-38.11149854913375],[177.66118828581529,-38.16050604948332],[177.49238263993152,-38.22482839369213],[177.49238263993152,-38.30038162339771],[177.46547159493554,-38.33611625906927],[177.23795094178783,-38.42902631181533],[177.25874584019382,-38.50866349988338],[177.20003083292988,-38.528062302105084],[177.17067332929793,-38.5801327712265],[177.12786030316798,-38.58830068795143],[177.09727957021803,-38.619951365260526],[177.0348948750001,-38.63424521952915],[177.00309091273215,-38.69346261578488],[176.9676172625102,-38.70979844923474],[176.8905538154763,-38.66793787601948],[176.82939234957638,-38.69244162619427],[176.77557025958444,-38.68733667824118],[176.72297139891052,-38.73123923063767],[176.69973004186855,-38.80883443952449],[176.70951587641252,-38.84865303355851],[176.61899690688065,-38.9242062632641],[176.5982020084747,-38.95789891975443],[176.61899690688065,-39.0007804825603],[176.45386094895088,-39.00282246174153],[176.42205698668292,-39.06101886840665],[176.40370854691292,-39.153928921152705],[176.344993539649,-39.17128574419318],[176.23612613034715,-39.09675350407821],[176.28505530306708,-39.076333712265885],[176.26181394602511,-38.92624824244533],[176.2030989387612,-38.943605065485805],[176.12970517968128,-38.879282721276994],[176.09667798809534,-38.81291839788695],[176.11624965718332,-38.769015845490465],[176.22022414921318,-38.79249860607463],[176.26181394602511,-38.76288990794677],[176.17741112308323,-38.68529469905995],[176.2116615439872,-38.61076245894498],[176.0636507965094,-38.53623021883001],[176.1223658037733,-38.46884490584935],[176.18597372830922,-38.514789437427076],[176.23367967171114,-38.521936364561384],[176.31196634806307,-38.48722271848044],[176.31074311874505,-38.55256605227987],[176.36578843805498,-38.56890188572972],[176.39759240032294,-38.509684489474],[176.47832553531083,-38.51785240619893],[176.5125759562148,-38.40452256164055],[176.48688814053682,-38.37389287392207],[176.41471761077491,-38.35857803006282],[176.37924396055297,-38.325906363163114],[176.32542187056103,-38.32080141521003],[176.26059071670713,-38.22687037287336],[176.2679300926151,-38.19726167474549],[176.23123321307517,-38.10537261159005],[176.17741112308323,-38.07270094469034],[176.11135673991132,-38.07065896550911],[176.02206099969743,-37.99510573580352],[175.9743550562955,-37.987958808669205],[175.94622078198154,-37.93588833954779],[175.94989046993553,-37.88075490165453],[175.90952390244158,-37.83378938048619],[175.92909557152956,-37.77865594259293],[175.9046309851696,-37.72148052551843],[175.83979983131567,-37.642864327040996],[175.84346951926966,-37.609171670550666],[175.8141120156377,-37.51421963862337],[175.86059472972164,-37.500946773945365],[175.94010463539155,-37.37536505429959]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2126,"NAME_1":"Bay of Plenty","VARNAME_1":"","HASC_1":"NZ.BP","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[174.05143856840203,-41.96675524329984],[173.95602668159813,-42.061707275227135],[173.9254459486482,-42.11990368189225],[173.94012470046417,-42.158701286335656],[173.6893626902745,-42.36698316282132],[173.67713039709452,-42.418032642352124],[173.59272757415263,-42.43130550703013],[173.50710152189274,-42.512984674279416],[173.51444089780074,-42.553824257904054],[173.47896724757877,-42.59364285193808],[173.3688766089589,-42.79579879088005],[173.31505451896697,-42.85093222877332],[173.31994743623898,-42.88462488526365],[173.24288398920507,-42.95405217742554],[173.14013272649322,-42.9897868130971],[173.05695313286932,-43.04492025099036],[172.81964664517764,-43.132725355783336],[172.73279736359976,-43.247076189932336],[172.7120024651938,-43.32262941963792],[172.72790444632776,-43.52682733776112],[172.71444892382976,-43.55439405670776],[172.77805684836568,-43.582981765245],[172.97866645651743,-43.63198926559458],[173.11077522286126,-43.700395568165845],[173.12667720399523,-43.7739068186902],[173.0826409485473,-43.84843905880517],[172.97866645651743,-43.891320621611044],[172.88570102834956,-43.89846754874535],[172.7817265363197,-43.86987984020811],[172.71811861178378,-43.82801926699285],[172.58356338680395,-43.83414520453655],[172.3168993954803,-43.86681687143626],[172.08815551301458,-43.93624416359815],[171.98295779166673,-43.977083747222785],[171.60620316172322,-44.13635812335889],[171.42516522265947,-44.232331144876795],[171.31507458403962,-44.30890536417299],[171.2514666595037,-44.36914375001934],[171.26125249404768,-44.44367599013431],[171.19764456951177,-44.52433416779297],[171.15972446065382,-44.63255906439827],[171.1744032124698,-44.81837916989039],[171.14871539679183,-44.93681396240185],[171.07899132566592,-44.93375099363],[170.7927556652543,-44.874533597374274],[170.6997902370864,-44.83879896170271],[170.59092282778457,-44.81327422193731],[170.53832396711064,-44.88984844123351],[170.38542030236084,-44.95008682707986],[170.36707186259085,-44.910268233045834],[170.13098860421715,-44.94702385830801],[170.01111213105332,-44.822463128252856],[169.95973649969739,-44.65093687702936],[169.85820846630352,-44.66216776252614],[169.78114501926962,-44.64378994989505],[169.77747533131563,-44.611118282995335],[169.66738469269578,-44.58457255363932],[169.67594729792177,-44.53760703247099],[169.6502594822438,-44.46001182358417],[169.5719728058919,-44.45899083399355],[169.5707495765739,-44.38037463551612],[169.59643739225186,-44.25581390546096],[169.55729405407592,-44.21089036347386],[169.62212520792983,-44.15881989435244],[169.67472406860375,-44.07305676874069],[169.73466230518568,-44.03425916429728],[169.7163138654157,-43.96687385131663],[169.77380564336164,-43.93420218441692],[169.78481470722363,-43.89846754874535],[169.85209231971353,-43.86885885061749],[169.90713763902346,-43.81474640231484],[169.98542431537535,-43.78820067295882],[169.98420108605737,-43.74940306851541],[170.0416928640033,-43.72694129752186],[170.04046963468528,-43.68814369307845],[170.0979614126312,-43.666702911675515],[170.0979614126312,-43.59931759869486],[170.19948944602507,-43.56051999425145],[170.22028434443104,-43.52682733776112],[170.3156962312349,-43.5002816084051],[170.4074384300848,-43.496197650042646],[170.4759392718927,-43.43902223296814],[170.62272679005252,-43.41962343074644],[170.7156922182204,-43.321608430047306],[170.75850524435035,-43.320587440456684],[170.8747120295602,-43.276684888060196],[170.9493290179581,-43.205215616717076],[170.99091881477003,-43.221551450166935],[171.06920549112192,-43.116389522333485],[171.11935789315987,-43.085759834615004],[171.2306717610977,-43.06534004280268],[171.2416808249597,-43.00101769859387],[171.31507458403962,-42.94690525029122],[171.4043703242535,-42.949968219063074],[171.44351366242944,-42.91627556257274],[171.68448983807514,-42.88666686444488],[171.75788359715503,-42.87135202058564],[171.770115890335,-42.789672853336356],[171.8569651719129,-42.770274051114654],[171.9340286189468,-42.66409113369058],[172.10528072346656,-42.60487373743486],[172.13219176846255,-42.55790821626652],[172.2483985536724,-42.45785123638615],[172.2961044970743,-42.44457837170814],[172.35726596297425,-42.38842394422426],[172.4563475377321,-42.36494118364009],[172.48815150000007,-42.26794717253157],[172.53341098476602,-42.260800245397256],[172.57133109362397,-42.21689769300077],[172.6190370370259,-42.202603838732145],[172.64594808202187,-42.10152586926116],[172.73035090496376,-42.099483890079924],[172.74747611541574,-42.166869203060585],[172.80986081063364,-42.15972227592627],[172.8355486263116,-42.235275505631854],[172.87591519380555,-42.25161133908171],[172.8563435247176,-42.2955138914782],[172.9236211372075,-42.304702797793745],[172.95297864083946,-42.374130089955635],[173.0104704187854,-42.39046592340549],[173.0630692794593,-42.4864389449234],[173.09854292968126,-42.45887222597676],[173.16949023012518,-42.44457837170814],[173.2110800269371,-42.404759777674116],[173.25511628238507,-42.304702797793745],[173.32606358282897,-42.25161133908171],[173.47896724757877,-42.196477901188445],[173.47652078894276,-42.11990368189225],[173.55725392393066,-42.06885420236144],[173.6098527846046,-42.01372076446818],[173.70893435936247,-41.97390217043416],[173.7529706148104,-41.90957982622535],[173.79578364094036,-41.958587326574914],[173.9181065727402,-41.914684774178426],[174.05143856840203,-41.96675524329984]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2127,"NAME_1":"Canterbury","VARNAME_1":"","HASC_1":"NZ.CA","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[177.89971800282498,-38.97219277402306],[177.84834237146904,-38.9242062632641],[177.74926079671116,-38.901744492270545],[177.65629536854328,-38.90276548186117],[177.66118828581529,-38.85273699192098],[177.59880359059736,-38.85069501273975],[177.59513390264337,-38.80883443952449],[177.54375827128743,-38.80883443952449],[177.46791805357154,-38.75165902244999],[177.45935544834555,-38.70571449087227],[177.4202121101696,-38.68018975110687],[177.44100700857558,-38.64649709461654],[177.30767501291376,-38.602594542220054],[177.28810334382578,-38.6567069905227],[177.12786030316798,-38.58830068795143],[177.17067332929793,-38.5801327712265],[177.20003083292988,-38.528062302105084],[177.25874584019382,-38.50866349988338],[177.23795094178783,-38.42902631181533],[177.46547159493554,-38.33611625906927],[177.49238263993152,-38.30038162339771],[177.49238263993152,-38.22482839369213],[177.66118828581529,-38.16050604948332],[177.69299224808324,-38.11149854913375],[177.66975089104128,-38.021651465159536],[177.72357298103321,-38.025735423522],[177.84956560078703,-38.115582507496214],[177.86302112328502,-38.11047755954313],[177.97066530326887,-37.847062245164196],[178.07463979529874,-37.76334109873368],[178.0367196864408,-37.7327114110152],[177.97311176190487,-37.73679536937767],[177.99268343099286,-37.65511620212838],[177.97800467917688,-37.611213649731894],[178.09421146438672,-37.583646930785264],[178.07953271257074,-37.542807347160625],[178.17127491142062,-37.53259745125446],[178.31194628299042,-37.5540382326574],[178.29482107253844,-37.578541982832185],[178.34986639184837,-37.62448651440991],[178.4807519288742,-37.639801358269146],[178.55047600000012,-37.69289281698118],[178.40491171115832,-37.87360797452021],[178.40001879388632,-37.93997229791026],[178.3400805573044,-38.00429464211906],[178.37433097820835,-38.09414172609328],[178.3229553468524,-38.12068745544929],[178.34864316253038,-38.17275792457071],[178.31194628299042,-38.23912224796075],[178.3351876400324,-38.259542039773066],[178.3302947227604,-38.353473082109744],[178.3449734745764,-38.419837405499784],[178.30093721912846,-38.44434115567457],[178.28136555004048,-38.54031417719248],[178.20185564437057,-38.602594542220054],[178.08075594188873,-38.67814777192564],[177.98534405508485,-38.67610579274441],[177.93519165304693,-38.725113293093976],[177.94620071690892,-38.777183762215394],[177.91317352532295,-38.827212252155576],[177.92051290123095,-38.86805183578022],[177.89971800282498,-38.97219277402306]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2129,"NAME_1":"Gisborne","VARNAME_1":"East Coast","HASC_1":"NZ.GI","TYPE_1":"Unitary Authority","ENGTYPE_1":"Unitary Authority"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[176.5896394032487,-40.42608195106027],[176.49667397508082,-40.39953622170425],[176.46364678349485,-40.40974611761041],[176.39269948305096,-40.36073861726084],[176.40126208827695,-40.286206377145874],[176.347439998285,-40.142246844869014],[176.30095728420108,-40.06363064639158],[176.24224227693713,-40.0268750211294],[176.09667798809534,-39.98909840627661],[176.11869611581932,-39.96663663528306],[176.1211425744553,-39.88393647844316],[176.17741112308323,-39.7399769461663],[176.16884851785724,-39.64502491423901],[176.2116615439872,-39.533737048861866],[176.30829666010905,-39.49902340278092],[176.31441280669904,-39.430617100209645],[176.340100622377,-39.37446267272576],[176.2838320737491,-39.359147828866526],[176.31074311874505,-39.28563657834217],[176.28994822033908,-39.2427550155363],[176.2067686267152,-39.225398192495824],[176.18597372830922,-39.14474001483716],[176.23612613034715,-39.09675350407821],[176.344993539649,-39.17128574419318],[176.40370854691292,-39.153928921152705],[176.42205698668292,-39.06101886840665],[176.45386094895088,-39.00282246174153],[176.61899690688065,-39.0007804825603],[176.5982020084747,-38.95789891975443],[176.61899690688065,-38.9242062632641],[176.70951587641252,-38.84865303355851],[176.69973004186855,-38.80883443952449],[176.72297139891052,-38.73123923063767],[176.77557025958444,-38.68733667824118],[176.82939234957638,-38.69244162619427],[176.8905538154763,-38.66793787601948],[176.9676172625102,-38.70979844923474],[177.00309091273215,-38.69346261578488],[177.0348948750001,-38.63424521952915],[177.09727957021803,-38.619951365260526],[177.12786030316798,-38.58830068795143],[177.28810334382578,-38.6567069905227],[177.30767501291376,-38.602594542220054],[177.44100700857558,-38.64649709461654],[177.4202121101696,-38.68018975110687],[177.45935544834555,-38.70571449087227],[177.46791805357154,-38.75165902244999],[177.54375827128743,-38.80883443952449],[177.59513390264337,-38.80883443952449],[177.59880359059736,-38.85069501273975],[177.66118828581529,-38.85273699192098],[177.65629536854328,-38.90276548186117],[177.74926079671116,-38.901744492270545],[177.84834237146904,-38.9242062632641],[177.89971800282498,-38.97219277402306],[177.89849477350697,-39.07224975390342],[178.00124603621884,-39.115131316709295],[177.92418258918494,-39.17026475460256],[177.90705737873296,-39.2305031404489],[177.864244352603,-39.2682797553017],[177.83855653692504,-39.150865952380855],[177.870360499193,-39.076333712265885],[177.66730443240527,-39.05080897250049],[177.4128727342616,-39.06408183717849],[177.29054980246178,-39.09164855612513],[177.13886936702997,-39.145761004427776],[177.0397877922721,-39.200894442321044],[177.0348948750001,-39.23867105717383],[176.99208184887016,-39.2938044950671],[176.8954467327483,-39.37446267272576],[176.87220537570633,-39.45103689202197],[176.92235777774425,-39.4786036109686],[176.92969715365226,-39.571513663714654],[176.9676172625102,-39.62460512242669],[177.03122518704612,-39.65012986219209],[177.09116342362802,-39.65319283096394],[177.02021612318413,-39.72568309189768],[176.99575153682414,-39.791026425697105],[177.00431414205013,-39.83492897809359],[176.93825975887825,-39.926818041249035],[176.88076798093232,-40.06056767761973],[176.86486599979833,-40.13816288650655],[176.79514192867242,-40.208611168259054],[176.67404222619058,-40.271912522877244],[176.62388982415266,-40.42710294065088],[176.5896394032487,-40.42608195106027]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2130,"NAME_1":"Hawke's Bay","VARNAME_1":"Hawkes Bay","HASC_1":"NZ.HB","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[176.5896394032487,-40.42608195106027],[176.62388982415266,-40.42710294065088],[176.62266659483464,-40.491425284859695],[176.56639804620673,-40.49550924322216],[176.47954876462884,-40.54349575398111],[176.41594084009293,-40.6067971085993],[176.37802073123495,-40.66805648403626],[176.33276124646903,-40.698686171754744],[176.2679300926151,-40.78138632859464],[176.2654836339791,-40.74258872415123],[176.21900091989517,-40.70072815093597],[176.09056184150535,-40.67316143198934],[176.08811538286935,-40.70787507807029],[176.02206099969743,-40.71093804684214],[175.9694621390235,-40.73850476578877],[175.76395961359978,-40.768113463916634],[175.78475451200575,-40.70685408847967],[175.7382717979218,-40.693581223801665],[175.61961855407597,-40.751777630466776],[175.47038457728016,-40.693581223801665],[175.4373573856942,-40.74156773456062],[175.36763331456828,-40.73033684906384],[175.26488205185643,-40.76709247432602],[175.13399651483059,-40.70583309888906],[175.20127412732052,-40.52818091012187],[175.22696194299849,-40.38217939866378],[175.22451548436248,-40.2943742938708],[175.19882766868452,-40.18002345972181],[175.1413358907386,-40.0779245006602],[174.99699483121478,-39.94519585388012],[174.91993138418087,-39.89516736393993],[174.77926001261108,-39.862495697040224],[174.80494782828904,-39.80532027996573],[174.84409116646498,-39.80021533201265],[174.94194951190485,-39.72772507107891],[174.93094044804286,-39.68688548745427],[174.99699483121478,-39.66748668523256],[174.9713070155368,-39.59805939307067],[174.9957716018968,-39.558240799036646],[174.96152118099283,-39.480645590149834],[174.9076990910009,-39.44797392325012],[174.8991364857749,-39.36833673518207],[174.828189185331,-39.33566506828235],[174.825742726695,-39.30299340138264],[174.87222544077895,-39.250922932261226],[174.92604753077086,-39.234587098811375],[174.94561919985884,-39.17945366091811],[174.99454837257878,-39.159033869105784],[175.0520401505247,-39.07122876431281],[174.9664140982648,-39.05897688922541],[174.95907472235683,-39.0007804825603],[174.88690419259493,-38.9946545450166],[174.88935065123093,-38.9180803257204],[174.833082102603,-38.90276548186117],[174.80005491101704,-38.862946887827135],[174.822073038741,-38.791477616484016],[174.86855575282496,-38.777183762215394],[174.9236010721349,-38.75472199122184],[174.9688605569008,-38.68121074069749],[175.1242106802866,-38.62914027157607],[175.24164069481446,-38.63220324034792],[175.32726674707436,-38.55767100023295],[175.50708145682012,-38.56277594818603],[175.54622479499605,-38.60055256303882],[175.64530636975394,-38.569922875320344],[175.63185084725595,-38.61280443812621],[175.52542989659008,-38.75880594958431],[175.587814591808,-38.82108631461188],[175.54989448295007,-38.866009856598986],[175.591484279762,-38.912975377767324],[175.56212677613004,-38.96606683647936],[175.6746638733859,-38.990570586654144],[175.6526457456619,-39.04162006618494],[175.63796699384594,-39.1600548586964],[175.56335000544803,-39.27542668243601],[175.67344064406788,-39.29686746383895],[175.81288878631972,-39.30299340138264],[175.8899522333536,-39.20804136945535],[175.9694621390235,-39.18353761928057],[175.98414089083948,-39.15290793156209],[176.08933861218733,-39.15801287951517],[176.18597372830922,-39.14474001483716],[176.2067686267152,-39.225398192495824],[176.28994822033908,-39.2427550155363],[176.31074311874505,-39.28563657834217],[176.2838320737491,-39.359147828866526],[176.340100622377,-39.37446267272576],[176.31441280669904,-39.430617100209645],[176.30829666010905,-39.49902340278092],[176.2116615439872,-39.533737048861866],[176.16884851785724,-39.64502491423901],[176.17741112308323,-39.7399769461663],[176.1211425744553,-39.88393647844316],[176.11869611581932,-39.96663663528306],[176.09667798809534,-39.98909840627661],[176.24224227693713,-40.0268750211294],[176.30095728420108,-40.06363064639158],[176.347439998285,-40.142246844869014],[176.40126208827695,-40.286206377145874],[176.39269948305096,-40.36073861726084],[176.46364678349485,-40.40974611761041],[176.49667397508082,-40.39953622170425],[176.5896394032487,-40.42608195106027]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2131,"NAME_1":"Manawatu-Wanganui","VARNAME_1":"Wanganui-Mawanatu","HASC_1":"NZ.MW","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[174.05143856840203,-41.96675524329984],[173.9181065727402,-41.914684774178426],[173.79578364094036,-41.958587326574914],[173.7529706148104,-41.90957982622535],[173.70893435936247,-41.97390217043416],[173.6098527846046,-42.01372076446818],[173.55725392393066,-42.06885420236144],[173.47652078894276,-42.11990368189225],[173.47896724757877,-42.196477901188445],[173.32606358282897,-42.25161133908171],[173.25511628238507,-42.304702797793745],[173.2110800269371,-42.404759777674116],[173.16949023012518,-42.44457837170814],[173.09854292968126,-42.45887222597676],[173.0630692794593,-42.4864389449234],[173.0104704187854,-42.39046592340549],[172.95297864083946,-42.374130089955635],[172.9236211372075,-42.304702797793745],[172.8563435247176,-42.2955138914782],[172.87591519380555,-42.25161133908171],[172.8355486263116,-42.235275505631854],[172.80986081063364,-42.15972227592627],[172.74747611541574,-42.166869203060585],[172.73035090496376,-42.099483890079924],[172.74992257405174,-42.055581337683435],[172.88203134039554,-41.90855883663473],[172.86368290062558,-41.86976123219132],[172.9370766597055,-41.79931295043882],[172.97255030992744,-41.745200502136164],[173.01658656537538,-41.72784367909569],[173.0655157380953,-41.66964727243058],[173.0716318846853,-41.62880768880594],[173.1682670008072,-41.58490513640945],[173.19640127512113,-41.531813677697414],[173.316277748285,-41.51445685465694],[173.26612534624707,-41.46749133348861],[173.34808171055295,-41.388875135011176],[173.48875308212277,-41.222453831740765],[173.58049528097263,-41.183656227297355],[173.6049598673326,-41.0590954972422],[173.67101425050453,-41.036633726248645],[173.81290885139234,-40.95393356940875],[173.89731167433422,-40.96005950695245],[173.96214282818815,-40.89675815233425],[174.00617908363608,-40.91105200660288],[173.9119904261502,-40.965164454905526],[173.85205218956827,-41.02233987198002],[173.87040062933826,-41.07951528905452],[173.93890147114618,-41.0846202370076],[173.96458928682412,-41.13771169571963],[174.04654565113003,-41.05399054928912],[174.16152920702189,-40.98456325712723],[174.2190209849678,-41.07134737232959],[174.17987764679185,-41.18161424811612],[174.11504649293795,-41.222453831740765],[174.04532242181202,-41.21224393583461],[174.00128616636408,-41.27350331127157],[174.11871618089194,-41.23470570682816],[174.1554130604319,-41.253083519459246],[174.25816432314375,-41.24491560273432],[174.19822608656182,-41.33067872834606],[174.13217170338993,-41.288818155130805],[174.04776888044802,-41.39500107255487],[174.03064366999604,-41.465449354307374],[174.08691221862398,-41.526708729744335],[174.14929691384188,-41.5563174278722],[174.16764535361187,-41.60634591781239],[174.15908274838588,-41.668626282839966],[174.18110087610984,-41.709465866464605],[174.27773599223173,-41.74213753336432],[174.2190209849678,-41.79318701289512],[174.19700285724383,-41.83606857570099],[174.05143856840203,-41.96675524329984]]],[[[173.95724991091615,-40.69256023421105],[173.94624084705416,-40.79465919327265],[173.90220459160622,-40.85796054789084],[173.81902499798232,-40.92738784005273],[173.77131905458037,-40.86102351666269],[173.8202482273003,-40.85591856870961],[173.80556947548433,-40.801806120406965],[173.8410431257063,-40.766071484735406],[173.93767824182817,-40.7466726825137],[173.95724991091615,-40.69256023421105]]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2132,"NAME_1":"Marlborough","VARNAME_1":"","HASC_1":"NZ.MA","TYPE_1":"Unitary Authority","ENGTYPE_1":"Unitary Authority"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[173.6049598673326,-41.0590954972422],[173.58049528097263,-41.183656227297355],[173.48875308212277,-41.222453831740765],[173.34808171055295,-41.388875135011176],[173.26612534624707,-41.46749133348861],[173.316277748285,-41.51445685465694],[173.19640127512113,-41.531813677697414],[173.1682670008072,-41.58490513640945],[173.0716318846853,-41.62880768880594],[173.0655157380953,-41.66964727243058],[173.01658656537538,-41.72784367909569],[172.97255030992744,-41.745200502136164],[172.9370766597055,-41.79931295043882],[172.86368290062558,-41.86976123219132],[172.88203134039554,-41.90855883663473],[172.74992257405174,-42.055581337683435],[172.73035090496376,-42.099483890079924],[172.64594808202187,-42.10152586926116],[172.6190370370259,-42.202603838732145],[172.57133109362397,-42.21689769300077],[172.53341098476602,-42.260800245397256],[172.48815150000007,-42.26794717253157],[172.41108805296616,-42.2955138914782],[172.34381044047626,-42.23119154726939],[172.35848919229224,-42.17095316142305],[172.32423877138828,-42.1423654528858],[172.26430053480635,-42.1423654528858],[172.21537136208644,-42.10663081721424],[172.14687052027853,-42.097441910898695],[172.11017364073857,-42.047413420958506],[172.06002123870064,-41.93408357640013],[172.11995947528254,-41.86771925301009],[172.11995947528254,-41.72375972073323],[172.15298666686851,-41.704360918511526],[172.2422824070824,-41.6900670642429],[172.24105917776438,-41.641059563893336],[172.33280137661427,-41.61042987617485],[172.34748012843025,-41.51343586506633],[172.42454357546416,-41.47565925021354],[172.4734727481841,-41.40725294764226],[172.52362515022202,-41.41542086436719],[172.59334922134792,-41.37968622869563],[172.6068047438459,-41.29902805103696],[172.57500078157796,-41.2632934153654],[172.66674298042784,-41.24287362355308],[172.6214834956619,-41.16221544589442],[172.49916056386206,-41.06930539314836],[172.50038379318005,-41.04071768461111],[172.3951860718322,-41.02642383034249],[172.35726596297425,-41.06011648683282],[172.3120064782083,-41.017234924026944],[172.3841770079702,-40.96312247572429],[172.33035491797827,-40.939639715140125],[172.28387220389433,-40.876338360521935],[172.2361662604924,-40.868170443797005],[172.24962178299037,-40.81405799549435],[172.21659459140443,-40.77526039105095],[172.28020251594035,-40.75279862005739],[172.36827502683622,-40.698686171754744],[172.44289201523412,-40.63027986918347],[172.529741296812,-40.58433533760575],[172.64839454065788,-40.5046981495377],[172.7609316379137,-40.513887055853246],[172.6850914201978,-40.58944028555883],[172.65451068724786,-40.651720650586405],[172.6875378788338,-40.67826637994242],[172.6948772547418,-40.72829486988261],[172.73402059291774,-40.7721974222791],[172.8379950849476,-40.83039382894421],[172.88937071630355,-40.831414818534824],[172.9884522910614,-40.78036533900403],[173.01169364810337,-40.80486908917881],[173.0691854260493,-40.96108049654306],[173.0129168774214,-40.99273117385216],[173.03248854650937,-41.089725184960685],[173.00924718946737,-41.14077466449148],[173.0655157380953,-41.183656227297355],[173.16949023012518,-41.3204688324399],[173.27591118079104,-41.256146488231096],[173.313831289649,-41.24797857150617],[173.32973327078298,-41.19999206074721],[173.4019038005449,-41.156089508350725],[173.43248453349483,-41.17446732098181],[173.50710152189274,-41.13464872694779],[173.57437913438264,-41.06317945560466],[173.6049598673326,-41.0590954972422]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2133,"NAME_1":"Tasman-Nelson","VARNAME_1":"","HASC_1":"NZ.NE","TYPE_1":"Unitary Authority","ENGTYPE_1":"Unitary Authority"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[174.61901697195327,-36.12158983702312],[174.58354332173133,-36.17059733737269],[174.47345268311147,-36.24206660871582],[174.34012068744966,-36.3176198384214],[174.15418983111388,-36.21449988976918],[174.11993941020992,-36.169576347782076],[174.060001173628,-36.194080097956856],[174.10526065839395,-36.24717155666889],[174.15663628974988,-36.277801244387376],[174.18232410542785,-36.36458535958974],[174.1444039965699,-36.390110099355134],[174.05266179772002,-36.39929900567068],[174.01229523022607,-36.34518655736803],[174.0000629370461,-36.274738275615526],[173.93400855387418,-36.17570228532577],[173.83492697911632,-36.0562465032237],[173.49731568734876,-35.68562728183008],[173.3749927555489,-35.56412952054677],[173.43737745076683,-35.413023061135604],[173.39945734190889,-35.41200207154499],[173.34808171055295,-35.515122020197204],[173.26490211692905,-35.42016998826992],[173.21474971489113,-35.37933040464527],[173.1633740835352,-35.29356727903353],[173.05572990355134,-35.19555227833439],[173.1548114783092,-35.16185962184406],[173.17682960603318,-35.09345331927279],[173.1682670008072,-35.03729889178891],[173.12545397467724,-34.95561972453963],[173.05939959150533,-34.86883560933727],[172.8514506074456,-34.63094503472373],[172.73157413428174,-34.529867065252745],[172.7009934013318,-34.5206781589372],[172.67163589769984,-34.458397793909626],[172.7022166306498,-34.42572612700991],[172.79151237086367,-34.45329284595654],[172.86490612994356,-34.41449524151314],[173.0104704187854,-34.424705137419295],[173.0006845842414,-34.48392253367503],[172.91995144925352,-34.51761519016535],[172.9957916669694,-34.57070664887739],[173.02881885855535,-34.6605537328516],[173.0581763621873,-34.702414306066856],[173.11689136945125,-34.7371279521478],[173.17560637671517,-34.80247128594722],[173.18294575262317,-34.86270967179357],[173.26612534624707,-34.88312946360589],[173.24410721852308,-34.976039516351946],[173.33340295873697,-34.964808630855174],[173.28569701533502,-34.86270967179357],[173.37009983827693,-34.84637383834371],[173.39701088327288,-34.82391206735016],[173.4606188078088,-34.84637383834371],[173.3688766089589,-34.8964023282839],[173.3811089021389,-34.94030488068039],[173.43248453349483,-34.98522842266749],[173.55847715324867,-34.99952227693612],[173.52667319098072,-34.94336784945223],[173.5548074652947,-34.92907399518361],[173.6905859195925,-34.9474518078147],[173.71749696458846,-34.99645930816427],[173.85327541888628,-35.00156425611735],[173.94134792978215,-35.053634725238766],[173.96703574546012,-35.119999048628806],[174.07712638407997,-35.11285212149449],[174.12360909816394,-35.1710485281596],[174.056331485674,-35.17921644488453],[174.060001173628,-35.23128691400595],[174.09914451180396,-35.29356727903353],[174.15908274838588,-35.26497957049628],[174.29119151472972,-35.22005602850918],[174.29119151472972,-35.27621045599306],[174.32421870631566,-35.31398707084585],[174.3645852738096,-35.43650582171977],[174.42819319834553,-35.438547800901006],[174.47467591242946,-35.55596160382184],[174.54195352491936,-35.59067524990279],[174.5150424799234,-35.62743087516497],[174.5187121678774,-35.715235979957946],[174.55418581809937,-35.73055082381718],[174.55051613014535,-35.79078920966353],[174.59210592695732,-35.85817452264419],[174.53339091969337,-35.85511155387234],[174.49669404015344,-35.79691514720723],[174.42207705175554,-35.784663272119836],[174.38538017221558,-35.76118051153567],[174.32911162358766,-35.7693484282606],[174.33522777017765,-35.81325098065709],[174.39883569471357,-35.81529295983832],[174.47345268311147,-35.83571275165063],[174.46489007788549,-35.94904259620901],[174.50770310401543,-36.02970077386768],[174.5908826976393,-36.047057596908154],[174.5908826976393,-36.09810707643895],[174.61901697195327,-36.12158983702312]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2134,"NAME_1":"Northland","VARNAME_1":"","HASC_1":"NZ.NO","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[169.7163138654157,-43.96687385131663],[169.73466230518568,-44.03425916429728],[169.67472406860375,-44.07305676874069],[169.62212520792983,-44.15881989435244],[169.55729405407592,-44.21089036347386],[169.59643739225186,-44.25581390546096],[169.5707495765739,-44.38037463551612],[169.5719728058919,-44.45899083399355],[169.6502594822438,-44.46001182358417],[169.67594729792177,-44.53760703247099],[169.66738469269578,-44.58457255363932],[169.77747533131563,-44.611118282995335],[169.78114501926962,-44.64378994989505],[169.85820846630352,-44.66216776252614],[169.95973649969739,-44.65093687702936],[170.01111213105332,-44.822463128252856],[170.13098860421715,-44.94702385830801],[170.36707186259085,-44.910268233045834],[170.38542030236084,-44.95008682707986],[170.53832396711064,-44.88984844123351],[170.59092282778457,-44.81327422193731],[170.6997902370864,-44.83879896170271],[170.7927556652543,-44.874533597374274],[171.07899132566592,-44.93375099363],[171.14871539679183,-44.93681396240185],[171.11079528793388,-44.99194740029511],[170.98847235613403,-45.084857453041174],[170.91997151432614,-45.15632672438429],[170.8624797363802,-45.24106886040542],[170.82455962752226,-45.32479000683593],[170.8710423416062,-45.38502839268228],[170.82211316888626,-45.41872104917261],[170.83312223274825,-45.47385448706588],[170.65942366959248,-45.62904490483951],[170.6508610643665,-45.668863498873534],[170.58113699324056,-45.71480803045126],[170.6386287711865,-45.738290791035425],[170.67287919209045,-45.78627730179438],[170.6263964780065,-45.79852917688177],[170.61783387278052,-45.848557666821954],[170.7267012820824,-45.79240323933807],[170.74015680458035,-45.87816636494982],[170.66309335754647,-45.904712094305836],[170.59214605710255,-45.90369110471522],[170.34750019350287,-45.940446729977396],[170.29245487419294,-45.96392949056157],[170.19826621670708,-46.061944491260704],[170.1713551717111,-46.153833554416146],[170.00132629650935,-46.24368063839036],[169.97441525151336,-46.2722683469276],[169.7970470004036,-46.34577959745196],[169.78236824858763,-46.46523537955403],[169.62946458383783,-46.53670465089715],[169.5829818697539,-46.579586213703024],[169.49857904681198,-46.55610345311886],[169.3517915286522,-46.63880360995876],[169.2673887057103,-46.624509755690134],[169.1903252586764,-46.655139443408615],[169.1964414052664,-46.57652324493118],[169.25637964184833,-46.52547376540038],[169.1866555707224,-46.49790704645375],[169.2050040104924,-46.41316491043261],[169.13894962732047,-46.37947225394229],[169.20133432253837,-46.31106595137101],[169.19277171731238,-46.233470742484194],[169.21234338640036,-46.20590402353756],[169.13772639800246,-46.13545574178506],[169.17686973617842,-46.1191199083352],[169.08023462005653,-46.00272709500497],[169.11203858232452,-45.94963563629294],[169.09124368391852,-45.85876756272812],[169.01907315415662,-45.79852917688177],[169.00928731961264,-45.73931178062604],[169.0410912818806,-45.65661162378614],[169.06922555619457,-45.64946469665183],[169.1132618116425,-45.58003740448994],[169.16830713095243,-45.447308757709855],[169.21845953299035,-45.43403589303185],[169.16830713095243,-45.34010485069518],[169.1157082702785,-45.319685058882854],[169.08879722528252,-45.270677558533286],[169.03130544733662,-45.303349225433],[168.97870658666267,-45.36256662168873],[168.92610772598874,-45.450371726481706],[168.79766864759893,-45.43403589303185],[168.79277573032692,-45.389112351044744],[168.737730411017,-45.348272767420106],[168.68757800897905,-45.243110839586656],[168.55669247195323,-45.311517142157925],[168.47473610764735,-45.32785297560778],[168.33651119471352,-45.32989495478902],[168.30837692039955,-45.21860708941187],[168.23253670268366,-45.143053859706285],[168.30226077380956,-45.084857453041174],[168.31571629630756,-45.03074500473852],[168.23865284927365,-45.02257708801359],[168.15914294360374,-44.94293989994554],[168.1236692933818,-44.87249161819304],[168.1946165938257,-44.78672849258129],[168.17993784200974,-44.70096536696955],[168.26189420631562,-44.52739713656482],[168.3487434878935,-44.49880942802758],[168.48085225423733,-44.49166250089326],[168.5175491337773,-44.46409578194663],[168.63742560694112,-44.43244510463754],[168.6704527985271,-44.40181541691905],[168.75974853874095,-44.39466848978474],[168.83191906850286,-44.35893385411318],[168.8832946998588,-44.221100259380016],[168.9530187709847,-44.20272244674893],[168.98604596257067,-44.1435050504932],[169.14873546186445,-44.08428765423747],[169.1988878639024,-44.10981239400287],[169.28818360411628,-44.10368645645917],[169.32610371297423,-44.059783904062684],[169.38971163751015,-44.121043279499645],[169.47289123113404,-44.059783904062684],[169.53038300907994,-44.05569994570022],[169.60989291474985,-44.00158749739757],[169.59521416293387,-43.96585286172601],[169.7163138654157,-43.96687385131663]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2135,"NAME_1":"Otago","VARNAME_1":"","HASC_1":"NZ.OT","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[167.86923759523813,-46.68372715194586],[167.97198885795,-46.723545745979884],[168.00256959089995,-46.78888907977931],[168.08452595520586,-46.84810647603504],[168.14935710905976,-46.8777151741629],[168.1224460640638,-46.90426090351892],[168.02458771862393,-46.91344980983447],[168.1236692933818,-46.9920660083119],[168.17749138337373,-46.97368819568081],[168.17749138337373,-47.05128340456763],[168.10532085361183,-47.11560574877644],[168.01235542544396,-47.1196897071389],[167.82642456910818,-47.19217996807264],[167.71755715980632,-47.17992809298524],[167.63682402481842,-47.21055778070372],[167.5218404689266,-47.28713199999993],[167.45700931507267,-47.278964083275],[167.46924160825264,-47.21464173906619],[167.56709995369252,-47.1768651242134],[167.5817787055085,-47.08191309228611],[167.61847558504846,-47.0431154878427],[167.68452996822037,-47.01452777930545],[167.68819965617436,-46.9665412685465],[167.75792372730027,-46.936932570418634],[167.7505843513923,-46.84810647603504],[167.70043194935437,-46.796036006913624],[167.71878038912433,-46.716398818845576],[167.78728123093225,-46.68679012071771],[167.86923759523813,-46.68372715194586]]],[[[166.6802586981437,-45.597394227530415],[166.71328588972966,-45.621897977705196],[166.72429495359162,-45.6984721970014],[166.68392838609768,-45.74850068694158],[166.5799538940678,-45.74543771816974],[166.5187924281679,-45.64333875910813],[166.6044184804278,-45.602499175483494],[166.6802586981437,-45.597394227530415]]],[[[166.9640478999193,-45.1502007868406],[166.95059237742134,-45.20329224555263],[166.9885124862793,-45.25842568344589],[166.94692268946736,-45.29416031911745],[166.87719861834142,-45.243110839586656],[166.92245810310737,-45.175725526605994],[166.9640478999193,-45.1502007868406]]],[[[168.3487434878935,-44.49880942802758],[168.26189420631562,-44.52739713656482],[168.17993784200974,-44.70096536696955],[168.1946165938257,-44.78672849258129],[168.1236692933818,-44.87249161819304],[168.15914294360374,-44.94293989994554],[168.23865284927365,-45.02257708801359],[168.31571629630756,-45.03074500473852],[168.30226077380956,-45.084857453041174],[168.23253670268366,-45.143053859706285],[168.30837692039955,-45.21860708941187],[168.33651119471352,-45.32989495478902],[168.47473610764735,-45.32785297560778],[168.55669247195323,-45.311517142157925],[168.68757800897905,-45.243110839586656],[168.737730411017,-45.348272767420106],[168.79277573032692,-45.389112351044744],[168.79766864759893,-45.43403589303185],[168.92610772598874,-45.450371726481706],[168.97870658666267,-45.36256662168873],[169.03130544733662,-45.303349225433],[169.08879722528252,-45.270677558533286],[169.1157082702785,-45.319685058882854],[169.16830713095243,-45.34010485069518],[169.21845953299035,-45.43403589303185],[169.16830713095243,-45.447308757709855],[169.1132618116425,-45.58003740448994],[169.06922555619457,-45.64946469665183],[169.0410912818806,-45.65661162378614],[169.00928731961264,-45.73931178062604],[169.01907315415662,-45.79852917688177],[169.09124368391852,-45.85876756272812],[169.11203858232452,-45.94963563629294],[169.08023462005653,-46.00272709500497],[169.17686973617842,-46.1191199083352],[169.13772639800246,-46.13545574178506],[169.21234338640036,-46.20590402353756],[169.19277171731238,-46.233470742484194],[169.20133432253837,-46.31106595137101],[169.13894962732047,-46.37947225394229],[169.2050040104924,-46.41316491043261],[169.1866555707224,-46.49790704645375],[169.25637964184833,-46.52547376540038],[169.1964414052664,-46.57652324493118],[169.1903252586764,-46.655139443408615],[169.14139608595647,-46.63165668282444],[169.08635076664655,-46.66841230808662],[169.00561763165865,-46.67555923522093],[168.9444561657587,-46.657181422589844],[168.84904427895484,-46.660244391361694],[168.83191906850286,-46.60919491183089],[168.78298989578295,-46.56018741148132],[168.6496579001211,-46.57346027615933],[168.4979774646893,-46.60919491183089],[168.5151026751413,-46.57550225534056],[168.41112818311143,-46.56018741148132],[168.2839123340396,-46.51832683826606],[168.37565453288946,-46.48565517136635],[168.32305567221553,-46.45604647323849],[168.25944774767962,-46.49076011931943],[168.17137523678375,-46.369262358036124],[168.08574918452385,-46.33965365990826],[167.99767667362795,-46.38151423312352],[167.91816676795807,-46.35701048294873],[167.8252013397902,-46.369262358036124],[167.78728123093225,-46.38968214984845],[167.7310126823043,-46.359052462129966],[167.71633393048833,-46.262058451021446],[167.61480589709447,-46.192631158859555],[167.53407276210658,-46.16302246073169],[167.40318722508076,-46.15179157523491],[167.3554812816788,-46.19161016926894],[167.34080252986283,-46.250827565524666],[167.21480991010898,-46.26307944061206],[167.10594250080715,-46.25491152388713],[166.84539465607347,-46.20896699230941],[166.77077766767556,-46.217134909034336],[166.6668031756457,-46.20794600271879],[166.62032046156176,-46.14668662728183],[166.70961620177565,-46.115035949972736],[166.72551818290964,-46.07113339757625],[166.58484681133982,-46.04969261617331],[166.6178740029258,-45.98843324073635],[166.55181961975387,-45.979244334420805],[166.49922075907992,-46.00170610541436],[166.449068357042,-45.98843324073635],[166.42582700000003,-45.90267011512461],[166.445398669088,-45.81792797910347],[166.5200156574859,-45.79444521851931],[166.61909723224377,-45.79240323933807],[166.7536524572236,-45.765857509982055],[166.85028757334547,-45.760752562028976],[166.8380552801655,-45.70664011372633],[166.73530401745361,-45.72910188471988],[166.73652724677163,-45.58003740448994],[166.6716960929177,-45.574932456536864],[166.6802586981437,-45.516736049871746],[166.77811704358356,-45.34623078823887],[166.8405017388015,-45.2778244856676],[166.9077793512914,-45.306412194204846],[167.00686092604926,-45.320706048473475],[167.02520936581925,-45.28599240239253],[166.96771758787332,-45.19206136005585],[166.9726105051453,-45.14203287011567],[167.0606830160412,-45.061374692457],[167.24294418442295,-44.90618427468337],[167.2698552294189,-44.87044963901181],[167.44844670984668,-44.7744766174939],[167.49003650665864,-44.77651859667513],[167.58789485209851,-44.66829370006983],[167.62581496095646,-44.66216776252614],[167.7505843513923,-44.57946760568624],[167.8166387345642,-44.606013335042256],[167.82887102774419,-44.51106130311497],[167.86189821933013,-44.44673895890616],[167.92917583182006,-44.38956354183166],[167.973212087268,-44.3854795834692],[168.00012313226395,-44.32524119762285],[168.09186533111384,-44.33034614557593],[168.09675824838584,-44.276233697273284],[168.15425002633177,-44.28848557236068],[168.24109930790965,-44.25887687423281],[168.34996671721152,-44.28440161399821],[168.34996671721152,-44.32422020803224],[168.4184675590194,-44.361996822885025],[168.37076161561748,-44.42529817750322],[168.3487434878935,-44.49880942802758]]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2136,"NAME_1":"Southland","VARNAME_1":"","HASC_1":"NZ.SO","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[174.61657051331727,-38.70673548046289],[174.65938353944722,-38.735323189000134],[174.7511257382971,-38.74655407449691],[174.79760845238104,-38.732260220228284],[174.86855575282496,-38.777183762215394],[174.822073038741,-38.791477616484016],[174.80005491101704,-38.862946887827135],[174.833082102603,-38.90276548186117],[174.88935065123093,-38.9180803257204],[174.88690419259493,-38.9946545450166],[174.95907472235683,-39.0007804825603],[174.9664140982648,-39.05897688922541],[175.0520401505247,-39.07122876431281],[174.99454837257878,-39.159033869105784],[174.94561919985884,-39.17945366091811],[174.92604753077086,-39.234587098811375],[174.87222544077895,-39.250922932261226],[174.825742726695,-39.30299340138264],[174.828189185331,-39.33566506828235],[174.8991364857749,-39.36833673518207],[174.9076990910009,-39.44797392325012],[174.96152118099283,-39.480645590149834],[174.9957716018968,-39.558240799036646],[174.9713070155368,-39.59805939307067],[174.99699483121478,-39.66748668523256],[174.93094044804286,-39.68688548745427],[174.94194951190485,-39.72772507107891],[174.84409116646498,-39.80021533201265],[174.80494782828904,-39.80532027996573],[174.77926001261108,-39.862495697040224],[174.72299146398313,-39.86862163458392],[174.67773197921719,-39.84513887399975],[174.56030196468936,-39.81757215505312],[174.41840736380155,-39.73180902944137],[174.35479943926563,-39.66136074768887],[174.19944931587983,-39.5868285075739],[174.078349613398,-39.577639601258355],[173.9902771025021,-39.55415684067418],[173.9083207381962,-39.511275277868315],[173.79700687025834,-39.41836522512225],[173.75174738549242,-39.281552619979706],[173.79578364094036,-39.1917055360055],[173.8447128136603,-39.15290793156209],[174.072233466808,-39.05591392045356],[174.19822608656182,-38.987507617882294],[174.39149631880557,-38.98852860747291],[174.43553257425353,-38.96198287811689],[174.57742717514134,-38.827212252155576],[174.61657051331727,-38.70673548046289]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2137,"NAME_1":"Taranaki","VARNAME_1":"New Plymouth","HASC_1":"NZ.TK","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[175.94010463539155,-37.37536505429959],[175.86059472972164,-37.500946773945365],[175.8141120156377,-37.51421963862337],[175.84346951926966,-37.609171670550666],[175.83979983131567,-37.642864327040996],[175.9046309851696,-37.72148052551843],[175.92909557152956,-37.77865594259293],[175.90952390244158,-37.83378938048619],[175.94989046993553,-37.88075490165453],[175.94622078198154,-37.93588833954779],[175.9743550562955,-37.987958808669205],[176.02206099969743,-37.99510573580352],[176.11135673991132,-38.07065896550911],[176.17741112308323,-38.07270094469034],[176.23123321307517,-38.10537261159005],[176.2679300926151,-38.19726167474549],[176.26059071670713,-38.22687037287336],[176.32542187056103,-38.32080141521003],[176.37924396055297,-38.325906363163114],[176.41471761077491,-38.35857803006282],[176.48688814053682,-38.37389287392207],[176.5125759562148,-38.40452256164055],[176.47832553531083,-38.51785240619893],[176.39759240032294,-38.509684489474],[176.36578843805498,-38.56890188572972],[176.31074311874505,-38.55256605227987],[176.31196634806307,-38.48722271848044],[176.23367967171114,-38.521936364561384],[176.18597372830922,-38.514789437427076],[176.1223658037733,-38.46884490584935],[176.0636507965094,-38.53623021883001],[176.2116615439872,-38.61076245894498],[176.17741112308323,-38.68529469905995],[176.26181394602511,-38.76288990794677],[176.22022414921318,-38.79249860607463],[176.11624965718332,-38.769015845490465],[176.09667798809534,-38.81291839788695],[176.12970517968128,-38.879282721276994],[176.2030989387612,-38.943605065485805],[176.26181394602511,-38.92624824244533],[176.28505530306708,-39.076333712265885],[176.23612613034715,-39.09675350407821],[176.18597372830922,-39.14474001483716],[176.08933861218733,-39.15801287951517],[175.98414089083948,-39.15290793156209],[175.9694621390235,-39.18353761928057],[175.8899522333536,-39.20804136945535],[175.81288878631972,-39.30299340138264],[175.67344064406788,-39.29686746383895],[175.56335000544803,-39.27542668243601],[175.63796699384594,-39.1600548586964],[175.6526457456619,-39.04162006618494],[175.6746638733859,-38.990570586654144],[175.56212677613004,-38.96606683647936],[175.591484279762,-38.912975377767324],[175.54989448295007,-38.866009856598986],[175.587814591808,-38.82108631461188],[175.52542989659008,-38.75880594958431],[175.63185084725595,-38.61280443812621],[175.64530636975394,-38.569922875320344],[175.54622479499605,-38.60055256303882],[175.50708145682012,-38.56277594818603],[175.32726674707436,-38.55767100023295],[175.24164069481446,-38.63220324034792],[175.1242106802866,-38.62914027157607],[174.9688605569008,-38.68121074069749],[174.9236010721349,-38.75472199122184],[174.86855575282496,-38.777183762215394],[174.79760845238104,-38.732260220228284],[174.7511257382971,-38.74655407449691],[174.65938353944722,-38.735323189000134],[174.61657051331727,-38.70673548046289],[174.64470478763124,-38.456593030761965],[174.63491895308726,-38.38512375941884],[174.72054500534713,-38.30038162339771],[174.70586625353116,-38.176841882933175],[174.6789552085352,-38.11660349708683],[174.77559032465706,-38.12579240340237],[174.9028061737289,-38.08393183018711],[174.83919824919298,-38.02267245475015],[174.86977898214295,-37.9491612042258],[174.78659938851905,-37.95324516258826],[174.75846511420508,-37.861356099432825],[174.77681355397507,-37.82970542212372],[174.9688605569008,-37.788865838499085],[174.94194951190485,-37.75415219241814],[174.89424356850293,-37.79090781768032],[174.83919824919298,-37.800096723995864],[174.81228720419702,-37.68574588984687],[174.76947417806707,-37.59896177464451],[174.7462328210251,-37.504009742717216],[174.70097333625915,-37.431519481783475],[174.80739428692502,-37.32227359558756],[174.86488606487094,-37.271224116056764],[174.92115461349889,-37.259993230559985],[174.99944128985078,-37.21506968857288],[174.95295857576684,-37.146663386001606],[175.01534327098474,-37.12318062541744],[175.0581562971147,-37.04558541653062],[175.15112172528256,-37.06090026038986],[175.18292568755055,-37.030270572671384],[175.27344465708242,-37.02414463512768],[175.2844537209444,-37.002703853724746],[175.30769507798638,-37.08744598974588],[175.2966860141244,-37.116033698283125],[175.32482028843836,-37.1844400008544],[175.3688565438863,-37.21200671980103],[175.53888541908807,-37.17014614658578],[175.5156440620461,-37.11092875033005],[175.5242066672721,-37.06090026038986],[175.49484916364014,-36.96696921805319],[175.42879478046822,-36.90060489466315],[175.40555342342626,-36.85363937349481],[175.4422503029662,-36.80667385232647],[175.50463499818412,-36.78829603969538],[175.42879478046822,-36.700490934902405],[175.4422503029662,-36.60860187174696],[175.3443919575263,-36.554489423444316],[175.32604351775635,-36.490167079235505],[175.3688565438863,-36.46668431865134],[175.53643896045207,-36.54223754835692],[175.5327692724981,-36.60247593420327],[175.585368133172,-36.62800067396867],[175.60738626089596,-36.68517609104317],[175.61227917816797,-36.75358239361444],[175.72481627542382,-36.72193171630534],[175.78108482405176,-36.69334400776809],[175.8226746208637,-36.731120622620885],[175.75172732041977,-36.7637922895206],[175.70157491838185,-36.80769484191709],[175.75662023769178,-36.836282550454335],[175.8190049329097,-36.84342947758865],[175.85814827108564,-36.9230666656567],[175.84469274858768,-36.947570415831485],[175.88505931608162,-37.02924958308076],[175.8923986919896,-37.12215963582682],[175.87894316949163,-37.201796823894874],[175.9009612972156,-37.27837104319107],[175.94499755266352,-37.345756356171734],[175.94010463539155,-37.37536505429959]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2138,"NAME_1":"Waikato","VARNAME_1":"","HASC_1":"NZ.WK","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[176.2679300926151,-40.78138632859464],[176.21900091989517,-40.88961122519994],[176.13949101422529,-40.96618544449614],[176.10768705195733,-41.01621393443633],[176.07099017241737,-41.122396851860394],[175.99759641333748,-41.178551279344276],[175.9645692217515,-41.24491560273432],[175.86915733494763,-41.28779716554019],[175.8092190983657,-41.36232940565516],[175.67588710270388,-41.41439987477658],[175.584144903854,-41.487911125300926],[175.5327692724981,-41.497100031616476],[175.4324644684222,-41.57265326132206],[175.37864237843027,-41.56959029255021],[175.32237382980236,-41.609408886584234],[175.23674777754246,-41.60838789699362],[175.1939347514125,-41.52568774015372],[175.21472964981848,-41.429714718635815],[175.10708546983463,-41.382749197467476],[175.04225431598073,-41.37356029115193],[174.95295857576684,-41.41542086436719],[174.9052526323649,-41.421546801910885],[174.84776085441896,-41.358245447292695],[174.9064758616829,-41.28167122799649],[174.88935065123093,-41.23164273805631],[174.84409116646498,-41.22960075887507],[174.78659938851905,-41.26737737372787],[174.836751790557,-41.32353180121175],[174.81718012146902,-41.34497258261469],[174.70708948284917,-41.358245447292695],[174.65816031012923,-41.33782565548037],[174.6116775960453,-41.285755186358955],[174.64225832899524,-41.24083164437185],[174.71320562943916,-41.219390862968915],[174.79516199374504,-41.12443883104162],[174.86610929418896,-41.0846202370076],[174.84653762510098,-41.04888560133604],[174.93950305326885,-40.99987810098647],[174.9713070155368,-40.94882862145567],[174.9847625380348,-40.88144330847501],[175.0593795264327,-40.826309870581746],[175.13399651483059,-40.70583309888906],[175.26488205185643,-40.76709247432602],[175.36763331456828,-40.73033684906384],[175.4373573856942,-40.74156773456062],[175.47038457728016,-40.693581223801665],[175.61961855407597,-40.751777630466776],[175.7382717979218,-40.693581223801665],[175.78475451200575,-40.70685408847967],[175.76395961359978,-40.768113463916634],[175.9694621390235,-40.73850476578877],[176.02206099969743,-40.71093804684214],[176.08811538286935,-40.70787507807029],[176.09056184150535,-40.67316143198934],[176.21900091989517,-40.70072815093597],[176.2654836339791,-40.74258872415123],[176.2679300926151,-40.78138632859464]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2139,"NAME_1":"Wellington","VARNAME_1":"","HASC_1":"NZ.WG","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[172.48815150000007,-42.26794717253157],[172.4563475377321,-42.36494118364009],[172.35726596297425,-42.38842394422426],[172.2961044970743,-42.44457837170814],[172.2483985536724,-42.45785123638615],[172.13219176846255,-42.55790821626652],[172.10528072346656,-42.60487373743486],[171.9340286189468,-42.66409113369058],[171.8569651719129,-42.770274051114654],[171.770115890335,-42.789672853336356],[171.75788359715503,-42.87135202058564],[171.68448983807514,-42.88666686444488],[171.44351366242944,-42.91627556257274],[171.4043703242535,-42.949968219063074],[171.31507458403962,-42.94690525029122],[171.2416808249597,-43.00101769859387],[171.2306717610977,-43.06534004280268],[171.11935789315987,-43.085759834615004],[171.06920549112192,-43.116389522333485],[170.99091881477003,-43.221551450166935],[170.9493290179581,-43.205215616717076],[170.8747120295602,-43.276684888060196],[170.75850524435035,-43.320587440456684],[170.7156922182204,-43.321608430047306],[170.62272679005252,-43.41962343074644],[170.4759392718927,-43.43902223296814],[170.4074384300848,-43.496197650042646],[170.3156962312349,-43.5002816084051],[170.22028434443104,-43.52682733776112],[170.19948944602507,-43.56051999425145],[170.0979614126312,-43.59931759869486],[170.0979614126312,-43.666702911675515],[170.04046963468528,-43.68814369307845],[170.0416928640033,-43.72694129752186],[169.98420108605737,-43.74940306851541],[169.98542431537535,-43.78820067295882],[169.90713763902346,-43.81474640231484],[169.85209231971353,-43.86885885061749],[169.78481470722363,-43.89846754874535],[169.77380564336164,-43.93420218441692],[169.7163138654157,-43.96687385131663],[169.59521416293387,-43.96585286172601],[169.60989291474985,-44.00158749739757],[169.53038300907994,-44.05569994570022],[169.47289123113404,-44.059783904062684],[169.38971163751015,-44.121043279499645],[169.32610371297423,-44.059783904062684],[169.28818360411628,-44.10368645645917],[169.1988878639024,-44.10981239400287],[169.14873546186445,-44.08428765423747],[168.98604596257067,-44.1435050504932],[168.9530187709847,-44.20272244674893],[168.8832946998588,-44.221100259380016],[168.83191906850286,-44.35893385411318],[168.75974853874095,-44.39466848978474],[168.6704527985271,-44.40181541691905],[168.63742560694112,-44.43244510463754],[168.5175491337773,-44.46409578194663],[168.48085225423733,-44.49166250089326],[168.3487434878935,-44.49880942802758],[168.37076161561748,-44.42529817750322],[168.4184675590194,-44.361996822885025],[168.34996671721152,-44.32422020803224],[168.34996671721152,-44.28440161399821],[168.24109930790965,-44.25887687423281],[168.15425002633177,-44.28848557236068],[168.09675824838584,-44.276233697273284],[168.09920470702184,-44.24458301996419],[168.15180356769577,-44.20272244674893],[168.25333160108963,-44.15269395680875],[168.32794858948753,-44.04855301856591],[168.38911005538745,-44.00260848698819],[168.44170891606137,-44.00873442453189],[168.61418424989915,-43.97299978886032],[168.69124769693306,-43.996482549444494],[168.82824938054887,-43.95972692418231],[168.8857411584948,-43.9076564550609],[168.98849242120667,-43.86783786102687],[169.1046992064165,-43.79432661050252],[169.16219098436244,-43.744298120562334],[169.4300782050041,-43.62484233846026],[169.51203456930998,-43.622800359279026],[169.58787478702587,-43.601359577876096],[169.6478130236078,-43.55337306711714],[169.68817959110174,-43.54826811916406],[169.7921540831316,-43.42268639951829],[169.84230648516953,-43.39511968057165],[169.93894160129142,-43.381846815893645],[170.0123353603713,-43.33181832595346],[170.04903223991127,-43.28383181519451],[170.1701319423931,-43.215425512623234],[170.261874141243,-43.113326553561635],[170.38786676099681,-43.108221605608556],[170.38786676099681,-43.06534004280268],[170.45759083212275,-43.02347946958743],[170.57991376392258,-43.002038688184484],[170.7242548234464,-42.92852743766014],[170.81599702229627,-42.86828905181379],[170.93709672477812,-42.73556040503371],[171.04474090476197,-42.653881237784425],[171.15483154338182,-42.526257538957424],[171.21721623859975,-42.38638196504303],[171.24290405427772,-42.371067121183785],[171.30284229085962,-42.272031130894035],[171.33953917039958,-42.083148056630066],[171.3860218844835,-42.02903560832742],[171.41782584675147,-41.91570576376904],[171.45574595560942,-41.88609706564118],[171.45819241424542,-41.75336841886109],[171.5499346130953,-41.74928446049863],[171.58663149263526,-41.72988565827693],[171.64534649989918,-41.743158522954936],[171.7089544244351,-41.721717741552],[171.85207225464092,-41.62982867839656],[171.91201049122282,-41.5624433654159],[171.98785070893874,-41.44502956249506],[172.06246769733664,-41.38785414542056],[172.0979413475586,-41.256146488231096],[172.1003878061946,-41.09687211209499],[172.11139687005658,-41.03561273665803],[172.0954948889226,-40.915135964965344],[172.11139687005658,-40.8804223188844],[172.21659459140443,-40.77526039105095],[172.24962178299037,-40.81405799549435],[172.2361662604924,-40.868170443797005],[172.28387220389433,-40.876338360521935],[172.33035491797827,-40.939639715140125],[172.3841770079702,-40.96312247572429],[172.3120064782083,-41.017234924026944],[172.35726596297425,-41.06011648683282],[172.3951860718322,-41.02642383034249],[172.50038379318005,-41.04071768461111],[172.49916056386206,-41.06930539314836],[172.6214834956619,-41.16221544589442],[172.66674298042784,-41.24287362355308],[172.57500078157796,-41.2632934153654],[172.6068047438459,-41.29902805103696],[172.59334922134792,-41.37968622869563],[172.52362515022202,-41.41542086436719],[172.4734727481841,-41.40725294764226],[172.42454357546416,-41.47565925021354],[172.34748012843025,-41.51343586506633],[172.33280137661427,-41.61042987617485],[172.24105917776438,-41.641059563893336],[172.2422824070824,-41.6900670642429],[172.15298666686851,-41.704360918511526],[172.11995947528254,-41.72375972073323],[172.11995947528254,-41.86771925301009],[172.06002123870064,-41.93408357640013],[172.11017364073857,-42.047413420958506],[172.14687052027853,-42.097441910898695],[172.21537136208644,-42.10663081721424],[172.26430053480635,-42.1423654528858],[172.32423877138828,-42.1423654528858],[172.35848919229224,-42.17095316142305],[172.34381044047626,-42.23119154726939],[172.41108805296616,-42.2955138914782],[172.48815150000007,-42.26794717253157]]]},"properties":{"ISO":"NZL","NAME_0":"New Zealand","ID_1":2140,"NAME_1":"West Coast","VARNAME_1":"","HASC_1":"NZ.WC","TYPE_1":"Regional Council","ENGTYPE_1":"Regional Council"}}
]}
region totalsheep density year
Northland 522189 42 2002
Northland 530059 42 2003
Northland 494357 40 2004
Northland 556734 45 2005
Northland 525830 42 2006
Northland 534452 43 2007
Northland 504286 40 2008
Northland 429401 34 2009
Northland 430740 34 2010
Northland 400480 32 2011
Northland 440955 35 2012
Northland 427281 34 2013
Northland 331251 27 2014
Northland 381256 31 2015
Auckland 368217 75 2002
Auckland 361345 73 2003
Auckland 325188 66 2004
Auckland 318201 64 2005
Auckland 293760 59 2006
Auckland 287589 58 2007
Auckland 264979 54 2008
Auckland 257248 52 2009
Auckland 235414 48 2010
Auckland 219952 45 2011
Auckland 205270 42 2012
Auckland 212437 43 2013
Auckland 215932 44 2014
Auckland 240830 49 2015
Waikato 2592399 108 2002
Waikato 2409128 101 2003
Waikato 2457368 103 2004
Waikato 2555163 107 2005
Waikato 2706984 113 2006
Waikato 2660145 111 2007
Waikato 2168673 91 2008
Waikato 2101906 88 2009
Waikato 1982414 83 2010
Waikato 1838297 77 2011
Waikato 1776544 74 2012
Waikato 1926059 81 2013
Waikato 1699244 71 2014
Waikato 1646010 69 2015
Bay of Plenty 415379 34 2002
Bay of Plenty 355785 29 2003
Bay of Plenty 409095 34 2004
Bay of Plenty 356859 30 2005
Bay of Plenty 382419 32 2006
Bay of Plenty 385373 32 2007
Bay of Plenty 346445 29 2008
Bay of Plenty 331049 27 2009
Bay of Plenty 347973 29 2010
Bay of Plenty 284954 24 2011
Bay of Plenty 322882 27 2012
Bay of Plenty 312593 26 2013
Bay of Plenty 250299 21 2014
Bay of Plenty 302986 25 2015
Gisborne 1679377 200 2002
Gisborne 1869777 223 2003
Gisborne 1847723 220 2004
Gisborne 1717266 205 2005
Gisborne 1833833 219 2006
Gisborne 1825496 218 2007
Gisborne 1679670 200 2008
Gisborne 1548344 185 2009
Gisborne 1589785 190 2010
Gisborne 1517015 181 2011
Gisborne 1547294 185 2012
Gisborne 1503378 179 2013
Gisborne 1602270 191 2014
Gisborne 1472423 176 2015
Hawke's Bay 3788684 268 2002
Hawke's Bay 3922729 277 2003
Hawke's Bay 4305819 305 2004
Hawke's Bay 4070230 288 2005
Hawke's Bay 4226620 299 2006
Hawke's Bay 3624018 256 2007
Hawke's Bay 3690843 261 2008
Hawke's Bay 3445616 244 2009
Hawke's Bay 3429382 243 2010
Hawke's Bay 3266872 231 2011
Hawke's Bay 3262468 231 2012
Hawke's Bay 2996560 212 2013
Hawke's Bay 2872852 203 2014
Hawke's Bay 3028852 214 2015
Taranaki 697637 96 2002
Taranaki 664627 92 2003
Taranaki 687435 95 2004
Taranaki 678700 94 2005
Taranaki 688273 95 2006
Taranaki 656144 90 2007
Taranaki 637400 88 2008
Taranaki 537850 74 2009
Taranaki 583467 80 2010
Taranaki 556982 77 2011
Taranaki 434402 60 2012
Taranaki 537355 74 2013
Taranaki 502255 69 2014
Taranaki 499840 69 2015
Manawatu-Wanganui 6563838 295 2002
Manawatu-Wanganui 6516684 293 2003
Manawatu-Wanganui 6263729 282 2004
Manawatu-Wanganui 6738633 303 2005
Manawatu-Wanganui 6870265 309 2006
Manawatu-Wanganui 6746989 304 2007
Manawatu-Wanganui 5916784 266 2008
Manawatu-Wanganui 5767131 260 2009
Manawatu-Wanganui 5796023 261 2010
Manawatu-Wanganui 5730947 258 2011
Manawatu-Wanganui 5612743 253 2012
Manawatu-Wanganui 5469819 246 2013
Manawatu-Wanganui 5328843 240 2014
Manawatu-Wanganui 5518950 248 2015
Wellington 1812531 225 2002
Wellington 1779872 221 2003
Wellington 1943427 241 2004
Wellington 2038979 253 2005
Wellington 2012471 250 2006
Wellington 1822057 226 2007
Wellington 1779247 221 2008
Wellington 1659327 206 2009
Wellington 1633879 203 2010
Wellington 1645127 204 2011
Wellington 1664892 207 2012
Wellington 1572985 195 2013
Wellington 1559548 194 2014
Wellington 1420470 176 2015
West Coast 92508 4 2002
West Coast 83978 4 2003
West Coast 81941 4 2004
West Coast 74988 3 2005
West Coast 78067 3 2006
West Coast 54094 2 2007
West Coast 43156 2 2008
West Coast 42889 2 2009
West Coast 41523 2 2010
West Coast 34778 1 2011
West Coast 58085 2 2012
West Coast 32876 1 2013
West Coast 58642 3 2014
West Coast 24679 1 2015
Canterbury 7758336 174 2002
Canterbury 7969929 179 2003
Canterbury 7499728 169 2004
Canterbury 7602271 171 2005
Canterbury 7463075 168 2006
Canterbury 7166822 161 2007
Canterbury 6063300 136 2008
Canterbury 5504718 124 2009
Canterbury 5652101 127 2010
Canterbury 5569215 125 2011
Canterbury 5348010 120 2012
Canterbury 5222094 117 2013
Canterbury 4966905 112 2014
Canterbury 4501137 101 2015
Otago 6120918 196 2002
Otago 5945247 190 2003
Otago 5901789 189 2004
Otago 6185038 198 2005
Otago 5998440 192 2006
Otago 6031166 193 2007
Otago 5343380 171 2008
Otago 5281730 169 2009
Otago 5323860 171 2010
Otago 5203236 167 2011
Otago 5342846 171 2012
Otago 5325322 171 2013
Otago 5257716 168 2014
Otago 5120190 164 2015
Southland 5950657 191 2002
Southland 5855296 188 2003
Southland 5966919 191 2004
Southland 5950627 191 2005
Southland 5928761 190 2006
Southland 5662387 182 2007
Southland 4739003 152 2008
Southland 4556206 146 2009
Southland 4597335 147 2010
Southland 4112930 132 2011
Southland 4356427 140 2012
Southland 4390785 141 2013
Southland 4299214 138 2014
Southland 4072964 131 2015
Marlborough 785115 75 2002
Marlborough 741038 71 2003
Marlborough 675284 65 2004
Marlborough 638031 61 2005
Marlborough 648601 62 2006
Marlborough 578805 55 2007
Marlborough 517526 49 2008
Marlborough 516391 49 2009
Marlborough 522176 50 2010
Marlborough 425299 41 2011
Marlborough 547180 52 2012
Marlborough 518372 50 2013
Marlborough 544578 52 2014
Marlborough 453191 43 2015
Tasman-Nelson 367329 37 2002
Tasman-Nelson 417231 42 2003
Tasman-Nelson 356551 36 2004
Tasman-Nelson 343012 34 2005
Tasman-Nelson 335931 33 2006
Tasman-Nelson 356124 35 2007
Tasman-Nelson 346799 35 2008
Tasman-Nelson 332443 33 2009
Tasman-Nelson 329273 33 2010
Tasman-Nelson 263383 26 2011
Tasman-Nelson 283343 28 2012
Tasman-Nelson 271890 27 2013
Tasman-Nelson 251619 25 2014
Tasman-Nelson 363288 36 2015
year density
2002 150
2003 149
2004 148
2005 151
2006 151
2007 145
2008 129
2009 122
2010 123
2011 118
2012 118
2013 116
2014 113
2015 110
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment