Skip to content

Instantly share code, notes, and snippets.

@jeremiaheb
Last active February 5, 2016 19:51
Show Gist options
  • Save jeremiaheb/154c8681e93715d66551 to your computer and use it in GitHub Desktop.
Save jeremiaheb/154c8681e93715d66551 to your computer and use it in GitHub Desktop.

Motion Chart of 10 species Protected Vs Unprotected

<!DOCTYPE html>
<html class="ocks-org do-not-copy">
<meta charset="utf-8">
<title>RVC Top 75 Species </title>
<style>
@import url(../style.css?aea6f0a);
body {
background-color: white;
}
#chart {
margin-left: -40px;
height: 506px;
}
text {
font: 10px sans-serif;
}
.dot {
stroke: #000;
}
.axis path, .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.label {
fill: #777;
}
.year.label {
font: 500 196px "Helvetica Neue";
fill: #ddd;
}
.year.label.active {
fill: #aaa;
}
.overlay {
fill: none;
pointer-events: all;
cursor: ew-resize;
}
</style>
<header>
</header>
<h1>RVC Top 75 Species</h1>
<p id="chart"></p>
<aside>Mouseover the year to move forward and backwards through time.</aside>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script></script>
<script>
// Various accessors that specify the four dimensions of data to visualize.
function x(d) { return d.occurrence; }
function y(d) { return d.lbar; }
function radius(d) { return d.density; }
function color(d) { return d.family; }
function key(d) { return d.species; }
// Chart dimensions.
var margin = {top: 19.5, right: 19.5, bottom: 19.5, left: 39.5},
width = 960 - margin.right,
height = 500 - margin.top - margin.bottom;
// Various scales. These domains make assumptions of data, naturally.
var xScale = d3.scale.linear().domain([0, 1]).range([0, width]),
yScale = d3.scale.linear().domain([1, 65]).range([height, 0]),
radiusScale = d3.scale.linear().domain([0, 20]).range([5, 50]),
colorScale = d3.scale.category20();
// The x & y axes.
var xAxis = d3.svg.axis().orient("bottom").scale(xScale).ticks(12, d3.format(",d")),
yAxis = d3.svg.axis().scale(yScale).orient("right");
// Create the SVG container and set the origin.
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// Add the x-axis.
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
// Add the y-axis.
svg.append("g")
.attr("class", "y axis")
.call(yAxis);
// Add an x-axis label.
svg.append("text")
.attr("class", "x label")
.attr("text-anchor", "end")
.attr("x", width)
.attr("y", height - 6)
.text("Occurrence");
// Add a y-axis label.
svg.append("text")
.attr("class", "y label")
.attr("text-anchor", "end")
.attr("y", 6)
.attr("dy", ".75em")
.attr("transform", "rotate(-90)")
.text("lbar");
// Add the year label; the value is set on transition.
var label = svg.append("text")
.attr("class", "year label")
.attr("text-anchor", "end")
.attr("y", height - (.65*height))
.attr("x", width)
.text(2000);
// Load the data.
d3.json("RVCData.json", function(nations) {
// A bisector since many nation's data is sparsely-defined.
var bisect = d3.bisector(function(d) { return d[0]; });
// Add a dot per nation. Initialize the data at 1800, and set the colors.
var dot = svg.append("g")
.attr("class", "dots")
.selectAll(".dot")
.data(interpolateData(2000))
.enter().append("circle")
.attr("class", function(d) { return "dot" + " " + d.species.substring(0,3) })
.style("fill", function(d) { return colorScale(color(d)); })
.call(position)
.sort(order)
.on("click", function(d) {
var fam = d.species.substring(0,3);
d3.selectAll(".dot").style("opacity", 1);
d3.selectAll(".dot").filter("*:not(." + fam + ")").style("opacity", .05);
});
// Add a title.
dot.append("title")
.text(function(d) { return d.species; });
// Add an overlay for the year label.
var box = label.node().getBBox();
var overlay = svg.append("rect")
.attr("class", "overlay")
.attr("x", box.x)
.attr("y", box.y)
.attr("width", box.width)
.attr("height", box.height)
.on("mouseover", enableInteraction);
// Start a transition that interpolates the data based on year.
svg.transition()
.duration(30000)
.ease("linear")
.tween("year", tweenYear)
.each("end", enableInteraction);
// Positions the dots based on data.
function position(dot) {
dot .attr("cx", function(d) { return xScale(x(d)); })
.attr("cy", function(d) { return yScale(y(d)); })
.attr("r", function(d) { return radiusScale(radius(d)); });
}
// Defines a sort order so that the smallest dots are drawn on top.
function order(a, b) {
return radius(b) - radius(a);
}
// After the transition finishes, you can mouseover to change the year.
function enableInteraction() {
var yearScale = d3.scale.linear()
.domain([2000, 2014])
.range([box.x + 10, box.x + box.width - 10])
.clamp(true);
// Cancel the current transition, if any.
svg.transition().duration(0);
overlay
.on("mouseover", mouseover)
.on("mouseout", mouseout)
.on("mousemove", mousemove)
.on("touchmove", mousemove);
function mouseover() {
label.classed("active", true);
}
function mouseout() {
label.classed("active", false);
}
function mousemove() {
displayYear(yearScale.invert(d3.mouse(this)[0]));
}
}
// Tweens the entire chart by first tweening the year, and then the data.
// For the interpolated data, the dots and label are redrawn.
function tweenYear() {
var year = d3.interpolateNumber(2000, 2014);
return function(t) { displayYear(year(t)); };
}
// Updates the display to show the specified year.
function displayYear(year) {
dot.data(interpolateData(year), key).call(position).sort(order);
label.text(Math.round(year));
}
// Interpolates the dataset for the given (fractional) year.
function interpolateData(year) {
return nations.map(function(d) {
return {
species: d.species,
family: d.family,
lbar: interpolateValues(d.lbar, year),
density: interpolateValues(d.density, year),
occurrence: interpolateValues(d.occurrence, year)
};
});
}
// Finds (and possibly interpolates) the value for the specified year.
function interpolateValues(values, year) {
var i = bisect.left(values, year, 0, values.length - 1),
a = values[i];
if (i > 0) {
var b = values[i - 1],
t = (year - a[0]) / (b[0] - a[0]);
return a[1] * (1 - t) + b[1] * t;
}
return a[1];
}
});
</script>
<script>
GoogleAnalyticsObject = "ga", ga = function() { ga.q.push(arguments); }, ga.q = [], ga.l = +new Date;
ga("create", "UA-48272912-3", "ocks.org");
ga("send", "pageview");
</script>
<script async src="//www.google-analytics.com/analytics.js"></script>
[
{
"family": "unprotected",
"species": "ocy chry _U",
"occurrence": [
[
2000,
0.61091
],
[
2001,
0.52899
],
[
2002,
0.50964
],
[
2003,
0.50884
],
[
2004,
0.50087
],
[
2005,
0.63854
],
[
2006,
0.56455
],
[
2007,
0.61298
],
[
2008,
0.70919
],
[
2009,
0.66708
],
[
2010,
0.56066
],
[
2011,
0.63803
],
[
2012,
0.68985
],
[
2014,
0.60707
]
],
"density": [
[
2000,
3.102
],
[
2001,
3.0479
],
[
2002,
4.6553
],
[
2003,
2.4848
],
[
2004,
2.3593
],
[
2005,
4.6542
],
[
2006,
4.1986
],
[
2007,
3.6671
],
[
2008,
5.2064
],
[
2009,
4.4291
],
[
2010,
3.5216
],
[
2011,
3.9036
],
[
2012,
4.5604
],
[
2014,
4.7965
]
],
"abundance": [
[
2000,
1.1336e+07
],
[
2001,
1.1139e+07
],
[
2002,
1.7013e+07
],
[
2003,
9.0806e+06
],
[
2004,
8.6222e+06
],
[
2005,
1.7009e+07
],
[
2006,
1.5344e+07
],
[
2007,
1.3401e+07
],
[
2008,
1.9027e+07
],
[
2009,
1.6186e+07
],
[
2010,
1.2869e+07
],
[
2011,
1.4266e+07
],
[
2012,
1.6666e+07
],
[
2014,
1.7527e+07
]
],
"biomass": [
[
2000,
1.2596e+06
],
[
2001,
1.7312e+06
],
[
2002,
1.8877e+06
],
[
2003,
9.5045e+05
],
[
2004,
1.8952e+06
],
[
2005,
1.4732e+06
],
[
2006,
1.7384e+06
],
[
2007,
2.0633e+06
],
[
2008,
2.6779e+06
],
[
2009,
1.6628e+06
],
[
2010,
1.5743e+06
],
[
2011,
1.9602e+06
],
[
2012,
2.0326e+06
],
[
2014,
2.7975e+06
]
],
"lbar": [
[
2000,
16.57
],
[
2001,
16.84
],
[
2002,
17.456
],
[
2003,
16.389
],
[
2004,
20.403
],
[
2005,
15.256
],
[
2006,
16.61
],
[
2007,
18.7
],
[
2008,
18.001
],
[
2009,
16.383
],
[
2010,
17.639
],
[
2011,
18.169
],
[
2012,
17.056
],
[
2014,
18.742
]
]
},
{
"family": "unprotected",
"species": "epi mori _U",
"occurrence": [
[
2000,
0.25333
],
[
2001,
0.27999
],
[
2002,
0.21163
],
[
2003,
0.2416
],
[
2004,
0.20012
],
[
2005,
0.19143
],
[
2006,
0.093417
],
[
2007,
0.097479
],
[
2008,
0.16956
],
[
2009,
0.18561
],
[
2010,
0.16141
],
[
2011,
0.1114
],
[
2012,
0.17359
],
[
2014,
0.090835
]
],
"density": [
[
2000,
0.20567
],
[
2001,
0.22558
],
[
2002,
0.17628
],
[
2003,
0.19287
],
[
2004,
0.12956
],
[
2005,
0.16521
],
[
2006,
0.070876
],
[
2007,
0.066064
],
[
2008,
0.12748
],
[
2009,
0.12118
],
[
2010,
0.10465
],
[
2011,
0.082249
],
[
2012,
0.12706
],
[
2014,
0.071247
]
],
"abundance": [
[
2000,
7.5162e+05
],
[
2001,
8.2439e+05
],
[
2002,
6.442e+05
],
[
2003,
7.0483e+05
],
[
2004,
4.7347e+05
],
[
2005,
6.0377e+05
],
[
2006,
2.5902e+05
],
[
2007,
2.4143e+05
],
[
2008,
4.6587e+05
],
[
2009,
4.4285e+05
],
[
2010,
3.8246e+05
],
[
2011,
3.0058e+05
],
[
2012,
4.6435e+05
],
[
2014,
2.6035e+05
]
],
"biomass": [
[
2000,
3.858e+05
],
[
2001,
8.3611e+05
],
[
2002,
9.607e+05
],
[
2003,
1.376e+06
],
[
2004,
7.6942e+05
],
[
2005,
6.6033e+05
],
[
2006,
2.9214e+05
],
[
2007,
3.7757e+05
],
[
2008,
4.8023e+05
],
[
2009,
3.1145e+05
],
[
2010,
4.2498e+05
],
[
2011,
3.1775e+05
],
[
2012,
5.1155e+05
],
[
2014,
3.6618e+05
]
],
"lbar": [
[
2000,
30.365
],
[
2001,
33.747
],
[
2002,
40.037
],
[
2003,
47.199
],
[
2004,
42.315
],
[
2005,
39.537
],
[
2006,
40.151
],
[
2007,
44.357
],
[
2008,
37.206
],
[
2009,
34.599
],
[
2010,
40.689
],
[
2011,
37.131
],
[
2012,
37.068
],
[
2014,
45.67
]
]
},
{
"family": "unprotected",
"species": "lac maxi _U",
"occurrence": [
[
2000,
0.56153
],
[
2001,
0.67708
],
[
2002,
0.68455
],
[
2003,
0.67677
],
[
2004,
0.66782
],
[
2005,
0.61227
],
[
2006,
0.57108
],
[
2007,
0.62647
],
[
2008,
0.73927
],
[
2009,
0.68772
],
[
2010,
0.65403
],
[
2011,
0.69334
],
[
2012,
0.71861
],
[
2014,
0.64505
]
],
"density": [
[
2000,
0.97373
],
[
2001,
1.4718
],
[
2002,
1.2453
],
[
2003,
1.2004
],
[
2004,
1.2562
],
[
2005,
1.266
],
[
2006,
1.0405
],
[
2007,
1.1162
],
[
2008,
1.663
],
[
2009,
1.2735
],
[
2010,
1.1603
],
[
2011,
1.1354
],
[
2012,
1.3858
],
[
2014,
1.6185
]
],
"abundance": [
[
2000,
3.5585e+06
],
[
2001,
5.3786e+06
],
[
2002,
4.551e+06
],
[
2003,
4.3869e+06
],
[
2004,
4.5909e+06
],
[
2005,
4.6266e+06
],
[
2006,
3.8025e+06
],
[
2007,
4.079e+06
],
[
2008,
6.0774e+06
],
[
2009,
4.6541e+06
],
[
2010,
4.2402e+06
],
[
2011,
4.1492e+06
],
[
2012,
5.0644e+06
],
[
2014,
5.9143e+06
]
],
"biomass": [
[
2000,
8.1421e+05
],
[
2001,
2.0283e+06
],
[
2002,
2.1517e+06
],
[
2003,
1.5841e+06
],
[
2004,
2.3366e+06
],
[
2005,
1.52e+06
],
[
2006,
1.4333e+06
],
[
2007,
1.7262e+06
],
[
2008,
2.3588e+06
],
[
2009,
1.4617e+06
],
[
2010,
1.0995e+06
],
[
2011,
1.4061e+06
],
[
2012,
1.6702e+06
],
[
2014,
2.0451e+06
]
],
"lbar": [
[
2000,
18.99
],
[
2001,
23.35
],
[
2002,
24.98
],
[
2003,
23.718
],
[
2004,
26.867
],
[
2005,
22.605
],
[
2006,
23.52
],
[
2007,
24.634
],
[
2008,
24.304
],
[
2009,
22.946
],
[
2010,
21.951
],
[
2011,
23.871
],
[
2012,
23.974
],
[
2014,
24.588
]
]
},
{
"family": "unprotected",
"species": "myc bona _U",
"occurrence": [
[
2000,
0.15625
],
[
2001,
0.23233
],
[
2002,
0.20174
],
[
2003,
0.11036
],
[
2004,
0.13762
],
[
2005,
0.19432
],
[
2006,
0.11237
],
[
2007,
0.16385
],
[
2008,
0.17624
],
[
2009,
0.13822
],
[
2010,
0.17731
],
[
2011,
0.2582
],
[
2012,
0.17851
],
[
2014,
0.085103
]
],
"density": [
[
2000,
0.12927
],
[
2001,
0.22745
],
[
2002,
0.18273
],
[
2003,
0.083529
],
[
2004,
0.12107
],
[
2005,
0.20986
],
[
2006,
0.094083
],
[
2007,
0.14167
],
[
2008,
0.12155
],
[
2009,
0.10257
],
[
2010,
0.13672
],
[
2011,
0.24318
],
[
2012,
0.13804
],
[
2014,
0.049514
]
],
"abundance": [
[
2000,
4.7242e+05
],
[
2001,
8.3119e+05
],
[
2002,
6.6777e+05
],
[
2003,
3.0525e+05
],
[
2004,
4.4246e+05
],
[
2005,
7.6692e+05
],
[
2006,
3.4382e+05
],
[
2007,
5.1775e+05
],
[
2008,
4.4419e+05
],
[
2009,
3.7482e+05
],
[
2010,
4.9965e+05
],
[
2011,
8.8871e+05
],
[
2012,
5.0448e+05
],
[
2014,
1.8093e+05
]
],
"biomass": [
[
2000,
2.4126e+05
],
[
2001,
1.0409e+06
],
[
2002,
2.0577e+06
],
[
2003,
5.9784e+05
],
[
2004,
2.971e+06
],
[
2005,
1.899e+06
],
[
2006,
1.0193e+06
],
[
2007,
1.9495e+06
],
[
2008,
5.5888e+05
],
[
2009,
5.5717e+05
],
[
2010,
7.1262e+05
],
[
2011,
1.5208e+06
],
[
2012,
7.6428e+05
],
[
2014,
5.589e+05
]
],
"lbar": [
[
2000,
21.18
],
[
2001,
31.277
],
[
2002,
44.847
],
[
2003,
41.513
],
[
2004,
57.608
],
[
2005,
45.558
],
[
2006,
39.902
],
[
2007,
47.874
],
[
2008,
36.897
],
[
2009,
38.796
],
[
2010,
37.01
],
[
2011,
39.567
],
[
2012,
40.098
],
[
2014,
51.525
]
]
},
{
"family": "unprotected",
"species": "lut gris _U",
"occurrence": [
[
2000,
0.31988
],
[
2001,
0.29941
],
[
2002,
0.26257
],
[
2003,
0.19036
],
[
2004,
0.22838
],
[
2005,
0.26553
],
[
2006,
0.23733
],
[
2007,
0.23446
],
[
2008,
0.26936
],
[
2009,
0.26449
],
[
2010,
0.32189
],
[
2011,
0.26518
],
[
2012,
0.24612
],
[
2014,
0.21584
]
],
"density": [
[
2000,
2.0327
],
[
2001,
3.0303
],
[
2002,
2.2271
],
[
2003,
1.5622
],
[
2004,
1.4641
],
[
2005,
2.5146
],
[
2006,
1.9145
],
[
2007,
1.5617
],
[
2008,
2.0949
],
[
2009,
3.0486
],
[
2010,
2.9363
],
[
2011,
2.5191
],
[
2012,
1.7017
],
[
2014,
1.6674
]
],
"abundance": [
[
2000,
7.4283e+06
],
[
2001,
1.1074e+07
],
[
2002,
8.1387e+06
],
[
2003,
5.7089e+06
],
[
2004,
5.3507e+06
],
[
2005,
9.1897e+06
],
[
2006,
6.9966e+06
],
[
2007,
5.7073e+06
],
[
2008,
7.6556e+06
],
[
2009,
1.1141e+07
],
[
2010,
1.0731e+07
],
[
2011,
9.206e+06
],
[
2012,
6.2187e+06
],
[
2014,
6.0928e+06
]
],
"biomass": [
[
2000,
2.3407e+06
],
[
2001,
3.0613e+06
],
[
2002,
2.7992e+06
],
[
2003,
1.2202e+06
],
[
2004,
1.7254e+06
],
[
2005,
2.3587e+06
],
[
2006,
1.335e+06
],
[
2007,
1.8396e+06
],
[
2008,
2.2665e+06
],
[
2009,
1.7705e+06
],
[
2010,
2.0771e+06
],
[
2011,
2.1958e+06
],
[
2012,
1.4144e+06
],
[
2014,
1.6837e+06
]
],
"lbar": [
[
2000,
25.241
],
[
2001,
26.672
],
[
2002,
26.467
],
[
2003,
24.22
],
[
2004,
25.932
],
[
2005,
24.419
],
[
2006,
23.389
],
[
2007,
26.595
],
[
2008,
25.632
],
[
2009,
20.713
],
[
2010,
22.562
],
[
2011,
24.194
],
[
2012,
23.772
],
[
2014,
25.614
]
]
},
{
"family": "unprotected",
"species": "lut anal _U",
"occurrence": [
[
2000,
0.16642
],
[
2001,
0.1859
],
[
2002,
0.18581
],
[
2003,
0.18221
],
[
2004,
0.24253
],
[
2005,
0.19338
],
[
2006,
0.16357
],
[
2007,
0.26903
],
[
2008,
0.23663
],
[
2009,
0.2033
],
[
2010,
0.14848
],
[
2011,
0.16052
],
[
2012,
0.22213
],
[
2014,
0.21771
]
],
"density": [
[
2000,
0.16245
],
[
2001,
0.14882
],
[
2002,
0.21892
],
[
2003,
0.17073
],
[
2004,
0.26521
],
[
2005,
0.19973
],
[
2006,
0.15398
],
[
2007,
0.32701
],
[
2008,
0.22398
],
[
2009,
0.16675
],
[
2010,
0.12107
],
[
2011,
0.13661
],
[
2012,
0.1884
],
[
2014,
0.26283
]
],
"abundance": [
[
2000,
5.9368e+05
],
[
2001,
5.4384e+05
],
[
2002,
8.0003e+05
],
[
2003,
6.2394e+05
],
[
2004,
9.6921e+05
],
[
2005,
7.2989e+05
],
[
2006,
5.6272e+05
],
[
2007,
1.195e+06
],
[
2008,
8.1851e+05
],
[
2009,
6.0937e+05
],
[
2010,
4.4245e+05
],
[
2011,
4.9925e+05
],
[
2012,
6.8849e+05
],
[
2014,
9.6041e+05
]
],
"biomass": [
[
2000,
4.0956e+05
],
[
2001,
7.3335e+05
],
[
2002,
1.4173e+06
],
[
2003,
1.1319e+06
],
[
2004,
1.8698e+06
],
[
2005,
7.9102e+05
],
[
2006,
8.2459e+05
],
[
2007,
2.0748e+06
],
[
2008,
1.0207e+06
],
[
2009,
6.5134e+05
],
[
2010,
5.9903e+05
],
[
2011,
7.6503e+05
],
[
2012,
1.0717e+06
],
[
2014,
1.2876e+06
]
],
"lbar": [
[
2000,
21.686
],
[
2001,
32.51
],
[
2002,
37.472
],
[
2003,
40.988
],
[
2004,
43.223
],
[
2005,
36.299
],
[
2006,
39.661
],
[
2007,
41.138
],
[
2008,
38.758
],
[
2009,
35.896
],
[
2010,
42.261
],
[
2011,
42.478
],
[
2012,
39.805
],
[
2014,
38.195
]
]
},
{
"family": "unprotected",
"species": "sca coer _U",
"occurrence": [
[
2000,
0.13252
],
[
2001,
0.10273
],
[
2002,
0.096363
],
[
2003,
0.12662
],
[
2004,
0.22759
],
[
2005,
0.088779
],
[
2006,
0.13456
],
[
2007,
0.17353
],
[
2008,
0.19303
],
[
2009,
0.15773
],
[
2010,
0.12367
],
[
2011,
0.17786
],
[
2012,
0.17699
],
[
2014,
0.24648
]
],
"density": [
[
2000,
0.15589
],
[
2001,
0.15455
],
[
2002,
0.11349
],
[
2003,
0.17876
],
[
2004,
0.56529
],
[
2005,
0.20141
],
[
2006,
0.17119
],
[
2007,
0.22953
],
[
2008,
0.26479
],
[
2009,
0.17866
],
[
2010,
0.13909
],
[
2011,
0.19985
],
[
2012,
0.22243
],
[
2014,
0.48694
]
],
"abundance": [
[
2000,
5.6971e+05
],
[
2001,
5.6479e+05
],
[
2002,
4.1476e+05
],
[
2003,
6.5327e+05
],
[
2004,
2.0659e+06
],
[
2005,
7.3605e+05
],
[
2006,
6.2562e+05
],
[
2007,
8.388e+05
],
[
2008,
9.6768e+05
],
[
2009,
6.5292e+05
],
[
2010,
5.0832e+05
],
[
2011,
7.3036e+05
],
[
2012,
8.1285e+05
],
[
2014,
1.7793e+06
]
],
"biomass": [
[
2000,
3.6255e+05
],
[
2001,
7.4773e+05
],
[
2002,
3.0621e+05
],
[
2003,
5.6733e+05
],
[
2004,
7.4018e+05
],
[
2005,
2.3815e+06
],
[
2006,
3.8085e+05
],
[
2007,
7.8821e+05
],
[
2008,
5.3685e+05
],
[
2009,
4.1102e+05
],
[
2010,
5.0708e+05
],
[
2011,
4.5336e+05
],
[
2012,
4.6507e+05
],
[
2014,
1.2496e+06
]
],
"lbar": [
[
2000,
22.654
],
[
2001,
25.153
],
[
2002,
27.612
],
[
2003,
33.356
],
[
2004,
24.363
],
[
2005,
36.039
],
[
2006,
22.691
],
[
2007,
25.026
],
[
2008,
27.565
],
[
2009,
25.398
],
[
2010,
27.589
],
[
2011,
27.731
],
[
2012,
25.876
],
[
2014,
29.728
]
]
},
{
"family": "unprotected",
"species": "sca coel _U",
"occurrence": [
[
2000,
0.089044
],
[
2001,
0.081928
],
[
2002,
0.077764
],
[
2003,
0.085223
],
[
2004,
0.08927
],
[
2005,
0.041457
],
[
2006,
0.037147
],
[
2007,
0.13073
],
[
2008,
0.1125
],
[
2009,
0.0961
],
[
2010,
0.073562
],
[
2011,
0.10776
],
[
2012,
0.094207
],
[
2014,
0.075817
]
],
"density": [
[
2000,
0.11341
],
[
2001,
0.14743
],
[
2002,
0.36702
],
[
2003,
0.1447
],
[
2004,
0.080493
],
[
2005,
0.045339
],
[
2006,
0.029744
],
[
2007,
0.22258
],
[
2008,
0.094423
],
[
2009,
0.084204
],
[
2010,
0.066897
],
[
2011,
0.29625
],
[
2012,
0.10441
],
[
2014,
0.090453
]
],
"abundance": [
[
2000,
4.1444e+05
],
[
2001,
5.3876e+05
],
[
2002,
1.3413e+06
],
[
2003,
5.2882e+05
],
[
2004,
2.9416e+05
],
[
2005,
1.6569e+05
],
[
2006,
1.087e+05
],
[
2007,
8.134e+05
],
[
2008,
3.4507e+05
],
[
2009,
3.0772e+05
],
[
2010,
2.4447e+05
],
[
2011,
1.0826e+06
],
[
2012,
3.8157e+05
],
[
2014,
3.3053e+05
]
],
"biomass": [
[
2000,
4.0412e+05
],
[
2001,
1.0196e+06
],
[
2002,
4.7772e+05
],
[
2003,
3.4296e+05
],
[
2004,
2.0349e+05
],
[
2005,
1.3589e+05
],
[
2006,
76002
],
[
2007,
1.0002e+06
],
[
2008,
2.6554e+05
],
[
2009,
2.9544e+05
],
[
2010,
2.4858e+05
],
[
2011,
1.5879e+06
],
[
2012,
2.9853e+05
],
[
2014,
4.1089e+05
]
],
"lbar": [
[
2000,
27.931
],
[
2001,
21.728
],
[
2002,
30.095
],
[
2003,
30.45
],
[
2004,
20.858
],
[
2005,
28.303
],
[
2006,
28.958
],
[
2007,
29.521
],
[
2008,
32.508
],
[
2009,
34.115
],
[
2010,
35.351
],
[
2011,
39.101
],
[
2012,
33.885
],
[
2014,
36.624
]
]
},
{
"family": "unprotected",
"species": "hae plum _U",
"occurrence": [
[
2000,
0.76668
],
[
2001,
0.72524
],
[
2002,
0.63281
],
[
2003,
0.69058
],
[
2004,
0.73113
],
[
2005,
0.69511
],
[
2006,
0.67946
],
[
2007,
0.78765
],
[
2008,
0.88425
],
[
2009,
0.79945
],
[
2010,
0.74501
],
[
2011,
0.77913
],
[
2012,
0.79902
],
[
2014,
0.6849
]
],
"density": [
[
2000,
7.3057
],
[
2001,
11.96
],
[
2002,
7.9088
],
[
2003,
7.3971
],
[
2004,
8.3491
],
[
2005,
9.9875
],
[
2006,
9.5805
],
[
2007,
9.7603
],
[
2008,
12.263
],
[
2009,
16.521
],
[
2010,
13.888
],
[
2011,
13.792
],
[
2012,
10.369
],
[
2014,
9.5022
]
],
"abundance": [
[
2000,
2.6699e+07
],
[
2001,
4.3709e+07
],
[
2002,
2.8903e+07
],
[
2003,
2.7033e+07
],
[
2004,
3.0512e+07
],
[
2005,
3.6499e+07
],
[
2006,
3.5012e+07
],
[
2007,
3.5669e+07
],
[
2008,
4.4815e+07
],
[
2009,
6.0374e+07
],
[
2010,
5.0754e+07
],
[
2011,
5.0402e+07
],
[
2012,
3.7893e+07
],
[
2014,
3.4722e+07
]
],
"biomass": [
[
2000,
3.2923e+06
],
[
2001,
7.6882e+06
],
[
2002,
3.3756e+06
],
[
2003,
2.3549e+06
],
[
2004,
3.4748e+06
],
[
2005,
3.0397e+06
],
[
2006,
3.6266e+06
],
[
2007,
5.3551e+06
],
[
2008,
5.3523e+06
],
[
2009,
5.9259e+06
],
[
2010,
4.2094e+06
],
[
2011,
4.9368e+06
],
[
2012,
4.1885e+06
],
[
2014,
4.3949e+06
]
],
"lbar": [
[
2000,
16.988
],
[
2001,
17.483
],
[
2002,
17.255
],
[
2003,
15.808
],
[
2004,
16.836
],
[
2005,
14.965
],
[
2006,
16.59
],
[
2007,
17.776
],
[
2008,
17.487
],
[
2009,
16.181
],
[
2010,
15.252
],
[
2011,
15.415
],
[
2012,
16.165
],
[
2014,
17.373
]
]
},
{
"family": "unprotected",
"species": "hae sciu _U",
"occurrence": [
[
2000,
0.35846
],
[
2001,
0.37475
],
[
2002,
0.31222
],
[
2003,
0.30657
],
[
2004,
0.29475
],
[
2005,
0.31163
],
[
2006,
0.2919
],
[
2007,
0.32261
],
[
2008,
0.43302
],
[
2009,
0.41776
],
[
2010,
0.33012
],
[
2011,
0.30393
],
[
2012,
0.36674
],
[
2014,
0.30344
]
],
"density": [
[
2000,
3.1557
],
[
2001,
4.3585
],
[
2002,
2.7526
],
[
2003,
2.07
],
[
2004,
2.0135
],
[
2005,
3.2664
],
[
2006,
5.0064
],
[
2007,
4.235
],
[
2008,
4.8942
],
[
2009,
4.1637
],
[
2010,
3.0268
],
[
2011,
2.3369
],
[
2012,
2.9673
],
[
2014,
2.6519
]
],
"abundance": [
[
2000,
1.1532e+07
],
[
2001,
1.5928e+07
],
[
2002,
1.0059e+07
],
[
2003,
7.5648e+06
],
[
2004,
7.3581e+06
],
[
2005,
1.1937e+07
],
[
2006,
1.8296e+07
],
[
2007,
1.5477e+07
],
[
2008,
1.7886e+07
],
[
2009,
1.5216e+07
],
[
2010,
1.1061e+07
],
[
2011,
8.5402e+06
],
[
2012,
1.0844e+07
],
[
2014,
9.6903e+06
]
],
"biomass": [
[
2000,
1.5475e+06
],
[
2001,
3.1203e+06
],
[
2002,
1.7055e+06
],
[
2003,
6.2587e+05
],
[
2004,
1.1316e+06
],
[
2005,
1.1475e+06
],
[
2006,
2.0689e+06
],
[
2007,
1.6202e+06
],
[
2008,
2.5378e+06
],
[
2009,
2.0468e+06
],
[
2010,
1.6546e+06
],
[
2011,
1.348e+06
],
[
2012,
1.8323e+06
],
[
2014,
1.6745e+06
]
],
"lbar": [
[
2000,
19.069
],
[
2001,
18.876
],
[
2002,
19.099
],
[
2003,
15.111
],
[
2004,
19.198
],
[
2005,
16.078
],
[
2006,
17.814
],
[
2007,
16.599
],
[
2008,
19.266
],
[
2009,
17.784
],
[
2010,
17.083
],
[
2011,
18.603
],
[
2012,
19.824
],
[
2014,
19.863
]
]
},
{
"family": "protected",
"species": "ocy chry _P",
"occurrence": [
[
2000,
0.66001
],
[
2001,
0.76918
],
[
2002,
0.64509
],
[
2003,
0.71735
],
[
2004,
0.61074
],
[
2005,
0.76008
],
[
2006,
0.73296
],
[
2007,
0.72945
],
[
2008,
0.80582
],
[
2009,
0.68352
],
[
2010,
0.68475
],
[
2011,
0.73327
],
[
2012,
0.72849
],
[
2014,
0.71511
]
],
"density": [
[
2000,
17.985
],
[
2001,
17.275
],
[
2002,
9.4133
],
[
2003,
13.927
],
[
2004,
8.4
],
[
2005,
11.485
],
[
2006,
8.4811
],
[
2007,
10.493
],
[
2008,
10.968
],
[
2009,
6.4122
],
[
2010,
5.82
],
[
2011,
5.2265
],
[
2012,
7.376
],
[
2014,
7.6919
]
],
"abundance": [
[
2000,
3.0452e+06
],
[
2001,
2.9249e+06
],
[
2002,
1.5938e+06
],
[
2003,
2.3579e+06
],
[
2004,
1.1903e+06
],
[
2005,
1.9445e+06
],
[
2006,
1.436e+06
],
[
2007,
1.7766e+06
],
[
2008,
1.857e+06
],
[
2009,
1.0857e+06
],
[
2010,
9.8539e+05
],
[
2011,
8.8491e+05
],
[
2012,
1.2488e+06
],
[
2014,
1.3006e+06
]
],
"biomass": [
[
2000,
6.6792e+05
],
[
2001,
1.183e+06
],
[
2002,
3.9869e+05
],
[
2003,
5.5606e+05
],
[
2004,
2.1944e+05
],
[
2005,
3.1226e+05
],
[
2006,
2.1964e+05
],
[
2007,
3.3271e+05
],
[
2008,
3.1172e+05
],
[
2009,
1.7793e+05
],
[
2010,
1.4222e+05
],
[
2011,
1.4467e+05
],
[
2012,
1.4916e+05
],
[
2014,
2.0209e+05
]
],
"lbar": [
[
2000,
20.566
],
[
2001,
25.094
],
[
2002,
21.616
],
[
2003,
20.724
],
[
2004,
19.227
],
[
2005,
17.21
],
[
2006,
18.368
],
[
2007,
19.933
],
[
2008,
18.319
],
[
2009,
18.001
],
[
2010,
18.638
],
[
2011,
19.524
],
[
2012,
17.333
],
[
2014,
19.488
]
]
},
{
"family": "protected",
"species": "epi mori _P",
"occurrence": [
[
2000,
0.24267
],
[
2001,
0.27135
],
[
2002,
0.26297
],
[
2003,
0.34918
],
[
2004,
0.23386
],
[
2005,
0.16626
],
[
2006,
0.1507
],
[
2007,
0.18178
],
[
2008,
0.18336
],
[
2009,
0.14225
],
[
2010,
0.10255
],
[
2011,
0.15046
],
[
2012,
0.16044
],
[
2014,
0.11522
]
],
"density": [
[
2000,
0.22167
],
[
2001,
0.19367
],
[
2002,
0.26795
],
[
2003,
0.29179
],
[
2004,
0.21686
],
[
2005,
0.13047
],
[
2006,
0.10558
],
[
2007,
0.12883
],
[
2008,
0.17406
],
[
2009,
0.099744
],
[
2010,
0.063909
],
[
2011,
0.13116
],
[
2012,
0.10948
],
[
2014,
0.092208
]
],
"abundance": [
[
2000,
37532
],
[
2001,
32791
],
[
2002,
45367
],
[
2003,
49404
],
[
2004,
30729
],
[
2005,
22091
],
[
2006,
17875
],
[
2007,
21812
],
[
2008,
29470
],
[
2009,
16888
],
[
2010,
10821
],
[
2011,
22206
],
[
2012,
18537
],
[
2014,
15591
]
],
"biomass": [
[
2000,
22786
],
[
2001,
58191
],
[
2002,
84186
],
[
2003,
1.7915e+05
],
[
2004,
56991
],
[
2005,
42027
],
[
2006,
27020
],
[
2007,
66796
],
[
2008,
41650
],
[
2009,
19931
],
[
2010,
20182
],
[
2011,
36400
],
[
2012,
26883
],
[
2014,
42138
]
],
"lbar": [
[
2000,
21.459
],
[
2001,
40.806
],
[
2002,
48.068
],
[
2003,
52.543
],
[
2004,
54.523
],
[
2005,
45.185
],
[
2006,
51.099
],
[
2007,
54.414
],
[
2008,
38.442
],
[
2009,
42.02
],
[
2010,
48.11
],
[
2011,
46.094
],
[
2012,
42.979
],
[
2014,
55.086
]
]
},
{
"family": "protected",
"species": "lac maxi _P",
"occurrence": [
[
2000,
0.45097
],
[
2001,
0.50659
],
[
2002,
0.48565
],
[
2003,
0.5728
],
[
2004,
0.52305
],
[
2005,
0.42551
],
[
2006,
0.49595
],
[
2007,
0.51542
],
[
2008,
0.59839
],
[
2009,
0.51458
],
[
2010,
0.49096
],
[
2011,
0.53107
],
[
2012,
0.60905
],
[
2014,
0.58645
]
],
"density": [
[
2000,
0.70571
],
[
2001,
0.56629
],
[
2002,
0.87345
],
[
2003,
1.1355
],
[
2004,
0.77719
],
[
2005,
0.59512
],
[
2006,
0.80665
],
[
2007,
0.65379
],
[
2008,
1.3705
],
[
2009,
0.8548
],
[
2010,
0.75158
],
[
2011,
0.70876
],
[
2012,
0.78294
],
[
2014,
1.5264
]
],
"abundance": [
[
2000,
1.1949e+05
],
[
2001,
95879
],
[
2002,
1.4789e+05
],
[
2003,
1.9225e+05
],
[
2004,
1.1013e+05
],
[
2005,
1.0076e+05
],
[
2006,
1.3658e+05
],
[
2007,
1.107e+05
],
[
2008,
2.3204e+05
],
[
2009,
1.4473e+05
],
[
2010,
1.2725e+05
],
[
2011,
1.2e+05
],
[
2012,
1.3256e+05
],
[
2014,
2.5809e+05
]
],
"biomass": [
[
2000,
39557
],
[
2001,
52192
],
[
2002,
79023
],
[
2003,
1.4478e+05
],
[
2004,
1.0524e+05
],
[
2005,
47042
],
[
2006,
66906
],
[
2007,
78612
],
[
2008,
89737
],
[
2009,
59600
],
[
2010,
40616
],
[
2011,
45346
],
[
2012,
50891
],
[
2014,
1.1498e+05
]
],
"lbar": [
[
2000,
20.733
],
[
2001,
24.572
],
[
2002,
26.834
],
[
2003,
29.374
],
[
2004,
32.729
],
[
2005,
26.088
],
[
2006,
27.955
],
[
2007,
29.461
],
[
2008,
25.29
],
[
2009,
24.456
],
[
2010,
23.269
],
[
2011,
24.601
],
[
2012,
24.969
],
[
2014,
27.446
]
]
},
{
"family": "protected",
"species": "myc bona _P",
"occurrence": [
[
2000,
0.34942
],
[
2001,
0.38008
],
[
2002,
0.42605
],
[
2003,
0.44825
],
[
2004,
0.33874
],
[
2005,
0.22265
],
[
2006,
0.2578
],
[
2007,
0.24272
],
[
2008,
0.25872
],
[
2009,
0.17514
],
[
2010,
0.16973
],
[
2011,
0.34886
],
[
2012,
0.29116
],
[
2014,
0.1983
]
],
"density": [
[
2000,
0.5257
],
[
2001,
0.36984
],
[
2002,
0.49655
],
[
2003,
0.4011
],
[
2004,
0.28322
],
[
2005,
0.24276
],
[
2006,
0.21043
],
[
2007,
0.22401
],
[
2008,
0.20039
],
[
2009,
0.10689
],
[
2010,
0.15975
],
[
2011,
0.28782
],
[
2012,
0.21573
],
[
2014,
0.15148
]
],
"abundance": [
[
2000,
89008
],
[
2001,
62619
],
[
2002,
84073
],
[
2003,
67911
],
[
2004,
40132
],
[
2005,
41103
],
[
2006,
35629
],
[
2007,
37928
],
[
2008,
33928
],
[
2009,
18097
],
[
2010,
27047
],
[
2011,
48731
],
[
2012,
36526
],
[
2014,
25613
]
],
"biomass": [
[
2000,
1.3694e+05
],
[
2001,
1.85e+05
],
[
2002,
2.777e+05
],
[
2003,
3.6495e+05
],
[
2004,
1.6582e+05
],
[
2005,
1.7186e+05
],
[
2006,
74327
],
[
2007,
1.0096e+05
],
[
2008,
67278
],
[
2009,
32647
],
[
2010,
47105
],
[
2011,
94557
],
[
2012,
60053
],
[
2014,
83413
]
],
"lbar": [
[
2000,
38.902
],
[
2001,
48.803
],
[
2002,
52.361
],
[
2003,
62.433
],
[
2004,
60.862
],
[
2005,
55.186
],
[
2006,
48.621
],
[
2007,
50.539
],
[
2008,
46.456
],
[
2009,
48.174
],
[
2010,
42.032
],
[
2011,
41.943
],
[
2012,
44.584
],
[
2014,
54.144
]
]
},
{
"family": "protected",
"species": "lut gris _P",
"occurrence": [
[
2000,
0.39721
],
[
2001,
0.34314
],
[
2002,
0.35998
],
[
2003,
0.428
],
[
2004,
0.34537
],
[
2005,
0.32393
],
[
2006,
0.27764
],
[
2007,
0.35425
],
[
2008,
0.29402
],
[
2009,
0.22543
],
[
2010,
0.25243
],
[
2011,
0.27933
],
[
2012,
0.2706
],
[
2014,
0.22137
]
],
"density": [
[
2000,
4.0936
],
[
2001,
4.2334
],
[
2002,
3.8733
],
[
2003,
4.1193
],
[
2004,
2.7496
],
[
2005,
2.5975
],
[
2006,
2.3669
],
[
2007,
2.7353
],
[
2008,
2.2084
],
[
2009,
2.3337
],
[
2010,
3.6079
],
[
2011,
3.0679
],
[
2012,
1.5701
],
[
2014,
2.029
]
],
"abundance": [
[
2000,
6.9309e+05
],
[
2001,
7.1676e+05
],
[
2002,
6.558e+05
],
[
2003,
6.9744e+05
],
[
2004,
3.8961e+05
],
[
2005,
4.3979e+05
],
[
2006,
4.0074e+05
],
[
2007,
4.6312e+05
],
[
2008,
3.7392e+05
],
[
2009,
3.9513e+05
],
[
2010,
6.1087e+05
],
[
2011,
5.1944e+05
],
[
2012,
2.6584e+05
],
[
2014,
3.4307e+05
]
],
"biomass": [
[
2000,
2.915e+05
],
[
2001,
4.0408e+05
],
[
2002,
4.9057e+05
],
[
2003,
3.8953e+05
],
[
2004,
1.5938e+05
],
[
2005,
1.1497e+05
],
[
2006,
1.2026e+05
],
[
2007,
2.1333e+05
],
[
2008,
1.4001e+05
],
[
2009,
80800
],
[
2010,
1.3917e+05
],
[
2011,
1.2021e+05
],
[
2012,
65910
],
[
2014,
92479
]
],
"lbar": [
[
2000,
30.031
],
[
2001,
31.149
],
[
2002,
34.798
],
[
2003,
33.254
],
[
2004,
25.605
],
[
2005,
28.611
],
[
2006,
26.182
],
[
2007,
31.696
],
[
2008,
28.521
],
[
2009,
24.692
],
[
2010,
22.691
],
[
2011,
22.841
],
[
2012,
23.157
],
[
2014,
25.339
]
]
},
{
"family": "protected",
"species": "lut anal _P",
"occurrence": [
[
2000,
0.18049
],
[
2001,
0.23983
],
[
2002,
0.20366
],
[
2003,
0.24328
],
[
2004,
0.19619
],
[
2005,
0.21152
],
[
2006,
0.19864
],
[
2007,
0.16637
],
[
2008,
0.31594
],
[
2009,
0.22584
],
[
2010,
0.21946
],
[
2011,
0.15862
],
[
2012,
0.26
],
[
2014,
0.32323
]
],
"density": [
[
2000,
0.19308
],
[
2001,
0.249
],
[
2002,
0.17408
],
[
2003,
0.27098
],
[
2004,
0.17132
],
[
2005,
0.22165
],
[
2006,
0.19814
],
[
2007,
0.21692
],
[
2008,
0.26209
],
[
2009,
0.18821
],
[
2010,
0.16231
],
[
2011,
0.12221
],
[
2012,
0.22187
],
[
2014,
0.42749
]
],
"abundance": [
[
2000,
32692
],
[
2001,
42158
],
[
2002,
29473
],
[
2003,
45880
],
[
2004,
24275
],
[
2005,
37528
],
[
2006,
33547
],
[
2007,
36727
],
[
2008,
44376
],
[
2009,
31866
],
[
2010,
27482
],
[
2011,
20692
],
[
2012,
37565
],
[
2014,
72283
]
],
"biomass": [
[
2000,
25992
],
[
2001,
1.002e+05
],
[
2002,
60895
],
[
2003,
1.4839e+05
],
[
2004,
51286
],
[
2005,
59467
],
[
2006,
55957
],
[
2007,
76195
],
[
2008,
74856
],
[
2009,
49121
],
[
2010,
46972
],
[
2011,
41138
],
[
2012,
66532
],
[
2014,
1.0962e+05
]
],
"lbar": [
[
2000,
28.856
],
[
2001,
44.353
],
[
2002,
43.379
],
[
2003,
54.469
],
[
2004,
50.724
],
[
2005,
42.879
],
[
2006,
43.458
],
[
2007,
46.393
],
[
2008,
44.711
],
[
2009,
42.35
],
[
2010,
44.889
],
[
2011,
45.315
],
[
2012,
44.906
],
[
2014,
42.651
]
]
},
{
"family": "protected",
"species": "sca coer _P",
"occurrence": [
[
2000,
0.18067
],
[
2001,
0.17072
],
[
2002,
0.090822
],
[
2003,
0.12225
],
[
2004,
0.18703
],
[
2005,
0.065589
],
[
2006,
0.19983
],
[
2007,
0.20878
],
[
2008,
0.19546
],
[
2009,
0.18438
],
[
2010,
0.16713
],
[
2011,
0.22646
],
[
2012,
0.18485
],
[
2014,
0.29978
]
],
"density": [
[
2000,
0.19155
],
[
2001,
0.16791
],
[
2002,
0.092633
],
[
2003,
0.24101
],
[
2004,
0.19033
],
[
2005,
0.10168
],
[
2006,
0.27088
],
[
2007,
0.49369
],
[
2008,
0.2198
],
[
2009,
0.2495
],
[
2010,
0.14105
],
[
2011,
0.21935
],
[
2012,
0.26498
],
[
2014,
0.4659
]
],
"abundance": [
[
2000,
32431
],
[
2001,
28429
],
[
2002,
15684
],
[
2003,
40807
],
[
2004,
26970
],
[
2005,
17216
],
[
2006,
45864
],
[
2007,
83589
],
[
2008,
37216
],
[
2009,
42243
],
[
2010,
23882
],
[
2011,
37139
],
[
2012,
44865
],
[
2014,
78777
]
],
"biomass": [
[
2000,
20068
],
[
2001,
24981
],
[
2002,
25538
],
[
2003,
40194
],
[
2004,
16451
],
[
2005,
22059
],
[
2006,
34296
],
[
2007,
1.0298e+05
],
[
2008,
59850
],
[
2009,
45349
],
[
2010,
22236
],
[
2011,
41197
],
[
2012,
54674
],
[
2014,
99388
]
],
"lbar": [
[
2000,
24.2
],
[
2001,
19.923
],
[
2002,
38.066
],
[
2003,
33.638
],
[
2004,
27.605
],
[
2005,
39.184
],
[
2006,
23.761
],
[
2007,
35.775
],
[
2008,
38.835
],
[
2009,
28.538
],
[
2010,
30.438
],
[
2011,
29.812
],
[
2012,
30.802
],
[
2014,
33.325
]
]
},
{
"family": "protected",
"species": "sca coel _P",
"occurrence": [
[
2000,
0.11774
],
[
2001,
0.11674
],
[
2002,
0.13649
],
[
2003,
0.18938
],
[
2004,
0.12037
],
[
2005,
0.07191
],
[
2006,
0.11801
],
[
2007,
0.16811
],
[
2008,
0.13446
],
[
2009,
0.14561
],
[
2010,
0.091366
],
[
2011,
0.13574
],
[
2012,
0.093493
],
[
2014,
0.15237
]
],
"density": [
[
2000,
0.10991
],
[
2001,
0.16832
],
[
2002,
0.75144
],
[
2003,
0.29172
],
[
2004,
0.16631
],
[
2005,
0.20605
],
[
2006,
0.11559
],
[
2007,
0.16042
],
[
2008,
0.21185
],
[
2009,
0.22248
],
[
2010,
0.18568
],
[
2011,
0.33813
],
[
2012,
0.20867
],
[
2014,
0.49839
]
],
"abundance": [
[
2000,
18609
],
[
2001,
28499
],
[
2002,
1.2723e+05
],
[
2003,
49391
],
[
2004,
23566
],
[
2005,
34887
],
[
2006,
19571
],
[
2007,
27160
],
[
2008,
35869
],
[
2009,
37669
],
[
2010,
31439
],
[
2011,
57249
],
[
2012,
35330
],
[
2014,
84271
]
],
"biomass": [
[
2000,
21043
],
[
2001,
54408
],
[
2002,
3.1321e+05
],
[
2003,
1.3748e+05
],
[
2004,
35084
],
[
2005,
60698
],
[
2006,
43615
],
[
2007,
65296
],
[
2008,
75268
],
[
2009,
86011
],
[
2010,
34101
],
[
2011,
1.0024e+05
],
[
2012,
51362
],
[
2014,
1.9975e+05
]
],
"lbar": [
[
2000,
28.734
],
[
2001,
36.188
],
[
2002,
49.709
],
[
2003,
47.319
],
[
2004,
30.697
],
[
2005,
36.611
],
[
2006,
37.17
],
[
2007,
46.313
],
[
2008,
38.608
],
[
2009,
43.572
],
[
2010,
38.864
],
[
2011,
41.511
],
[
2012,
37.991
],
[
2014,
55.567
]
]
},
{
"family": "protected",
"species": "hae plum _P",
"occurrence": [
[
2000,
0.68401
],
[
2001,
0.69703
],
[
2002,
0.61856
],
[
2003,
0.79089
],
[
2004,
0.74529
],
[
2005,
0.72549
],
[
2006,
0.68738
],
[
2007,
0.80475
],
[
2008,
0.79122
],
[
2009,
0.71882
],
[
2010,
0.73566
],
[
2011,
0.72849
],
[
2012,
0.78339
],
[
2014,
0.67913
]
],
"density": [
[
2000,
6.3506
],
[
2001,
5.9849
],
[
2002,
5.2284
],
[
2003,
10.018
],
[
2004,
11.465
],
[
2005,
7.0914
],
[
2006,
7.6063
],
[
2007,
6.9991
],
[
2008,
8.6718
],
[
2009,
7.0654
],
[
2010,
7.0205
],
[
2011,
12.178
],
[
2012,
7.0439
],
[
2014,
9.4914
]
],
"abundance": [
[
2000,
1.0752e+06
],
[
2001,
1.0133e+06
],
[
2002,
8.8523e+05
],
[
2003,
1.6962e+06
],
[
2004,
1.6245e+06
],
[
2005,
1.2007e+06
],
[
2006,
1.2878e+06
],
[
2007,
1.185e+06
],
[
2008,
1.4682e+06
],
[
2009,
1.1963e+06
],
[
2010,
1.1887e+06
],
[
2011,
2.0619e+06
],
[
2012,
1.1926e+06
],
[
2014,
1.6049e+06
]
],
"biomass": [
[
2000,
1.8425e+05
],
[
2001,
2.5196e+05
],
[
2002,
2.8088e+05
],
[
2003,
3.3043e+05
],
[
2004,
2.6287e+05
],
[
2005,
1.0704e+05
],
[
2006,
1.3859e+05
],
[
2007,
2.3722e+05
],
[
2008,
1.5497e+05
],
[
2009,
1.5421e+05
],
[
2010,
1.058e+05
],
[
2011,
2.2219e+05
],
[
2012,
1.2043e+05
],
[
2014,
2.4445e+05
]
],
"lbar": [
[
2000,
18.938
],
[
2001,
19.398
],
[
2002,
19.744
],
[
2003,
18.345
],
[
2004,
19.213
],
[
2005,
16.188
],
[
2006,
16.92
],
[
2007,
18.731
],
[
2008,
16.266
],
[
2009,
16.371
],
[
2010,
15.58
],
[
2011,
16.44
],
[
2012,
16.907
],
[
2014,
18.606
]
]
},
{
"family": "protected",
"species": "hae sciu _P",
"occurrence": [
[
2000,
0.46473
],
[
2001,
0.4249
],
[
2002,
0.38805
],
[
2003,
0.44637
],
[
2004,
0.49963
],
[
2005,
0.47873
],
[
2006,
0.37787
],
[
2007,
0.38862
],
[
2008,
0.44176
],
[
2009,
0.45848
],
[
2010,
0.36757
],
[
2011,
0.40897
],
[
2012,
0.42411
],
[
2014,
0.34192
]
],
"density": [
[
2000,
9.5389
],
[
2001,
9.612
],
[
2002,
5.9884
],
[
2003,
10.871
],
[
2004,
5.3068
],
[
2005,
7.6466
],
[
2006,
4.678
],
[
2007,
5.6274
],
[
2008,
6.9627
],
[
2009,
5.7293
],
[
2010,
2.4138
],
[
2011,
4.5461
],
[
2012,
2.4896
],
[
2014,
7.9713
]
],
"abundance": [
[
2000,
1.615e+06
],
[
2001,
1.6274e+06
],
[
2002,
1.0139e+06
],
[
2003,
1.8406e+06
],
[
2004,
7.5195e+05
],
[
2005,
1.2947e+06
],
[
2006,
7.9204e+05
],
[
2007,
9.5279e+05
],
[
2008,
1.1789e+06
],
[
2009,
9.7005e+05
],
[
2010,
4.0868e+05
],
[
2011,
7.6971e+05
],
[
2012,
4.2152e+05
],
[
2014,
1.3478e+06
]
],
"biomass": [
[
2000,
3.3476e+05
],
[
2001,
2.7067e+05
],
[
2002,
2.5343e+05
],
[
2003,
3.2372e+05
],
[
2004,
1.6689e+05
],
[
2005,
1.4419e+05
],
[
2006,
1.0101e+05
],
[
2007,
1.8671e+05
],
[
2008,
1.4892e+05
],
[
2009,
1.6678e+05
],
[
2010,
35700
],
[
2011,
1.1702e+05
],
[
2012,
63007
],
[
2014,
2.8636e+05
]
],
"lbar": [
[
2000,
20.271
],
[
2001,
16.456
],
[
2002,
19.805
],
[
2003,
18.431
],
[
2004,
20.764
],
[
2005,
16.297
],
[
2006,
16.987
],
[
2007,
20.089
],
[
2008,
17.46
],
[
2009,
18.32
],
[
2010,
16.673
],
[
2011,
18.842
],
[
2012,
18.196
],
[
2014,
20.425
]
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment