Skip to content

Instantly share code, notes, and snippets.

@mugshepherd
Created July 7, 2016 18:20
Show Gist options
  • Save mugshepherd/3f7e776e8324d8f9cea97b999ecd4a69 to your computer and use it in GitHub Desktop.
Save mugshepherd/3f7e776e8324d8f9cea97b999ecd4a69 to your computer and use it in GitHub Desktop.
dc.js dashboard
var colorbrewer = {Blues: {
3: ["#deebf7","#9ecae1","#3182bd"],
4: ["#eff3ff","#bdd7e7","#6baed6","#2171b5"],
5: ["#eff3ff","#bdd7e7","#6baed6","#3182bd","#08519c"],
6: ["#eff3ff","#c6dbef","#9ecae1","#6baed6","#3182bd","#08519c"],
7: ["#eff3ff","#c6dbef","#9ecae1","#6baed6","#4292c6","#2171b5","#084594"],
8: ["#f7fbff","#deebf7","#c6dbef","#9ecae1","#6baed6","#4292c6","#2171b5","#084594"],
9: ["#f7fbff","#deebf7","#c6dbef","#9ecae1","#6baed6","#4292c6","#2171b5","#08519c","#08306b"]
}};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/dc/2.0.0-beta.26/dc.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- title row -->
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 dc-data-count dc-chart" id="data-count">
<h2>Reported sightings of pet lemurs in Madagascar
<small>
<span class="filter-count"></span> selected out of <span class="total-count"></span> records |
<a id="all" href="#">Reset All</a>
</span>
</small>
</h1>
</div>
</div>
<!-- month/year circle filteres, Regions and Provinces bar charts -->
<div class="row" id="control-row">
<div class="col-xs-12 col-sm-6">
<div class="col-xs-12">
<h4>Month <small><a id="month" href="#">reset</a></small></h4>
<div class="dc-chart" id="chart_bar_month"></div>
</div>
<div class="col-xs-12">
<h4>Year<small><a id="month" href="#">reset</a></small></h4>
<div class="dc-chart" id="chart_bar_year"></div>
</div>
</div>
<!--
<div class="col-xs-3 pie-chart">
<h4>Year <small><a id="year">reset</a></small></h4>
<div class="dc-chart" id="chart_ring_year"></div>
</div>
<div class="col-xs-3 pie-chart">
<h4>Month <small><a id="month" href="#">reset</a></small></h4>
<div class="dc-chart" id="chart_bar_month"></div>
</div>
-->
<div class="col-xs-12 col-sm-6">
<h4>Category <small><a id="category" href="#">reset</a></small></h4>
<div class="dc-chart" id="chart_row_category"></div>
</div>
<!-- <div class="col-xs-4">
<h4>Regions <small><a id="admin2_chart" href="#">reset</a></small></h4>
<div id="chart_row_admin2"></div>
</div>
<div class="col-xs-4">
<h4>Provinces <small><a id="admin1_chart" href="#">reset</a></small></h4>
<div id="chart_row_admin1"></div>
</div> -->
<!--
<div class="col-xs-6">
<h4>Breweries</h4>
<div id="map"></div>
</div> -->
</div>
<!-- categories, and maps (admin2 and admin1) -->
<div class="row">
<!-- <div class="col-md-4">
<h4>Category <small><a id="category" href="#">reset</a></small></h4>
<div class="dc-chart" id="chart_row_category"></div>
</div> -->
<div>
<!-- <div class="col-md-1"></div> -->
<div class="col-xs-3 col-md-3">
<h4>Regions <small><a id="admin2_chart" href="#">reset</a></small></h4>
<div id="chart_row_admin2"></div>
</div>
<div class="col-xs-3 col-md-3">
<h4>Map: Regions <small><a id="admin2_map" href="#">reset</a></small></h4>
<div id="map_admin2"></div>
</div>
</div>
<!-- <div class="col-md-1"></div> -->
<div>
<div class="col-xs-3 col-md-3">
<h4>Provinces <small><a id="admin1_chart" href="#">reset</a></small></h4>
<div id="chart_row_admin1"></div>
</div>
<!-- <div class="col-xs-6 col-md-4"> -->
<!-- <div class="col-xs-6 col-md-4"> -->
<div class="col-xs-3 col-md-3">
<h4>Map: Provinces <small><a id="admin1_map" href="#">reset</a></small></h4>
<div id="map_admin1"></div>
</div>
<!-- <div class="col-md-1"></div> -->
</div>
</div>
<br>
<div class="row">
<div class="col-xs-12">
<h4>Source Data</h4>
<table class="table table-bordered table-striped" id="data-table">
<thead>
<tr class="header">
<th>Month</th>
<th>Year</th>
<th>Category</th>
<th>Quantity</th>
<th>Region</th>
<th>Province</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/crossfilter/1.3.12/crossfilter.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dc/2.0.0-beta.26/dc.js"></script>
<!-- <script src="js/d3-tip.js"></script> -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="colorbrewer.js" type="text/javascript" charset="utf-8" async defer></script>
<script src="index.js" type="text/javascript" charset="utf-8" async defer></script>
</body>
</html>
var admin2_KV,
admin1_KV,
lemur_category_KV,
row1_height,
row2_height,
map_height,
map_width,
item_width,
rowChartBarColor
// rowchartcolors
//live data
// d3.json('http://lemursurvey.herokuapp.com/', function(error, data) {
//sample data
d3.json('lemurSample_20160706-1657.json', function(error, data) {
// key/values for codes returned from API source
month_KV = {
"no_response":"No response",
"i_dont_know":"I dont know",
"january":"Jan",
"february":"Feb",
"march":"Mar",
"april":"Apr",
"may":"May",
"june":"Jun",
"july":"July",
"august":"Aug",
"september":"Sept",
"october":"Oct",
"november":"Nov",
"december":"Dec"
};
year_KV = {
// "no_response":"No response",
"i_dont_know":"I don't know",
"2016":"2016",
"2015":"2015",
"2014":"2014",
"2013":"2013",
"2012":"2012",
"2011":"2011",
"2010":"2010",
"2009":"2009",
"2008":"2008",
"2007":"2007",
"2006":"2006",
"2005":"2005",
"2004":"2004",
"2003":"2003",
"2002":"2002",
"2001":"2001",
"2000":"2000",
"1999":"1999",
"1998":"1998",
"1997":"1997",
"1996":"1996",
"1995":"1995",
"1994":"1994",
"1993":"1993",
"1992":"1992",
"1991":"1991",
"1990":"1990",
"1989":"1989",
"1988":"1988",
"1987":"1987",
"1986":"1986",
"1985":"1985",
"1984":"1984",
"1983":"1983",
"1982":"1982",
"1981":"1981",
"1980":"1980",
"1979":"1979",
"1978":"1978",
"1977":"1977",
"1976":"1976",
"1975":"1975",
"1974":"1974",
"1973":"1973",
"1972":"1972",
"1971":"1971",
"1970":"1970",
"1969":"1969",
"1968":"1968",
"1967":"1967",
"1966":"1966",
"1965":"1965",
"1964":"1964",
"1963":"1963",
"1962":"1962",
"1961":"1961",
"1960":"1960",
"before_1960":"before 1960",
};
quantity_KV = {
"no_answer":"No response",
"i_don_t_know":"I don't know",
"1":"1",
"2":"2",
"3":"3",
"4":"4",
"5":"5",
"6":"6",
"7":"7",
"8":"8",
"9":"9",
"10":"10",
"11":"11",
"12":"12",
"13":"13",
"14":"14",
"15":"15",
"16":"16",
"17":"17",
"18":"18",
"19":"19",
"20":"20",
"more_than_20":"21 or more"
}
admin1_KV = {
"antananarivo":"Antananarivo",
"antsiranana":"Antsiranana",
"fianarantsoa":"Fianarantsoa",
"mahajanga":"Mahajanga",
"toamasina":"Toamasina",
"toliara":"Toliara",
"other":"Other",
"no_response":"No response"
};
admin2_KV = {
"alaotra-mangoro":"Alaotra-Mangoro",
"amoron.i_mania":"Amoron'I Mania",
"analamanga":"Analamanga",
"analanjirofo":"Analanjirofo",
"androy":"Androy",
"anosy":"Anosy",
"atsimo-andrefana":"Atsimo-Andrefana",
"atsimo-atsinanana":"Atsimo-Atsinanana",
"atsinanana":"Atsinanana",
"betsiboka":"Betsiboka",
"boeny":"Boeny",
"bongolava":"Bongolava",
"diana":"Diana",
"haute_matsiatra":"Haute Matsiatra",
"ihorombe":"Ihorombe",
"itasy":"Itasy",
"melaky":"Melaky",
"menabe":"Menabe",
"sava":"Sava",
"sofia":"Sofia",
"vakinankaratra":"Vakinankaratra",
"vatovavy-fitovinany":"Vatovavy-Fitovinany",
"no_response":"No response",
"other":"Other"
};
lemur_category_KV = {
"aye_aye":"Aye Aye",
"bamboo_lemur":"Bamboo lemur",
"brown_lemur":"Brown lemur",
"dwarf_lemur":"Dwarf lemur",
"fork_marked_lemur":"Fork marked lemur",
"giant_mouse_lemurs":"Giant mouse lemurs",
"greater_bamboo_lemur":"Greater bamboo lemur",
"indri":"Indri",
"mouse_lemur":"Mouse lemur",
"ring-tailed_lemur":"Ring-tailed lemur",
"ruffed_lemurs":"Ruffed lemurs",
"sifaka":"Sifaka",
"sportive_lemur":"Sportive lemur",
"woolly_lemur":"Woolly lemur",
"I_dont_remembe":"I don't remember",
"no_response":"No response",
"other":"Other"
}
var lemurData = data.responses;
var fullDateFormat = d3.time.format('%Y-%m-%d');
var yearFormat = d3.time.format('%Y');
var monthFormat = d3.time.format('%b'); 
//normalize/parse data so dc can coorrectly sort and bin them
lemurData.forEach(function(d) {
d.count = +d.count;
d.lemurs_quantity = quantity_KV[d.lemurs_quantity];
d.categoryName = lemur_category_KV[d.lemur_category];
d.month = month_KV[d.month];
d.year = year_KV[d.year];
d.location_admin1_chart = admin1_KV[d.location_admin1];
d.location_admin1_map = d.location_admin1;
d.location_admin2_chart = admin2_KV[d.location_admin2];
d.location_admin2_map = d.location_admin2
});
//set crossfilter
var ndx = crossfilter(lemurData);
//create dimensions (x-axis values)
var quantityDim = ndx.dimension(function(d) {return d.lemurs_quantity}),
// yearDim = ndx.dimension(function(d) {return d.when_seen_year;}),
// //dc.pluck: short hand for same kind of anonymous function we used for yearDim
// monthDim = ndx.dimension(dc.pluck('when_seen_month')),
monthDim = ndx.dimension(function(d) {return d.month}),
yearDim = ndx.dimension(function(d) {return d.year}),
categoryNameDim = ndx.dimension(function(d) {return d.categoryName;}),
admin1ChartDim = ndx.dimension(function(d) {return d.location_admin1_chart}),
admin2ChartDim = ndx.dimension(function(d) {return d.location_admin2_chart})
admin1MapDim = ndx.dimension(function(d) {return d.location_admin1_map})
admin2MapDim = ndx.dimension(function(d) {return d.location_admin2_map})
allDim = ndx.dimension(function(d) {return d;});
//creating groups (y-axis values)
var all = ndx.groupAll();
var countPerYear = yearDim.group().reduceCount(),
countPerMonth = monthDim.group().reduceCount(),
categoryGroup = categoryNameDim.group().reduceCount()
admin1ChartGroup = admin1ChartDim.group().reduceCount()
admin2ChartGroup = admin2ChartDim.group().reduceCount()
admin1MapGroup = admin1MapDim.group().reduceCount()
admin2MapGroup = admin2MapDim.group().reduceCount();
//creating charts
// var yearChart = dc.pieChart('#chart_ring_year'),
var yearBarChart = dc.barChart('#chart_bar_year'),
monthBarChart = dc.barChart('#chart_bar_month'),
// monthChart = dc.pieChart('#chart_ring_month'),
categoryChart = dc.rowChart("#chart_row_category"),
admin1Chart = dc.rowChart("#chart_row_admin1"),
admin2Chart = dc.rowChart("#chart_row_admin2"),
admin1Map = dc.geoChoroplethChart("#map_admin1"),
admin2Map = dc.geoChoroplethChart("#map_admin2"),
dataCount = dc.dataCount('#data-count'),
dataTable = dc.dataTable('#data-table');
//set up maps
d3.json("mdg_admin1.json", function(admin1JSON) {
d3.json("mdg_admin2.json", function(admin2JSON){
row1_height = 200;
row2_height = 400;
item_width = 300
map_width = item_width;
map_height = row2_height;
rowChartBarColor = "#3182BD"; //3182BD
var numberFormat = d3.format('.2f');
var projection = d3.geo.mercator();
var path = d3.geo.path().projection(projection);
//set up scale and translate
var bounds, scale, offset;
projection.scale(1).translate([0,0]);
var bounds = path.bounds(admin1JSON);
var scale = .95 / Math.max((bounds[1][0] - bounds[0][0]) / map_width, (bounds[1][1] - bounds[0][1]) / map_height);
var offset = [(map_width - scale * (bounds[1][0] + bounds[0][0])) /2, (map_height - scale * (bounds[1][1] + bounds[0][1])) /2 ];
projection.scale(scale).translate(offset);
////chart configuration. must be under map data import and set up.
admin1Map
.width(map_width)
.height(map_height)
.dimension(admin1MapDim)
.group(admin1MapGroup)
.colors(d3.scale.quantize().range(colorbrewer.Blues[7]))
// .colors(d3.scale.quantize().range(["#E2F2FF", "#C4E4FF", "#9ED2FF", "#81C5FF", "#6BBAFF", "#51AEFF", "#36A2FF", "#1E96FF", "#0089FF", "#0061B5"]))
.colorDomain([0, 200])
.colorCalculator(function (d) { return d ? admin1Map.colors()(d) : '#ccc'; })
.projection(projection)
// .on("renderlet", function(chart){
// chart.on("mouseover", tip.show)
// debugger;
// })
.on('filtered.monitor', function(chart, filter) {
// report the filter applied
})
// .renderlabel(true)
// .renderlet(function(chart){
// chart.on("mouseover", function(d) {
// div.transition()
// .duration(200)
// .style("opacity", .9);
// div .html(admin1JSON.features)// + "<br/>" + d.close)
// .style("left", (d3.event.pageX) + "px")
// .style("top", (d3.event.pageY - 28) + "px");
// })
// .on("mouseout", function(d) {
// div.transition()
// .duration(500)
// .style("opacity", 0);
// })
//})
.overlayGeoJson(admin1JSON.features, "mdg_adm1",
function(d) {
return d.properties.code;
})
;
admin2Map
.width(map_width)
.height(map_height)
.dimension(admin2MapDim)
.group(admin2MapGroup)
.colors(d3.scale.quantize().range(colorbrewer.Blues[7]))
// .colors(d3.scale.quantize().range(["#E2F2FF", "#C4E4FF", "#9ED2FF", "#81C5FF", "#6BBAFF", "#51AEFF", "#36A2FF", "#1E96FF", "#0089FF", "#0061B5"]))
.colorDomain([0, 200])
.colorCalculator(function (d) { return d ? admin2Map.colors()(d) : '#ccc'; })
.projection(projection)
.overlayGeoJson(admin2JSON.features, "mdg_adm2",
function(d) {
return d.properties.code_adm2;
})
;
//other charts
// yearChart
// .width(row1_height)
// .height(row1_height)
// .dimension(yearDim)
// .group(countPerYear)
// // .legend(dc.legend().x(10).y(10).itemHeight(5).gap(5))
// // .renderTitle([true])
// // .title(function(d){
// // return d.key + "\n" + countPerYear + " observations"
// // })
// .innerRadius(20);
//I would like to replace yearChart and monthChart with bar charts.
// monthChart
// .width(row1_height)
// .height(row1_height)
// .dimension(monthDim)
// .group(countPerMonth)
// .innerRadius(20)
// .on('renderlet',function(chart){
// debugger;
// chart.onClick(function(d){
// debugger;
// console.log(d);
// });
// })
// .ordering(function(d){
// var order = {
// 'Jan':1,'Feb':2,'Mar':3,'Apr':4,'May':5,'Jun':6,'Jul':7,'Aug':8,'Sep':9,'Oct':10,'Nov':11,'Dec':12
// };
// return order[d.key];
// })
// ;
monthBarChart
.width(item_width*2)
.height(row1_height/3)
.margins({top: 10, right: 50, bottom: 30, left: 40})
.dimension(monthDim)
.group(countPerMonth)
.elasticY(true)
.centerBar(true)
// (optional) set gap between bars manually in px, default=2
.gap(1)
// (optional) set filter brush rounding
.round(dc.round.floor)
.alwaysUseRounding(true)
.x(d3.scale.ordinal().domain(Object.keys(month_KV).map(function(d){return month_KV[d];})))
.renderHorizontalGridLines(true)
//.filterPrinter(function (filters) {
// var filter = filters[0], s = '';
// s += numberFormat(filter[0]) + '% -> ' + numberFormat(filter[1]) + '%';
// return s;
//});
// Customize axes
// monthBarChart.xAxis().tickFormat(
// // function (v) { return v + '%'; });
// function (v) { return v; });
// monthBarChart.yAxis().ticks(5);
yearBarChart
.width(item_width*2)
.height(row1_height/3)
.margins({top: 10, right: 50, bottom: 30, left: 40})
.dimension(yearDim)
.group(countPerYear)
.elasticY(true)
.centerBar(true)
// (optional) set gap between bars manually in px, default=2
.gap(1)
// (optional) set filter brush rounding
.round(dc.round.floor)
.alwaysUseRounding(true)
.x(d3.scale.ordinal().domain(Object.keys(year_KV).map(function(d){return year_KV[d];})))
.renderHorizontalGridLines(true)
//.filterPrinter(function (filters) {
// var filter = filters[0], s = '';
// s += numberFormat(filter[0]) + '% -> ' + numberFormat(filter[1]) + '%';
// return s;
//});
// Customize axes
// monthBarChart.xAxis().tickFormat(
// // function (v) { return v + '%'; });
// function (v) { return v; });
// monthBarChart.yAxis().ticks(5);
categoryChart
.width(item_width)
.height(row1_height)
.dimension(categoryNameDim)
.group(categoryGroup)
.elasticX(true)
.margins({top: 10, left: 20, right: 10, bottom: 20})
.colors(rowChartBarColor)
;
admin1Chart
.width(item_width)
.height(row2_height)
.dimension(admin1ChartDim)
.group(admin1ChartGroup)
.elasticX(true)
.margins({top: 10, left: 20, right: 10, bottom: 20})
.colors(rowChartBarColor)
.ordering(function(d){
var order = {
"Antananarivo":1,"Antsiranana":2,"Fianarantsoa":3,"Mahajanga":4,"Toamasina":5,"Toliara":6,"Other":7,"No response":8
};
return order[d.key];
})
;
admin2Chart
.width(item_width)
.height(row2_height)
.dimension(admin2ChartDim)
.group(admin2ChartGroup)
.elasticX(true)
.margins({top: 10, left: 20, right: 10, bottom: 20})
.colors(rowChartBarColor)
.ordering(function(d){
var order = {
"Alaotra-Mangoro":1,"Amoron'I Mania":2,"Analamanga":3,"Analanjirofo":4,"Androy":5,"Anosy":6,"Atsimo-Andrefana":7,"Atsimo-Atsinanana":8,"Atsinanana":9,"Betsiboka":10,"Boeny":11,"Bongolava":12,"Diana":13,"Haute Matsiatra":14,"Ihorombe":15,"Itasy":16,"Melaky":17,"Menabe":18,"Sava":19,"Sofia":20,"Vakinankaratra":21,"Vatovavy-Fitovinany":22,"No Data":23, "Other":24, "No response":25
};
return order[d.key];
})
;
dataCount
.dimension(ndx)
.group(all);
//data table
dataTable
.dimension(allDim)
.group(function (d) { return 'dc.js insists on putting a row here so I remove it using js'; })
.size(100)
.columns([
function (d) { return d.month; },
function (d) { return d.year; },
function (d) { return d.categoryName; },
function (d) { return d.lemurs_quantity; },
function (d) { return d.location_admin2_chart; },
function (d) { return d.location_admin1_chart; },
])
.sortBy(function (d) { return d.month_and_year; })
.order(d3.descending)
.on('renderlet', function (table) {
//each time table is rendered remove extra row dc.js insists on adding
table.select('tr.dc-table-group').remove();
});
d3.selectAll('a#all').on('click', function() {
dc.filterAll();
dc.renderAll();
});
d3.selectAll('a#year').on('click', function() {
yearChart.filterAll();
dc.redrawAll();
});
// d3.selectAll('a#month').on('click', function() {
// monthChart.filterAll();
// dc.redrawAll();
// });
d3.selectAll('a#month').on('click', function() {
monthBarChart.filterAll();
dc.redrawAll();
});
d3.selectAll('a#admin1_chart').on('click', function() {
admin1Chart.filterAll();
dc.redrawAll();
});
d3.selectAll('a#admin2_chart').on('click', function() {
admin2Chart.filterAll();
dc.redrawAll();
});
d3.selectAll('a#category').on('click', function() {
categoryChart.filterAll();
dc.redrawAll();
});
d3.selectAll('a#admin1_map').on('click', function() {
admin1Map.filterAll();
dc.redrawAll();
});
d3.selectAll('a#admin2_map').on('click', function() {
admin2Map.filterAll();
dc.redrawAll();
});
// dc.tooltipMixin(yearChart);
dc.renderAll();
// d3.select(self.frameElement).style("height", height + "px");
});
});
});
{"responses":[{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2005","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2010","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2005","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":3,"year":"1980","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":5,"year":"2005","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2007","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"indri","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2009","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"ruffed_lemurs","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":3,"year":"1975","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":3,"year":"1969","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":3,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2010","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2010","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2009","month":"january","lemur_category":"ruffed_lemurs","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2005","month":"january","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"dwarf_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2016","month":"may","lemur_category":"ring-tailed_lemur","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":2,"year":"2015","month":"february","lemur_category":"ruffed_lemurs","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2010","month":"february","lemur_category":"ruffed_lemurs","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"march","lemur_category":"ruffed_lemurs","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2009","month":"may","lemur_category":"ruffed_lemurs","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2015","month":"february","lemur_category":"ruffed_lemurs","location_admin1":"toamasina","location_admin2":"analanjirofo"},{"lemurs_quantity":1,"year":"2015","month":"february","lemur_category":"ruffed_lemurs","location_admin1":"toamasina","location_admin2":"analanjirofo"},{"lemurs_quantity":1,"year":"2015","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2015","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2015","month":"february","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2013","month":"september","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2013","month":"september","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2011","month":"march","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2010","month":"november","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2010","month":"november","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2009","month":"may","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"may","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"may","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"december","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"may","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"december","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"december","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"november","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"november","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"november","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"november","lemur_category":"mouse_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2015","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2012","month":"november","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2012","month":"february","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2016","month":"january","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"2003","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"2003","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1993","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":0,"year":"2004","month":"no_response","lemur_category":"sifaka","location_admin1":"toliara","location_admin2":"menabe"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":2,"year":"1998","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"1998","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"1973","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":5,"year":"2011","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1980","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":2,"year":"2007","month":"no_response","lemur_category":"no_response","location_admin1":"toamasina","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2000","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":6,"year":"2006","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"1983","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2008","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2009","month":"no_response","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2008","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2010","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2002","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"1970","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"before_1961","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2004","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"2008","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2004","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2001","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2005","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":8,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":5,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"itasy"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":5,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ruffed_lemurs","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"toliara","location_admin2":"anosy"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antananarivo","location_admin2":"itasy"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"dwarf_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"dwarf_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":5,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":"no_answer","year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"itasy"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"alaotra-mangoro"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"haute_matsiatra"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"vakinankaratra"},{"lemurs_quantity":5,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"vakinankaratra"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"vatovavy-fitovinany"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"amoron.i_mania"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"menabe"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":10,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"atsimo-atsinanana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":4,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"antananarivo","location_admin2":"vakinankaratra"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"2012","month":"may","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":2,"year":"2015","month":"august","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2012","month":"july","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2012","month":"january","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"analanjirofo"},{"lemurs_quantity":1,"year":"2010","month":"february","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2010","month":"february","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"alaotra-mangoro"},{"lemurs_quantity":1,"year":"2010","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2010","month":"march","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2010","month":"february","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2010","month":"july","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"october","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"may","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2009","month":"december","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"february","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2014","month":"january","lemur_category":"brown_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2015","month":"december","lemur_category":"brown_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2015","month":"december","lemur_category":"brown_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2010","month":"may","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2009","month":"january","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"february","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"february","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2016","month":"march","lemur_category":"brown_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2016","month":"march","lemur_category":"brown_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2015","month":"april","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2015","month":"august","lemur_category":"dwarf_lemur","location_admin1":"fianarantsoa","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"dwarf_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2010","month":"january","lemur_category":"dwarf_lemur","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":1,"year":"2009","month":"july","lemur_category":"dwarf_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2009","month":"july","lemur_category":"dwarf_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2008","month":"december","lemur_category":"dwarf_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":0,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":3,"year":"no_response","month":"no_response","lemur_category":"ruffed_lemurs","location_admin1":"mahajanga","location_admin2":"no_response"},{"lemurs_quantity":3,"year":"2011","month":"july","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":0,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2016","month":"april","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2015","month":"april","lemur_category":"brown_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":3,"year":"2016","month":"march","lemur_category":"ruffed_lemurs","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":5,"year":"2016","month":"february","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"alaotra-mangoro"},{"lemurs_quantity":2,"year":"2015","month":"december","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"alaotra-mangoro"},{"lemurs_quantity":1,"year":"2016","month":"march","lemur_category":"bamboo_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2016","month":"march","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":"no_answer","year":"2015","month":"february","lemur_category":"ring-tailed_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":"no_answer","year":"2011","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":0,"year":"2007","month":"no_response","lemur_category":"no_response","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2000","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"2010","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1985","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"1985","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2000","month":"no_response","lemur_category":"no_response","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"2000","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"fianarantsoa","location_admin2":"amoron.i_mania"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"1995","month":"no_response","lemur_category":"no_response","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":2,"year":"2003","month":"no_response","lemur_category":"no_response","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ruffed_lemurs","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"2002","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"1993","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":4,"year":"2010","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2000","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1993","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1990","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":3,"year":"2006","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"itasy"},{"lemurs_quantity":1,"year":"2002","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"boeny"},{"lemurs_quantity":2,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"2004","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2004","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2002","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"1998","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1982","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"toamasina","location_admin2":"alaotra-mangoro"},{"lemurs_quantity":1,"year":"1990","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1980","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1995","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1990","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1985","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"haute_matsiatra"},{"lemurs_quantity":1,"year":"2009","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":2,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"vakinankaratra"},{"lemurs_quantity":5,"year":"2000","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"1989","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2000","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1996","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"vakinankaratra"},{"lemurs_quantity":6,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"vatovavy-fitovinany"},{"lemurs_quantity":1,"year":"1980","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toamasina","location_admin2":"atsinanana"},{"lemurs_quantity":4,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"1992","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"1997","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":2,"year":"1999","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":2,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"1995","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"amoron.i_mania"},{"lemurs_quantity":1,"year":"1980","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"menabe"},{"lemurs_quantity":3,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":10,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2010","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2006","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"1998","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":4,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":3,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2008","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"1993","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2003","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2003","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"brown_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"2010","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"fianarantsoa","location_admin2":"atsimo-atsinanana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2008","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2007","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":4,"year":"2010","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"antananarivo","location_admin2":"vakinankaratra"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"sofia"},{"lemurs_quantity":1,"year":"1993","month":"no_response","lemur_category":"mouse_lemur","location_admin1":"mahajanga","location_admin2":"betsiboka"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"1999","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":2,"year":"2000","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"toliara","location_admin2":"atsimo-andrefana"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":1,"year":"2012","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"no_response","location_admin2":"no_response"},{"lemurs_quantity":4,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"2011","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":2,"year":"2003","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":6,"year":"2001","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antsiranana","location_admin2":"diana"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"ring-tailed_lemur","location_admin1":"antananarivo","location_admin2":"analamanga"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"no_response","month":"no_response","lemur_category":"bamboo_lemur","location_admin1":"antsiranana","location_admin2":"sava"},{"lemurs_quantity":1,"year":"2013","month":"no_response","lemur_category":"I_dont_remembe","location_admin1":"antsiranana","location_admin2":"diana"}]}
/* main.css: Add and override styles */
.dc-data-count small {
font-size: 16px;
}
.container-fluid {
padding-left: 40px;
padding-right: 40px;
}
.pie-chart {
height: 150px;
}
.dc-chart .axis text{
font-size: 12px;
}
text {
font-size: 16px;
}
// #map {
// height: 150px;
// }
#control-row {
padding-bottom: 20px;
}
a { cursor: pointer }
.dc-chart g.row text {
fill: black;
}
/*override dc.css*/
.dc-chart g.row rect {
opacity: 0.6;
}
.dc-chart g.mdg_adm1 path {
stroke: white
}
.dc-chart g.mdg_adm2 path {
stroke: white
}
// div.tooltip {
// position: absolute;
// text-align: center;
// width: 60px;
// height: 28px;
// padding: 2px;
// font: 12px sans-serif;
// background: lightsteelblue;
// border: 0px;
// border-radius: 8px;
// pointer-events: none;
// }
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[47.93930816650396,-17.878700256347656],[47.91076278686529,-17.953859329223633],[48.00542068481474,-18.051273345947152],[47.989151000976676,-18.159738540649357],[48.036888122558594,-18.379425048828068],[47.992004394531364,-18.43822479248047],[47.98936843872093,-18.553754806518555],[47.937896728515625,-18.637113571166992],[47.931804656982706,-18.829900741577035],[47.94319915771479,-18.973459243774414],[47.894077301025334,-19.10205650329584],[47.95506668090849,-19.219421386718693],[47.941379547119084,-19.38325119018549],[47.897075653076456,-19.409475326538086],[47.85726928710943,-19.53486442565918],[47.83698272705095,-19.717252731323242],[47.86469650268566,-19.74300765991211],[47.85708999633806,-19.868038177490234],[47.80887222290039,-19.877700805664062],[47.7060661315918,-19.95073509216303],[47.763767242431925,-20.029998779296875],[47.706874847412166,-20.058118820190373],[47.58462142944359,-20.031978607177734],[47.45747375488287,-20.07929039001459],[47.30002975463873,-20.04454040527338],[47.166889190673885,-20.101457595825195],[47.15669250488287,-20.14381790161127],[47.03243255615229,-20.19346809387207],[46.942672729492244,-20.16737937927246],[46.877929687500114,-20.231311798095703],[46.803794860839844,-20.266435623168945],[46.69335556030302,-20.276758193969727],[46.62768936157232,-20.233600616455078],[46.516155242920206,-20.26430702209467],[46.44682312011747,-20.215591430664062],[46.36842346191412,-20.247655868530273],[46.300716400146655,-20.225215911865234],[46.28720474243164,-20.068580627441293],[46.25921630859392,-20.028177261352482],[46.1631774902346,-20.06041526794428],[46.090309143066634,-20.02630996704096],[46.05716705322294,-19.949647903442383],[45.93230056762701,-19.931489944457894],[45.77184295654325,-19.880229949951058],[45.79006958007818,-19.73991584777832],[45.84148406982416,-19.687280654907227],[45.815647125244084,-19.614557266235295],[45.7585525512697,-19.579086303710938],[45.69146728515631,-19.497053146362248],[45.73685455322271,-19.443286895751953],[45.82307052612316,-19.435255050659123],[45.81971740722685,-19.31807136535639],[45.796459197998104,-19.2014102935791],[45.72141265869146,-19.243206024169922],[45.627346038818644,-19.17612648010254],[45.61519622802757,-19.092863082885742],[45.5449295043947,-19.01950836181635],[45.54985427856451,-18.977804183959904],[45.477626800537394,-18.916875839233285],[45.50567626953131,-18.88070869445795],[45.466159820556925,-18.722679138183594],[45.60642623901384,-18.572614669799805],[45.5797653198245,-18.436288833618107],[45.60372543334972,-18.326774597167912],[45.563362121582315,-18.300445556640568],[45.61473083496111,-18.118274688720703],[45.676536560058764,-18.07887458801264],[45.769718170166186,-18.065858840942383],[45.84478759765625,-17.998506546020508],[45.89295959472685,-18.01260757446289],[45.948242187500284,-17.92326354980463],[45.943466186523494,-17.857782363891545],[46.054515838623104,-17.832235336303654],[46.15210723876976,-17.881011962890568],[46.246608734130916,-17.85383415222168],[46.456630706787166,-17.743589401245117],[46.633522033691634,-17.7540283203125],[46.732021331787166,-17.707048416137695],[46.8582649230957,-17.81293106079096],[46.981258392334155,-17.83677673339838],[47.057712554931584,-17.825931549072266],[47.10003662109381,-17.78468132019043],[47.27329635620117,-17.748432159423828],[47.34634017944336,-17.781753540039006],[47.37731170654314,-17.863935470581055],[47.45843887329096,-17.90679359436035],[47.60114669799822,-17.87536811828602],[47.70835876464872,-17.761571884155217],[47.83662796020536,-17.749605178833008],[47.89479446411161,-17.796300888061467],[47.93930816650396,-17.878700256347656]]]},"properties":{"ID_0":134,"ISO":"MDG","NAME_0":"Madagascar","ID_1":1,"NAME_1":"Antananarivo","HASC_1":"MG.AV","CCN_1":0,"CCA_1":"","TYPE_1":"Faritany Mizakatena","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"","VARNAME_1":"Tananarive","code":"antananarivo"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.27291488647478,-13.198748588561955],[48.34597396850586,-13.321249961853027],[48.35263824462896,-13.402359962463379],[48.31013870239258,-13.42347240447998],[48.1926383972168,-13.389026641845646],[48.18402862548834,-13.300972938537598],[48.261287689208984,-13.259834289550781],[48.27291488647478,-13.198748588561955]]],[[[48.44597244262701,-13.55875015258789],[48.52624893188482,-13.527361869811955],[48.468471527099666,-13.395693778991586],[48.58959960937494,-13.458185195922852],[48.65652847290045,-13.451250076293888],[48.761528015136776,-13.40513801574707],[48.807640075683764,-13.253748893737793],[48.80569458007807,-13.134028434753418],[48.90652847290056,-12.963472366333008],[48.94374847412138,-12.819582939147836],[48.90375137329124,-12.774027824401855],[48.89764022827171,-12.68597316741932],[48.85541534423834,-12.663471221923771],[48.85958480834955,-12.547917366027775],[48.73930740356451,-12.447360992431584],[48.74208450317377,-12.406249999999943],[48.8512496948245,-12.41569519042963],[48.939582824707145,-12.489859580993596],[48.95264053344738,-12.3743057250976],[49.14347076416027,-12.21513843536377],[49.18375015258812,-12.14236068725586],[49.20513916015625,-11.989860534667969],[49.29541778564476,-11.97097206115717],[49.34069442749029,-12.06402683258051],[49.35652923583996,-12.187359809875488],[49.271762847900334,-12.181802749633732],[49.282638549804915,-12.241527557373047],[49.25013732910173,-12.293749809265137],[49.34847259521513,-12.306804656982365],[49.537361145019474,-12.391527175903263],[49.58652877807617,-12.545139312744027],[49.54208374023466,-12.64847183227539],[49.601806640625114,-12.659860610961914],[49.63930511474615,-12.706528663635254],[49.78659820556669,-12.808159828185978],[49.78180694580084,-12.847360610961914],[49.848751068115405,-12.957917213439941],[49.92902755737299,-13.045694351196289],[49.91986083984381,-13.201526641845646],[49.97263717651373,-13.2870836257934],[50.02375030517595,-13.515973091125431],[50.085971832275675,-13.633195877075138],[50.08180618286127,-13.684305191040039],[50.13986206054699,-13.796250343322697],[50.13735961914091,-14.006251335144043],[50.16569519042969,-14.065972328185978],[50.14263916015631,-14.222916603088379],[50.20152664184576,-14.302639007568303],[50.17625045776384,-14.469305992126408],[50.182918548584155,-14.584584236144963],[50.208751678467024,-14.639304161071777],[50.223751068115405,-14.76097106933588],[50.2640266418457,-14.87069320678711],[50.31541824340849,-14.949304580688363],[50.334861755371094,-15.032640457153263],[50.43097305297857,-15.14513778686512],[50.48652648925787,-15.26624870300293],[50.414859771728686,-15.580694198608342],[50.359027862548885,-15.689584732055664],[50.28708267211914,-15.884026527404785],[50.24541854858427,-15.909860610961914],[50.221248626709155,-15.989028930664006],[50.16402816772478,-15.99263858795166],[50.142890930176065,-15.941248893737793],[50.01958465576172,-15.87902641296381],[50.01152801513666,-15.831941604614258],[50.06789779663103,-15.81457233428955],[50.041625976562784,-15.73270320892334],[49.98318099975597,-15.667593002319279],[50.00646591186518,-15.633764266967773],[50.018379211425895,-15.48132419586176],[50.05324554443388,-15.391083717346135],[49.986595153808594,-15.348626136779785],[50.03333663940441,-15.296415328979435],[49.98838043212896,-15.243520736694336],[49.896675109863395,-15.269241333007812],[49.806541442871094,-15.15906620025629],[49.82224655151384,-15.120559692382812],[49.776863098144815,-15.049788475036621],[49.71467590332037,-15.090325355529671],[49.65976333618164,-15.038677215576115],[49.478759765625284,-14.806734085083008],[49.43949508666998,-14.707236289978027],[49.34713363647478,-14.552369117736816],[49.39621734619135,-14.509113311767521],[49.290977478027344,-14.457937240600529],[49.143333435058764,-14.305766105651799],[49.080318450927734,-14.205033302307015],[49.00203323364269,-14.163655281066895],[48.932212829589844,-14.162699699401799],[48.812847137451115,-14.264013290405273],[48.724456787109546,-14.208288192748967],[48.66522216796881,-14.240988731384277],[48.545478820801065,-14.18801212310791],[48.465225219726676,-14.194787979125977],[48.37921142578119,-14.166034698486328],[48.362285614013956,-14.109455108642578],[48.2571754455567,-14.07337570190424],[48.205734252929744,-13.967467308044434],[48.2406005859375,-13.876211166381779],[48.00436401367216,-13.993150711059457],[48.0039825439456,-13.992674827575627],[48.00374984741205,-13.992378234863281],[48.002082824707315,-13.952917098999023],[47.89152908325201,-13.899026870727539],[47.858196258545036,-13.763472557067871],[47.89708328247099,-13.590415954589844],[47.94930648803734,-13.595694541931152],[47.978473663330135,-13.540416717529297],[48.14708328247076,-13.601804733276367],[48.16986083984381,-13.758194923400879],[48.22569274902361,-13.809861183166504],[48.306804656982536,-13.793195724487305],[48.32041549682617,-13.634584426879883],[48.41652679443365,-13.529306411743164],[48.44597244262701,-13.55875015258789]]]]},"properties":{"ID_0":134,"ISO":"MDG","NAME_0":"Madagascar","ID_1":2,"NAME_1":"Antsiranana","HASC_1":"MG.AS","CCN_1":0,"CCA_1":"","TYPE_1":"Faritany Mizakatena","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"","VARNAME_1":"Diégo-Suarez/Antseranana","code":"antsiranana"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.77184295654325,-19.880229949951058],[45.93230056762701,-19.931489944457894],[46.05716705322294,-19.949647903442383],[46.090309143066634,-20.02630996704096],[46.1631774902346,-20.06041526794428],[46.25921630859392,-20.028177261352482],[46.28720474243164,-20.068580627441293],[46.300716400146655,-20.225215911865234],[46.36842346191412,-20.247655868530273],[46.44682312011747,-20.215591430664062],[46.516155242920206,-20.26430702209467],[46.62768936157232,-20.233600616455078],[46.69335556030302,-20.276758193969727],[46.803794860839844,-20.266435623168945],[46.877929687500114,-20.231311798095703],[46.942672729492244,-20.16737937927246],[47.03243255615229,-20.19346809387207],[47.15669250488287,-20.14381790161127],[47.166889190673885,-20.101457595825195],[47.30002975463873,-20.04454040527338],[47.45747375488287,-20.07929039001459],[47.58462142944359,-20.031978607177734],[47.706874847412166,-20.058118820190373],[47.71142959594732,-20.137107849121094],[47.66528701782232,-20.247955322265568],[47.67154312133789,-20.358915328979435],[47.76872634887724,-20.460489273071175],[47.96675491333002,-20.40517807006836],[48.075935363769645,-20.435575485229435],[48.07730865478533,-20.390390396118107],[48.14503097534208,-20.267404556274414],[48.20999145507841,-20.271764755249023],[48.277168273925724,-20.313066482543945],[48.358974456787166,-20.297470092773438],[48.378341674804744,-20.389665603637695],[48.58625030517584,-20.418903350830078],[48.5804176330567,-20.472639083862305],[48.50125122070341,-20.710695266723633],[48.42291641235357,-21.042915344238224],[48.34930419921892,-21.233747482299805],[48.31013870239258,-21.40764045715332],[48.130973815918026,-21.897083282470703],[47.95652770996105,-22.297361373901254],[47.89541625976568,-22.47652816772461],[47.80847167968756,-22.971527099609318],[47.75652694702177,-23.119028091430607],[47.710971832275334,-23.328472137451172],[47.63013839721697,-23.54652976989746],[47.591804504394815,-23.78819465637207],[47.47486114501976,-24.04541587829584],[47.41513824462896,-24.13821029663086],[47.38151931762724,-24.097080230712834],[47.28273391723661,-24.063272476196232],[47.21449661254877,-23.998474121093693],[47.131603240966854,-24.028953552246094],[47.10701751708979,-24.077915191650334],[47.02661514282221,-24.101390838623047],[47.039497375488224,-24.217483520507812],[46.9771728515625,-24.278076171874943],[46.887393951416186,-24.29578208923334],[46.896076202392805,-24.17765998840332],[46.85301208496094,-24.11258316040039],[46.734947204589844,-24.09486961364746],[46.718357086181925,-23.998743057250977],[46.6137237548831,-23.942523956298828],[46.52899932861351,-23.934980392455998],[46.4748992919923,-23.86670684814453],[46.39384078979498,-23.80983543395996],[46.48852920532255,-23.581321716308537],[46.40166091918951,-23.43423843383789],[46.447456359863224,-23.399791717529297],[46.46907043457031,-23.281669616699162],[46.4648246765139,-23.185516357421875],[46.37060165405296,-23.1510009765625],[46.33363342285156,-23.10293960571289],[46.219112396240234,-22.86186218261713],[46.12052154541027,-22.821763992309513],[46.095279693603686,-22.750846862792912],[46.00007247924816,-22.697717666625863],[45.85580062866234,-22.677553176879883],[45.680747985839844,-22.741308212280273],[45.64795303344755,-22.738952636718693],[45.39678573608393,-22.874488830566406],[45.36286926269537,-22.998104095458984],[45.36296463012701,-23.086631774902344],[45.30381774902361,-23.11298179626465],[45.130283355713175,-23.048746109008732],[45.0755882263183,-23.051576614379883],[44.97809600830078,-22.948163986206055],[44.98305130004911,-22.873710632324162],[45.04633331298845,-22.73947525024414],[45.02845764160162,-22.6784610748291],[45.066925048828296,-22.63302040100092],[45.077583312988395,-22.55612945556635],[45.14907836914091,-22.42474937438959],[45.23608779907232,-22.350536346435547],[45.23289489746111,-22.25890922546381],[45.2769012451173,-22.233957290649414],[45.277740478515625,-22.167976379394474],[45.32223510742193,-22.139251708984375],[45.265537261963175,-22.061426162719613],[45.29323959350603,-22.0176944732666],[45.216178894043196,-21.96790695190424],[45.203330993652514,-21.89813041687006],[45.324958801269645,-21.899450302124023],[45.37982177734398,-21.867540359496957],[45.40991973876953,-21.693857192993107],[45.53999710083036,-21.678537368774414],[45.521972656250284,-21.506904602050724],[45.56310653686518,-21.429277420043945],[45.58475875854498,-21.318128585815316],[45.6542396545413,-21.26878929138178],[45.7416877746582,-21.243896484375],[45.753738403320426,-21.066749572753906],[45.79509353637695,-20.98967742919922],[45.7658119201663,-20.837451934814453],[45.79027938842768,-20.721942901611214],[45.84181976318388,-20.713537216186523],[45.81980895996094,-20.560533523559457],[45.835075378418026,-20.337131500244027],[45.75835418701189,-20.108846664428654],[45.78780746459978,-20.000017166137695],[45.754802703857365,-19.976821899414006],[45.77184295654325,-19.880229949951058]]]},"properties":{"ID_0":134,"ISO":"MDG","NAME_0":"Madagascar","ID_1":3,"NAME_1":"Fianarantsoa","HASC_1":"MG.FI","CCN_1":0,"CCA_1":"","TYPE_1":"Faritany Mizakatena","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"","VARNAME_1":"","code":"fianarantsoa"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.00436401367216,-13.993150711059457],[48.2406005859375,-13.876211166381779],[48.205734252929744,-13.967467308044434],[48.2571754455567,-14.07337570190424],[48.362285614013956,-14.109455108642578],[48.37921142578119,-14.166034698486328],[48.465225219726676,-14.194787979125977],[48.545478820801065,-14.18801212310791],[48.66522216796881,-14.240988731384277],[48.724456787109546,-14.208288192748967],[48.812847137451115,-14.264013290405273],[48.932212829589844,-14.162699699401799],[49.00203323364269,-14.163655281066895],[49.080318450927734,-14.205033302307015],[49.143333435058764,-14.305766105651799],[49.290977478027344,-14.457937240600529],[49.39621734619135,-14.509113311767521],[49.34713363647478,-14.552369117736816],[49.43949508666998,-14.707236289978027],[49.478759765625284,-14.806734085083008],[49.450756072998104,-15.09545516967762],[49.35576629638683,-15.077092170715332],[49.368541717529354,-15.236441612243596],[49.17911148071289,-15.297528266906681],[49.031047821044865,-15.360103607177734],[49.02704620361334,-15.451603889465332],[49.11526870727562,-15.465839385986271],[49.071090698242244,-15.526695251464787],[49.09085464477562,-15.566768646240234],[49.04368209838867,-15.762882232666016],[49.08855056762701,-15.789912223815918],[49.11103439331055,-15.904065132141056],[49.24496459960932,-16.060892105102482],[49.18903732299805,-16.096073150634766],[49.21158981323265,-16.143854141235295],[49.213886260986555,-16.25115966796875],[49.14819335937506,-16.344173431396428],[49.15417098999029,-16.461717605590763],[49.05667114257841,-16.4892520904541],[48.93415069580084,-16.684455871581974],[48.85713577270525,-16.674621582031193],[48.7070007324221,-16.68340492248535],[48.65914916992193,-16.656974792480412],[48.65581893920927,-16.591344833374023],[48.61633300781267,-16.55078125],[48.590961456298885,-16.44817924499506],[48.50887680053711,-16.405515670776367],[48.45602798461914,-16.337608337402287],[48.40863800048828,-16.34395980834961],[48.28385925292986,-16.24519920349121],[48.189662933349894,-16.245895385742188],[48.11429977417015,-16.281837463378906],[47.96039962768583,-16.24568748474121],[47.907367706298885,-16.345567703247013],[47.9318199157716,-16.427043914794865],[47.89881515502958,-16.470289230346623],[47.89342498779314,-16.560562133789006],[47.949848175048885,-16.64108657836914],[47.925781250000284,-16.72596931457514],[47.980556488037166,-16.77776145935053],[48.035724639892635,-16.888147354125977],[48.052967071533146,-16.98470687866211],[48.10336685180664,-17.05449676513672],[48.1795387268067,-17.056194305419865],[48.182846069335994,-17.214870452880803],[48.13916015625006,-17.259378433227482],[48.14645004272478,-17.312925338745117],[48.06879425048834,-17.41711235046381],[47.91873550415039,-17.478950500488224],[47.968696594238565,-17.591371536254883],[48.024951934814624,-17.643669128417855],[47.98934173583996,-17.692859649658146],[47.93930816650396,-17.878700256347656],[47.89479446411161,-17.796300888061467],[47.83662796020536,-17.749605178833008],[47.70835876464872,-17.761571884155217],[47.60114669799822,-17.87536811828602],[47.45843887329096,-17.90679359436035],[47.37731170654314,-17.863935470581055],[47.34634017944336,-17.781753540039006],[47.27329635620117,-17.748432159423828],[47.10003662109381,-17.78468132019043],[47.057712554931584,-17.825931549072266],[46.981258392334155,-17.83677673339838],[46.8582649230957,-17.81293106079096],[46.732021331787166,-17.707048416137695],[46.633522033691634,-17.7540283203125],[46.456630706787166,-17.743589401245117],[46.246608734130916,-17.85383415222168],[46.15210723876976,-17.881011962890568],[46.054515838623104,-17.832235336303654],[45.943466186523494,-17.857782363891545],[45.948242187500284,-17.92326354980463],[45.89295959472685,-18.01260757446289],[45.84478759765625,-17.998506546020508],[45.769718170166186,-18.065858840942383],[45.676536560058764,-18.07887458801264],[45.61473083496111,-18.118274688720703],[45.563362121582315,-18.300445556640568],[45.426513671875,-18.281986236572266],[45.36790466308611,-18.31363296508789],[45.333568572998274,-18.27768325805664],[45.17182922363298,-18.20688819885254],[45.095901489257756,-18.2573299407959],[45.01346588134794,-18.18499565124506],[44.94585800170927,-18.24184608459467],[44.91679763793951,-18.299612045288086],[44.827693939208984,-18.323873519897404],[44.801311492919865,-18.364269256591683],[44.851131439209155,-18.44663429260254],[44.90392684936518,-18.63992881774891],[44.94358062744146,-18.739891052246037],[45.006767272949276,-18.816522598266545],[44.97613525390642,-18.89071273803711],[45.04392242431646,-18.996416091918945],[45.06335067749052,-19.07506370544428],[45.02529907226591,-19.1207218170166],[45.034046173095874,-19.17758369445795],[45.11612319946295,-19.239328384399414],[45.00860595703125,-19.26908302307129],[44.92251968383795,-19.269987106323185],[44.825290679931925,-19.30351448059082],[44.738525390625,-19.189193725585824],[44.61015701293974,-19.16696929931635],[44.311614990234546,-19.163194656372013],[44.278194427490234,-19.16402816772461],[44.243751525878906,-19.068750381469727],[44.23402786254911,-18.967361450195256],[44.25958251953125,-18.85763931274414],[44.25013732910185,-18.792638778686523],[44.11264038085966,-18.495695114135685],[44.04347229003923,-18.394304275512695],[44.04319381713867,-18.209861755371037],[44.018196105957315,-18.11180305480957],[44.01097106933622,-17.915695190429688],[44.02875137329124,-17.772083282470703],[43.959026336669865,-17.720693588256836],[43.92819595336914,-17.512638092040902],[44.00236129760759,-17.341527938842773],[44.08763885498075,-17.23374938964838],[44.134860992431925,-17.110971450805607],[44.21014022827171,-17.04097175598139],[44.24791717529314,-16.96097183227539],[44.439582824706974,-16.660137176513615],[44.42930603027361,-16.570140838623047],[44.47069549560564,-16.50013923645014],[44.40680694580095,-16.346805572509766],[44.449306488037166,-16.18763923645014],[44.76402664184576,-16.202917098999023],[44.8423614501956,-16.240417480468693],[44.87597274780279,-16.193471908569336],[44.97208404541044,-16.15624809265131],[45.12125015258795,-16.01541709899891],[45.26569366455095,-15.935973167419377],[45.292915344238395,-16.036527633666992],[45.28902816772455,-16.131805419921818],[45.389862060547046,-16.04569435119629],[45.348472595215014,-15.998748779296818],[45.54124832153326,-15.95152759552002],[45.58152770996111,-15.99263858795166],[45.633193969726676,-15.890694618225098],[45.61069488525385,-15.845693588256836],[45.673751831054915,-15.774584770202637],[45.764583587646484,-15.797637939453068],[45.8843040466308,-15.763471603393555],[46.00791549682634,-15.804861068725586],[46.09097290039057,-15.719582557678223],[46.23263931274414,-15.718194961547852],[46.23236083984375,-15.821805953979435],[46.30263900756836,-15.826251029968262],[46.369304656982706,-15.737084388732853],[46.30625152587919,-15.72680473327631],[46.32374954223644,-15.666805267333984],[46.404304504394815,-15.576250076293832],[46.58458328247076,-15.454583168029785],[46.87125015258795,-15.2293062210083],[46.94374847412104,-15.19847202301014],[46.97069549560547,-15.289583206176758],[47.0712509155274,-15.339859962463379],[46.987083435058594,-15.427083015441895],[46.96763992309599,-15.484305381774846],[47.05513763427729,-15.488748550415039],[47.09791564941406,-15.450139045715275],[47.17902755737322,-15.478195190429688],[47.14041519165045,-15.358471870422306],[47.148471832275504,-15.292082786560059],[47.09069442749035,-15.282084465026855],[47.04013824462896,-15.219582557678223],[47.104026794433594,-15.107360839843693],[47.198192596435774,-15.05263900756836],[47.21125030517584,-14.997638702392578],[47.28541564941406,-14.93375015258789],[47.27902603149414,-14.860417366027832],[47.4281959533692,-14.694581985473633],[47.497917175293026,-14.722359657287598],[47.47874832153326,-14.77124977111805],[47.514862060546875,-14.820972442626896],[47.39875030517601,-14.984027862548771],[47.39680480957031,-15.105138778686523],[47.48541641235357,-15.088195800781193],[47.49569320678711,-15.031805038452148],[47.640972137451115,-14.814582824706974],[47.629028320312614,-14.79819393157959],[47.795970916748104,-14.587916374206543],[47.83680725097656,-14.639027595519963],[47.907638549804915,-14.679026603698674],[47.96125030517584,-14.619304656982422],[47.90652847290039,-14.57791805267334],[47.86208343505888,-14.61097240447998],[47.822917938232536,-14.604583740234318],[47.79124832153332,-14.5584716796875],[47.77680587768572,-14.595694541931096],[47.71513748168974,-14.55875015258789],[47.696804046631144,-14.398750305175781],[47.71958160400396,-14.340415954589787],[47.84486007690441,-14.257916450500488],[47.934307098388786,-14.245139122009277],[47.96291732788097,-14.30958366394043],[48.025138854980526,-14.27430534362793],[48.001529693603516,-14.214583396911564],[48.04624938964844,-14.118471145629883],[48.00436401367216,-13.993150711059457]]]},"properties":{"ID_0":134,"ISO":"MDG","NAME_0":"Madagascar","ID_1":4,"NAME_1":"Mahajanga","HASC_1":"MG.MA","CCN_1":0,"CCA_1":"","TYPE_1":"Faritany Mizakatena","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"","VARNAME_1":"Majunga","code":"mahajanga"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[50.01211166381859,-16.70067977905262],[49.94458389282249,-16.896249771118164],[49.87736129760759,-17.0123615264892],[49.857082366943644,-16.92874717712391],[49.965694427490234,-16.740415573120117],[50.01211166381859,-16.70067977905262]]],[[[50.01152801513666,-15.831941604614258],[50.01763916015642,-15.786250114440861],[49.95513916015631,-15.734862327575627],[49.96708297729498,-15.630694389343205],[49.89041519165062,-15.560417175292969],[49.904304504394645,-15.445416450500488],[49.86458206176775,-15.425972938537598],[49.72958374023466,-15.444306373596135],[49.675971984863565,-15.471805572509766],[49.61597061157232,-15.552638053894043],[49.65069580078125,-15.637916564941406],[49.65124893188482,-15.707362174987793],[49.70319366455084,-15.871806144714299],[49.73014068603544,-15.910362243652287],[49.67486190795904,-16.04597282409668],[49.725139617919865,-16.146528244018498],[49.827915191650504,-16.180694580078125],[49.860694885253906,-16.22652816772461],[49.8143043518067,-16.35097312927246],[49.86180496215843,-16.447082519531193],[49.839862823486385,-16.56152725219721],[49.72458267211931,-16.75252342224121],[49.80513763427746,-16.850416183471623],[49.62347412109381,-16.889028549194336],[49.53013992309576,-17.04125022888178],[49.41291809082054,-17.342636108398438],[49.4745826721192,-17.480140686035156],[49.467639923095646,-17.529027938842773],[49.496528625488395,-17.66430473327631],[49.520416259765796,-17.697639465331974],[49.42819595336931,-17.980695724487305],[49.40097045898449,-18.10347175598139],[49.41986083984369,-18.140417098999023],[49.37791824340843,-18.20541572570795],[49.33791732788097,-18.408472061157113],[49.29902648925787,-18.472360610961857],[49.17791748046881,-18.786806106567383],[49.03736114501976,-19.12152862548828],[48.9906959533692,-19.258472442626953],[48.98513793945341,-19.330139160156193],[48.86541748046892,-19.619304656982308],[48.813194274902344,-19.855138778686523],[48.82347106933611,-19.911806106567326],[48.7326393127442,-20.12069511413563],[48.684860229492244,-20.189306259155273],[48.58625030517584,-20.418903350830078],[48.378341674804744,-20.389665603637695],[48.358974456787166,-20.297470092773438],[48.277168273925724,-20.313066482543945],[48.20999145507841,-20.271764755249023],[48.14503097534208,-20.267404556274414],[48.07730865478533,-20.390390396118107],[48.075935363769645,-20.435575485229435],[47.96675491333002,-20.40517807006836],[47.76872634887724,-20.460489273071175],[47.67154312133789,-20.358915328979435],[47.66528701782232,-20.247955322265568],[47.71142959594732,-20.137107849121094],[47.706874847412166,-20.058118820190373],[47.763767242431925,-20.029998779296875],[47.7060661315918,-19.95073509216303],[47.80887222290039,-19.877700805664062],[47.85708999633806,-19.868038177490234],[47.86469650268566,-19.74300765991211],[47.83698272705095,-19.717252731323242],[47.85726928710943,-19.53486442565918],[47.897075653076456,-19.409475326538086],[47.941379547119084,-19.38325119018549],[47.95506668090849,-19.219421386718693],[47.894077301025334,-19.10205650329584],[47.94319915771479,-18.973459243774414],[47.931804656982706,-18.829900741577035],[47.937896728515625,-18.637113571166992],[47.98936843872093,-18.553754806518555],[47.992004394531364,-18.43822479248047],[48.036888122558594,-18.379425048828068],[47.989151000976676,-18.159738540649357],[48.00542068481474,-18.051273345947152],[47.91076278686529,-17.953859329223633],[47.93930816650396,-17.878700256347656],[47.98934173583996,-17.692859649658146],[48.024951934814624,-17.643669128417855],[47.968696594238565,-17.591371536254883],[47.91873550415039,-17.478950500488224],[48.06879425048834,-17.41711235046381],[48.14645004272478,-17.312925338745117],[48.13916015625006,-17.259378433227482],[48.182846069335994,-17.214870452880803],[48.1795387268067,-17.056194305419865],[48.10336685180664,-17.05449676513672],[48.052967071533146,-16.98470687866211],[48.035724639892635,-16.888147354125977],[47.980556488037166,-16.77776145935053],[47.925781250000284,-16.72596931457514],[47.949848175048885,-16.64108657836914],[47.89342498779314,-16.560562133789006],[47.89881515502958,-16.470289230346623],[47.9318199157716,-16.427043914794865],[47.907367706298885,-16.345567703247013],[47.96039962768583,-16.24568748474121],[48.11429977417015,-16.281837463378906],[48.189662933349894,-16.245895385742188],[48.28385925292986,-16.24519920349121],[48.40863800048828,-16.34395980834961],[48.45602798461914,-16.337608337402287],[48.50887680053711,-16.405515670776367],[48.590961456298885,-16.44817924499506],[48.61633300781267,-16.55078125],[48.65581893920927,-16.591344833374023],[48.65914916992193,-16.656974792480412],[48.7070007324221,-16.68340492248535],[48.85713577270525,-16.674621582031193],[48.93415069580084,-16.684455871581974],[49.05667114257841,-16.4892520904541],[49.15417098999029,-16.461717605590763],[49.14819335937506,-16.344173431396428],[49.213886260986555,-16.25115966796875],[49.21158981323265,-16.143854141235295],[49.18903732299805,-16.096073150634766],[49.24496459960932,-16.060892105102482],[49.11103439331055,-15.904065132141056],[49.08855056762701,-15.789912223815918],[49.04368209838867,-15.762882232666016],[49.09085464477562,-15.566768646240234],[49.071090698242244,-15.526695251464787],[49.11526870727562,-15.465839385986271],[49.02704620361334,-15.451603889465332],[49.031047821044865,-15.360103607177734],[49.17911148071289,-15.297528266906681],[49.368541717529354,-15.236441612243596],[49.35576629638683,-15.077092170715332],[49.450756072998104,-15.09545516967762],[49.478759765625284,-14.806734085083008],[49.65976333618164,-15.038677215576115],[49.71467590332037,-15.090325355529671],[49.776863098144815,-15.049788475036621],[49.82224655151384,-15.120559692382812],[49.806541442871094,-15.15906620025629],[49.896675109863395,-15.269241333007812],[49.98838043212896,-15.243520736694336],[50.03333663940441,-15.296415328979435],[49.986595153808594,-15.348626136779785],[50.05324554443388,-15.391083717346135],[50.018379211425895,-15.48132419586176],[50.00646591186518,-15.633764266967773],[49.98318099975597,-15.667593002319279],[50.041625976562784,-15.73270320892334],[50.06789779663103,-15.81457233428955],[50.01152801513666,-15.831941604614258]]]]},"properties":{"ID_0":134,"ISO":"MDG","NAME_0":"Madagascar","ID_1":5,"NAME_1":"Toamasina","HASC_1":"MG.TM","CCN_1":0,"CCA_1":"","TYPE_1":"Faritany Mizakatena","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"","VARNAME_1":"Tamatave","code":"toamasina"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.563362121582315,-18.300445556640568],[45.60372543334972,-18.326774597167912],[45.5797653198245,-18.436288833618107],[45.60642623901384,-18.572614669799805],[45.466159820556925,-18.722679138183594],[45.50567626953131,-18.88070869445795],[45.477626800537394,-18.916875839233285],[45.54985427856451,-18.977804183959904],[45.5449295043947,-19.01950836181635],[45.61519622802757,-19.092863082885742],[45.627346038818644,-19.17612648010254],[45.72141265869146,-19.243206024169922],[45.796459197998104,-19.2014102935791],[45.81971740722685,-19.31807136535639],[45.82307052612316,-19.435255050659123],[45.73685455322271,-19.443286895751953],[45.69146728515631,-19.497053146362248],[45.7585525512697,-19.579086303710938],[45.815647125244084,-19.614557266235295],[45.84148406982416,-19.687280654907227],[45.79006958007818,-19.73991584777832],[45.77184295654325,-19.880229949951058],[45.754802703857365,-19.976821899414006],[45.78780746459978,-20.000017166137695],[45.75835418701189,-20.108846664428654],[45.835075378418026,-20.337131500244027],[45.81980895996094,-20.560533523559457],[45.84181976318388,-20.713537216186523],[45.79027938842768,-20.721942901611214],[45.7658119201663,-20.837451934814453],[45.79509353637695,-20.98967742919922],[45.753738403320426,-21.066749572753906],[45.7416877746582,-21.243896484375],[45.6542396545413,-21.26878929138178],[45.58475875854498,-21.318128585815316],[45.56310653686518,-21.429277420043945],[45.521972656250284,-21.506904602050724],[45.53999710083036,-21.678537368774414],[45.40991973876953,-21.693857192993107],[45.37982177734398,-21.867540359496957],[45.324958801269645,-21.899450302124023],[45.203330993652514,-21.89813041687006],[45.216178894043196,-21.96790695190424],[45.29323959350603,-22.0176944732666],[45.265537261963175,-22.061426162719613],[45.32223510742193,-22.139251708984375],[45.277740478515625,-22.167976379394474],[45.2769012451173,-22.233957290649414],[45.23289489746111,-22.25890922546381],[45.23608779907232,-22.350536346435547],[45.14907836914091,-22.42474937438959],[45.077583312988395,-22.55612945556635],[45.066925048828296,-22.63302040100092],[45.02845764160162,-22.6784610748291],[45.04633331298845,-22.73947525024414],[44.98305130004911,-22.873710632324162],[44.97809600830078,-22.948163986206055],[45.0755882263183,-23.051576614379883],[45.130283355713175,-23.048746109008732],[45.30381774902361,-23.11298179626465],[45.36296463012701,-23.086631774902344],[45.36286926269537,-22.998104095458984],[45.39678573608393,-22.874488830566406],[45.64795303344755,-22.738952636718693],[45.680747985839844,-22.741308212280273],[45.85580062866234,-22.677553176879883],[46.00007247924816,-22.697717666625863],[46.095279693603686,-22.750846862792912],[46.12052154541027,-22.821763992309513],[46.219112396240234,-22.86186218261713],[46.33363342285156,-23.10293960571289],[46.37060165405296,-23.1510009765625],[46.4648246765139,-23.185516357421875],[46.46907043457031,-23.281669616699162],[46.447456359863224,-23.399791717529297],[46.40166091918951,-23.43423843383789],[46.48852920532255,-23.581321716308537],[46.39384078979498,-23.80983543395996],[46.4748992919923,-23.86670684814453],[46.52899932861351,-23.934980392455998],[46.6137237548831,-23.942523956298828],[46.718357086181925,-23.998743057250977],[46.734947204589844,-24.09486961364746],[46.85301208496094,-24.11258316040039],[46.896076202392805,-24.17765998840332],[46.887393951416186,-24.29578208923334],[46.9771728515625,-24.278076171874943],[47.039497375488224,-24.217483520507812],[47.02661514282221,-24.101390838623047],[47.10701751708979,-24.077915191650334],[47.131603240966854,-24.028953552246094],[47.21449661254877,-23.998474121093693],[47.28273391723661,-24.063272476196232],[47.38151931762724,-24.097080230712834],[47.41513824462896,-24.13821029663086],[47.30597305297857,-24.422637939453068],[47.269027709960994,-24.56930351257313],[47.18875122070335,-24.736249923706055],[47.20124816894548,-24.77486038208002],[47.12708282470703,-24.85986137390131],[47.08874893188505,-24.968749999999886],[47.014026641845646,-24.988193511962834],[46.95877075195341,-25.052631378173828],[46.901805877685604,-25.065696716308594],[46.723751068115405,-25.178749084472543],[46.635139465331974,-25.199583053588754],[46.51180648803722,-25.164583206176644],[46.284305572509936,-25.199583053588754],[46.087917327880916,-25.267637252807617],[45.873474121094034,-25.36486053466797],[45.60013961792009,-25.545139312744084],[45.47874832153349,-25.5795841217041],[45.14014053344732,-25.597082138061523],[45.10625076293974,-25.527915954589844],[44.9745826721192,-25.478471755981445],[44.93958282470709,-25.42152786254877],[44.81013870239258,-25.342638015746957],[44.71374893188488,-25.313749313354492],[44.43236160278326,-25.269582748412972],[44.32430648803728,-25.15708351135254],[44.16291809082037,-25.06736183166504],[44.12097167968773,-25.078750610351562],[44.05069351196312,-25.00819206237793],[44.01930236816412,-24.87105369567871],[43.95513916015642,-24.812639236450195],[43.92013931274431,-24.734582901000977],[43.93513870239286,-24.63569259643549],[43.81513977050798,-24.498470306396428],[43.695415496826286,-24.396249771118164],[43.66819381713884,-24.31847190856928],[43.66986083984381,-24.09430503845215],[43.65208435058611,-23.841529846191406],[43.63319396972673,-23.750415802001896],[43.65819549560547,-23.61347007751465],[43.759304046631144,-23.570972442626953],[43.76652908325224,-23.46291542053217],[43.619304656982706,-23.3118057250976],[43.61069488525408,-23.104583740234318],[43.59013748168957,-23.06458282470703],[43.44958496093773,-22.950971603393555],[43.37014007568354,-22.84541511535639],[43.33930587768583,-22.711526870727482],[43.28347396850603,-22.5534725189209],[43.28852844238298,-22.493444442749023],[43.260971069335994,-22.37152862548828],[43.22791671752958,-22.32597160339344],[43.2326393127442,-22.144582748412972],[43.276248931884766,-21.906251907348576],[43.34236145019537,-21.903472900390625],[43.331527709961165,-21.80569458007801],[43.35124969482416,-21.74541664123535],[43.463748931884766,-21.649305343627873],[43.47208404541021,-21.59541893005371],[43.45069503784208,-21.454584121704045],[43.51208496093767,-21.305694580078125],[43.59624862670893,-21.272918701171875],[43.759860992431925,-21.26708221435547],[43.836246490478516,-21.14878082275385],[43.88458251953142,-20.90069389343256],[43.97180557250971,-20.745971679687386],[44.04152679443354,-20.714860916137695],[44.08625030517584,-20.60597229003895],[44.11346435546892,-20.487361907958984],[44.245971679687614,-20.386249542236214],[44.25847244262707,-20.320972442626953],[44.3823623657226,-20.123193740844727],[44.433471679687614,-20.069583892822266],[44.48764038085949,-19.950971603393555],[44.45486068725609,-19.829027175903263],[44.39097213745123,-19.781251907348576],[44.42069625854498,-19.721250534057617],[44.416526794433764,-19.6512508392334],[44.46763992309593,-19.622360229492188],[44.46736145019537,-19.459028244018498],[44.41152954101574,-19.350973129272404],[44.3495826721192,-19.30291748046875],[44.29735946655302,-19.189029693603516],[44.311614990234546,-19.163194656372013],[44.61015701293974,-19.16696929931635],[44.738525390625,-19.189193725585824],[44.825290679931925,-19.30351448059082],[44.92251968383795,-19.269987106323185],[45.00860595703125,-19.26908302307129],[45.11612319946295,-19.239328384399414],[45.034046173095874,-19.17758369445795],[45.02529907226591,-19.1207218170166],[45.06335067749052,-19.07506370544428],[45.04392242431646,-18.996416091918945],[44.97613525390642,-18.89071273803711],[45.006767272949276,-18.816522598266545],[44.94358062744146,-18.739891052246037],[44.90392684936518,-18.63992881774891],[44.851131439209155,-18.44663429260254],[44.801311492919865,-18.364269256591683],[44.827693939208984,-18.323873519897404],[44.91679763793951,-18.299612045288086],[44.94585800170927,-18.24184608459467],[45.01346588134794,-18.18499565124506],[45.095901489257756,-18.2573299407959],[45.17182922363298,-18.20688819885254],[45.333568572998274,-18.27768325805664],[45.36790466308611,-18.31363296508789],[45.426513671875,-18.281986236572266],[45.563362121582315,-18.300445556640568]]]},"properties":{"ID_0":134,"ISO":"MDG","NAME_0":"Madagascar","ID_1":6,"NAME_1":"Toliary","HASC_1":"MG.TL","CCN_1":0,"CCA_1":"","TYPE_1":"Faritany Mizakatena","ENGTYPE_1":"Autonomous Province","NL_NAME_1":"","VARNAME_1":"Toleary/Toliary/Tuléar","code":"toliara"}}]}
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