Skip to content

Instantly share code, notes, and snippets.

@stepheneb
Last active January 14, 2020 16:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stepheneb/1184766 to your computer and use it in GitHub Desktop.
Save stepheneb/1184766 to your computer and use it in GitHub Desktop.
D3 Example: Global Surface Temperature: 500 ... 2009

D3 Example: Global Surface Temperature: 500 ... 2009

This example is based on the Mann surface temperature reconstruction, 500-2009. Mann's original paper Global Signatures and Dynamical Origins of the Little Ice Age and Medieval Climate Anomaly.

Mann's data are the temperature anomalies from the 30 year global average from 1961 through 1999 of 14.0 degrees C developed by Jones et al, 1999 SURFACE AIR TEMPERATURE AND ITS CHANGES OVER THE PAST 150 YEARS.

Graph Features

  • Drag on the canvas to translate/pan the graph.
  • double-click on the canvas to zoom in
  • shift-double-click on the canvas to zoom out
  • Drag on one of the X or Y axis numeric labels to re-scale that axis
  • click on a data point to select it
  • drag a selected data point to change it's value
  • enter the delete or backspace key to delete a selected data point
  • drag a selected data point to change it's value
  • hold the ALT/Option key down and click an empty area of the graph to add a data point

Dragging to re-scale the axes does not yet work with touch events.

source: gist.github.com/gists/1184766

(function(){if (!Date.now) Date.now = function() {
return +new Date;
};
try {
document.createElement("div").style.setProperty("opacity", 0, "");
} catch (error) {
var d3_style_prototype = CSSStyleDeclaration.prototype,
d3_style_setProperty = d3_style_prototype.setProperty;
d3_style_prototype.setProperty = function(name, value, priority) {
d3_style_setProperty.call(this, name, value + "", priority);
};
}
d3 = {version: "2.4.5"}; // semver
var d3_array = d3_arraySlice; // conversion for NodeLists
function d3_arrayCopy(pseudoarray) {
var i = -1, n = pseudoarray.length, array = [];
while (++i < n) array.push(pseudoarray[i]);
return array;
}
function d3_arraySlice(pseudoarray) {
return Array.prototype.slice.call(pseudoarray);
}
try {
d3_array(document.documentElement.childNodes)[0].nodeType;
} catch(e) {
d3_array = d3_arrayCopy;
}
var d3_arraySubclass = [].__proto__?
// Until ECMAScript supports array subclassing, prototype injection works well.
function(array, prototype) {
array.__proto__ = prototype;
}:
// And if your browser doesn't support __proto__, we'll use direct extension.
function(array, prototype) {
for (var property in prototype) array[property] = prototype[property];
};
function d3_this() {
return this;
}
d3.functor = function(v) {
return typeof v === "function" ? v : function() { return v; };
};
// A getter-setter method that preserves the appropriate `this` context.
d3.rebind = function(object, method) {
return function() {
var x = method.apply(object, arguments);
return arguments.length ? object : x;
};
};
d3.ascending = function(a, b) {
return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
};
d3.descending = function(a, b) {
return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
};
d3.mean = function(array, f) {
var n = array.length,
a,
m = 0,
i = -1,
j = 0;
if (arguments.length === 1) {
while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j;
} else {
while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j;
}
return j ? m : undefined;
};
d3.median = function(array, f) {
if (arguments.length > 1) array = array.map(f);
array = array.filter(d3_number);
return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined;
};
d3.min = function(array, f) {
var i = -1,
n = array.length,
a,
b;
if (arguments.length === 1) {
while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;
while (++i < n) if ((b = array[i]) != null && a > b) a = b;
} else {
while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;
while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b;
}
return a;
};
d3.max = function(array, f) {
var i = -1,
n = array.length,
a,
b;
if (arguments.length === 1) {
while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;
while (++i < n) if ((b = array[i]) != null && b > a) a = b;
} else {
while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;
while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b;
}
return a;
};
function d3_number(x) {
return x != null && !isNaN(x);
}
d3.sum = function(array, f) {
var s = 0,
n = array.length,
a,
i = -1;
if (arguments.length === 1) {
while (++i < n) if (!isNaN(a = +array[i])) s += a;
} else {
while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a;
}
return s;
};
// R-7 per <http://en.wikipedia.org/wiki/Quantile>
d3.quantile = function(values, p) {
var H = (values.length - 1) * p + 1,
h = Math.floor(H),
v = values[h - 1],
e = H - h;
return e ? v + e * (values[h] - v) : v;
};
d3.zip = function() {
if (!(n = arguments.length)) return [];
for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m;) {
for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n;) {
zip[j] = arguments[j][i];
}
}
return zips;
};
function d3_zipLength(d) {
return d.length;
}
// Locate the insertion point for x in a to maintain sorted order. The
// arguments lo and hi may be used to specify a subset of the array which should
// be considered; by default the entire array is used. If x is already present
// in a, the insertion point will be before (to the left of) any existing
// entries. The return value is suitable for use as the first argument to
// `array.splice` assuming that a is already sorted.
//
// The returned insertion point i partitions the array a into two halves so that
// all v < x for v in a[lo:i] for the left side and all v >= x for v in a[i:hi]
// for the right side.
d3.bisectLeft = function(a, x, lo, hi) {
if (arguments.length < 3) lo = 0;
if (arguments.length < 4) hi = a.length;
while (lo < hi) {
var mid = (lo + hi) >> 1;
if (a[mid] < x) lo = mid + 1;
else hi = mid;
}
return lo;
};
// Similar to bisectLeft, but returns an insertion point which comes after (to
// the right of) any existing entries of x in a.
//
// The returned insertion point i partitions the array into two halves so that
// all v <= x for v in a[lo:i] for the left side and all v > x for v in a[i:hi]
// for the right side.
d3.bisect =
d3.bisectRight = function(a, x, lo, hi) {
if (arguments.length < 3) lo = 0;
if (arguments.length < 4) hi = a.length;
while (lo < hi) {
var mid = (lo + hi) >> 1;
if (x < a[mid]) hi = mid;
else lo = mid + 1;
}
return lo;
};
d3.first = function(array, f) {
var i = 0,
n = array.length,
a = array[0],
b;
if (arguments.length === 1) f = d3.ascending;
while (++i < n) {
if (f.call(array, a, b = array[i]) > 0) {
a = b;
}
}
return a;
};
d3.last = function(array, f) {
var i = 0,
n = array.length,
a = array[0],
b;
if (arguments.length === 1) f = d3.ascending;
while (++i < n) {
if (f.call(array, a, b = array[i]) <= 0) {
a = b;
}
}
return a;
};
d3.nest = function() {
var nest = {},
keys = [],
sortKeys = [],
sortValues,
rollup;
function map(array, depth) {
if (depth >= keys.length) return rollup
? rollup.call(nest, array) : (sortValues
? array.sort(sortValues)
: array);
var i = -1,
n = array.length,
key = keys[depth++],
keyValue,
object,
o = {};
while (++i < n) {
if ((keyValue = key(object = array[i])) in o) {
o[keyValue].push(object);
} else {
o[keyValue] = [object];
}
}
for (keyValue in o) {
o[keyValue] = map(o[keyValue], depth);
}
return o;
}
function entries(map, depth) {
if (depth >= keys.length) return map;
var a = [],
sortKey = sortKeys[depth++],
key;
for (key in map) {
a.push({key: key, values: entries(map[key], depth)});
}
if (sortKey) a.sort(function(a, b) {
return sortKey(a.key, b.key);
});
return a;
}
nest.map = function(array) {
return map(array, 0);
};
nest.entries = function(array) {
return entries(map(array, 0), 0);
};
nest.key = function(d) {
keys.push(d);
return nest;
};
// Specifies the order for the most-recently specified key.
// Note: only applies to entries. Map keys are unordered!
nest.sortKeys = function(order) {
sortKeys[keys.length - 1] = order;
return nest;
};
// Specifies the order for leaf values.
// Applies to both maps and entries array.
nest.sortValues = function(order) {
sortValues = order;
return nest;
};
nest.rollup = function(f) {
rollup = f;
return nest;
};
return nest;
};
d3.keys = function(map) {
var keys = [];
for (var key in map) keys.push(key);
return keys;
};
d3.values = function(map) {
var values = [];
for (var key in map) values.push(map[key]);
return values;
};
d3.entries = function(map) {
var entries = [];
for (var key in map) entries.push({key: key, value: map[key]});
return entries;
};
d3.permute = function(array, indexes) {
var permutes = [],
i = -1,
n = indexes.length;
while (++i < n) permutes[i] = array[indexes[i]];
return permutes;
};
d3.merge = function(arrays) {
return Array.prototype.concat.apply([], arrays);
};
d3.split = function(array, f) {
var arrays = [],
values = [],
value,
i = -1,
n = array.length;
if (arguments.length < 2) f = d3_splitter;
while (++i < n) {
if (f.call(values, value = array[i], i)) {
values = [];
} else {
if (!values.length) arrays.push(values);
values.push(value);
}
}
return arrays;
};
function d3_splitter(d) {
return d == null;
}
function d3_collapse(s) {
return s.replace(/(^\s+)|(\s+$)/g, "").replace(/\s+/g, " ");
}
/**
* @param {number} start
* @param {number=} stop
* @param {number=} step
*/
d3.range = function(start, stop, step) {
if (arguments.length < 3) {
step = 1;
if (arguments.length < 2) {
stop = start;
start = 0;
}
}
if ((stop - start) / step == Infinity) throw new Error("infinite range");
var range = [],
i = -1,
j;
if (step < 0) while ((j = start + step * ++i) > stop) range.push(j);
else while ((j = start + step * ++i) < stop) range.push(j);
return range;
};
d3.requote = function(s) {
return s.replace(d3_requote_re, "\\$&");
};
var d3_requote_re = /[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g;
d3.round = function(x, n) {
return n
? Math.round(x * Math.pow(10, n)) * Math.pow(10, -n)
: Math.round(x);
};
d3.xhr = function(url, mime, callback) {
var req = new XMLHttpRequest;
if (arguments.length < 3) callback = mime;
else if (mime && req.overrideMimeType) req.overrideMimeType(mime);
req.open("GET", url, true);
req.onreadystatechange = function() {
if (req.readyState === 4) callback(req.status < 300 ? req : null);
};
req.send(null);
};
d3.text = function(url, mime, callback) {
function ready(req) {
callback(req && req.responseText);
}
if (arguments.length < 3) {
callback = mime;
mime = null;
}
d3.xhr(url, mime, ready);
};
d3.json = function(url, callback) {
d3.text(url, "application/json", function(text) {
callback(text ? JSON.parse(text) : null);
});
};
d3.html = function(url, callback) {
d3.text(url, "text/html", function(text) {
if (text != null) { // Treat empty string as valid HTML.
var range = document.createRange();
range.selectNode(document.body);
text = range.createContextualFragment(text);
}
callback(text);
});
};
d3.xml = function(url, mime, callback) {
function ready(req) {
callback(req && req.responseXML);
}
if (arguments.length < 3) {
callback = mime;
mime = null;
}
d3.xhr(url, mime, ready);
};
d3.ns = {
prefix: {
svg: "http://www.w3.org/2000/svg",
xhtml: "http://www.w3.org/1999/xhtml",
xlink: "http://www.w3.org/1999/xlink",
xml: "http://www.w3.org/XML/1998/namespace",
xmlns: "http://www.w3.org/2000/xmlns/"
},
qualify: function(name) {
var i = name.indexOf(":");
return i < 0 ? name : {
space: d3.ns.prefix[name.substring(0, i)],
local: name.substring(i + 1)
};
}
};
/** @param {...string} types */
d3.dispatch = function(types) {
var dispatch = {},
type;
for (var i = 0, n = arguments.length; i < n; i++) {
type = arguments[i];
dispatch[type] = d3_dispatch(type);
}
return dispatch;
};
function d3_dispatch(type) {
var dispatch = {},
listeners = [];
dispatch.add = function(listener) {
for (var i = 0; i < listeners.length; i++) {
if (listeners[i].listener == listener) return dispatch; // already registered
}
listeners.push({listener: listener, on: true});
return dispatch;
};
dispatch.remove = function(listener) {
for (var i = 0; i < listeners.length; i++) {
var l = listeners[i];
if (l.listener == listener) {
l.on = false;
listeners = listeners.slice(0, i).concat(listeners.slice(i + 1));
break;
}
}
return dispatch;
};
dispatch.dispatch = function() {
var ls = listeners; // defensive reference
for (var i = 0, n = ls.length; i < n; i++) {
var l = ls[i];
if (l.on) l.listener.apply(this, arguments);
}
};
return dispatch;
};
// TODO align
d3.format = function(specifier) {
var match = d3_format_re.exec(specifier),
fill = match[1] || " ",
sign = match[3] || "",
zfill = match[5],
width = +match[6],
comma = match[7],
precision = match[8],
type = match[9],
scale = 1,
suffix = "",
integer = false;
if (precision) precision = +precision.substring(1);
if (zfill) {
fill = "0"; // TODO align = "=";
if (comma) width -= Math.floor((width - 1) / 4);
}
switch (type) {
case "n": comma = true; type = "g"; break;
case "%": scale = 100; suffix = "%"; type = "f"; break;
case "p": scale = 100; suffix = "%"; type = "r"; break;
case "d": integer = true; precision = 0; break;
case "s": scale = -1; type = "r"; break;
}
// If no precision is specified for r, fallback to general notation.
if (type == "r" && !precision) type = "g";
type = d3_format_types[type] || d3_format_typeDefault;
return function(value) {
// Return the empty string for floats formatted as ints.
if (integer && (value % 1)) return "";
// Convert negative to positive, and record the sign prefix.
var negative = (value < 0) && (value = -value) ? "\u2212" : sign;
// Apply the scale, computing it from the value's exponent for si format.
if (scale < 0) {
var prefix = d3.formatPrefix(value, precision);
value *= prefix.scale;
suffix = prefix.symbol;
} else {
value *= scale;
}
// Convert to the desired precision.
value = type(value, precision);
// If the fill character is 0, the sign and group is applied after the fill.
if (zfill) {
var length = value.length + negative.length;
if (length < width) value = new Array(width - length + 1).join(fill) + value;
if (comma) value = d3_format_group(value);
value = negative + value;
}
// Otherwise (e.g., space-filling), the sign and group is applied before.
else {
if (comma) value = d3_format_group(value);
value = negative + value;
var length = value.length;
if (length < width) value = new Array(width - length + 1).join(fill) + value;
}
return value + suffix;
};
};
// [[fill]align][sign][#][0][width][,][.precision][type]
var d3_format_re = /(?:([^{])?([<>=^]))?([+\- ])?(#)?(0)?([0-9]+)?(,)?(\.[0-9]+)?([a-zA-Z%])?/;
var d3_format_types = {
g: function(x, p) { return x.toPrecision(p); },
e: function(x, p) { return x.toExponential(p); },
f: function(x, p) { return x.toFixed(p); },
r: function(x, p) { return d3.round(x, p = d3_format_precision(x, p)).toFixed(Math.max(0, Math.min(20, p))); }
};
function d3_format_precision(x, p) {
return p - (x ? 1 + Math.floor(Math.log(x + Math.pow(10, 1 + Math.floor(Math.log(x) / Math.LN10) - p)) / Math.LN10) : 1);
}
function d3_format_typeDefault(x) {
return x + "";
}
// Apply comma grouping for thousands.
function d3_format_group(value) {
var i = value.lastIndexOf("."),
f = i >= 0 ? value.substring(i) : (i = value.length, ""),
t = [];
while (i > 0) t.push(value.substring(i -= 3, i + 3));
return t.reverse().join(",") + f;
}
var d3_formatPrefixes = ["y","z","a","f","p","n","μ","m","","k","M","G","T","P","E","Z","Y"].map(d3_formatPrefix);
d3.formatPrefix = function(value, precision) {
var i = 0;
if (value) {
if (value < 0) value *= -1;
if (precision) value = d3.round(value, d3_format_precision(value, precision));
i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10);
i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3));
}
return d3_formatPrefixes[8 + i / 3];
};
function d3_formatPrefix(d, i) {
return {
scale: Math.pow(10, (8 - i) * 3),
symbol: d
};
}
/*
* TERMS OF USE - EASING EQUATIONS
*
* Open source under the BSD License.
*
* Copyright 2001 Robert Penner
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* - Neither the name of the author nor the names of contributors may be used to
* endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
var d3_ease_quad = d3_ease_poly(2),
d3_ease_cubic = d3_ease_poly(3);
var d3_ease = {
linear: function() { return d3_ease_linear; },
poly: d3_ease_poly,
quad: function() { return d3_ease_quad; },
cubic: function() { return d3_ease_cubic; },
sin: function() { return d3_ease_sin; },
exp: function() { return d3_ease_exp; },
circle: function() { return d3_ease_circle; },
elastic: d3_ease_elastic,
back: d3_ease_back,
bounce: function() { return d3_ease_bounce; }
};
var d3_ease_mode = {
"in": function(f) { return f; },
"out": d3_ease_reverse,
"in-out": d3_ease_reflect,
"out-in": function(f) { return d3_ease_reflect(d3_ease_reverse(f)); }
};
d3.ease = function(name) {
var i = name.indexOf("-"),
t = i >= 0 ? name.substring(0, i) : name,
m = i >= 0 ? name.substring(i + 1) : "in";
return d3_ease_clamp(d3_ease_mode[m](d3_ease[t].apply(null, Array.prototype.slice.call(arguments, 1))));
};
function d3_ease_clamp(f) {
return function(t) {
return t <= 0 ? 0 : t >= 1 ? 1 : f(t);
};
}
function d3_ease_reverse(f) {
return function(t) {
return 1 - f(1 - t);
};
}
function d3_ease_reflect(f) {
return function(t) {
return .5 * (t < .5 ? f(2 * t) : (2 - f(2 - 2 * t)));
};
}
function d3_ease_linear(t) {
return t;
}
function d3_ease_poly(e) {
return function(t) {
return Math.pow(t, e);
}
}
function d3_ease_sin(t) {
return 1 - Math.cos(t * Math.PI / 2);
}
function d3_ease_exp(t) {
return Math.pow(2, 10 * (t - 1));
}
function d3_ease_circle(t) {
return 1 - Math.sqrt(1 - t * t);
}
function d3_ease_elastic(a, p) {
var s;
if (arguments.length < 2) p = 0.45;
if (arguments.length < 1) { a = 1; s = p / 4; }
else s = p / (2 * Math.PI) * Math.asin(1 / a);
return function(t) {
return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * Math.PI / p);
};
}
function d3_ease_back(s) {
if (!s) s = 1.70158;
return function(t) {
return t * t * ((s + 1) * t - s);
};
}
function d3_ease_bounce(t) {
return t < 1 / 2.75 ? 7.5625 * t * t
: t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75
: t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375
: 7.5625 * (t -= 2.625 / 2.75) * t + .984375;
}
d3.event = null;
d3.interpolate = function(a, b) {
var i = d3.interpolators.length, f;
while (--i >= 0 && !(f = d3.interpolators[i](a, b)));
return f;
};
d3.interpolateNumber = function(a, b) {
b -= a;
return function(t) { return a + b * t; };
};
d3.interpolateRound = function(a, b) {
b -= a;
return function(t) { return Math.round(a + b * t); };
};
d3.interpolateString = function(a, b) {
var m, // current match
i, // current index
j, // current index (for coallescing)
s0 = 0, // start index of current string prefix
s1 = 0, // end index of current string prefix
s = [], // string constants and placeholders
q = [], // number interpolators
n, // q.length
o;
// Reset our regular expression!
d3_interpolate_number.lastIndex = 0;
// Find all numbers in b.
for (i = 0; m = d3_interpolate_number.exec(b); ++i) {
if (m.index) s.push(b.substring(s0, s1 = m.index));
q.push({i: s.length, x: m[0]});
s.push(null);
s0 = d3_interpolate_number.lastIndex;
}
if (s0 < b.length) s.push(b.substring(s0));
// Find all numbers in a.
for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) {
o = q[i];
if (o.x == m[0]) { // The numbers match, so coallesce.
if (o.i) {
if (s[o.i + 1] == null) { // This match is followed by another number.
s[o.i - 1] += o.x;
s.splice(o.i, 1);
for (j = i + 1; j < n; ++j) q[j].i--;
} else { // This match is followed by a string, so coallesce twice.
s[o.i - 1] += o.x + s[o.i + 1];
s.splice(o.i, 2);
for (j = i + 1; j < n; ++j) q[j].i -= 2;
}
} else {
if (s[o.i + 1] == null) { // This match is followed by another number.
s[o.i] = o.x;
} else { // This match is followed by a string, so coallesce twice.
s[o.i] = o.x + s[o.i + 1];
s.splice(o.i + 1, 1);
for (j = i + 1; j < n; ++j) q[j].i--;
}
}
q.splice(i, 1);
n--;
i--;
} else {
o.x = d3.interpolateNumber(parseFloat(m[0]), parseFloat(o.x));
}
}
// Remove any numbers in b not found in a.
while (i < n) {
o = q.pop();
if (s[o.i + 1] == null) { // This match is followed by another number.
s[o.i] = o.x;
} else { // This match is followed by a string, so coallesce twice.
s[o.i] = o.x + s[o.i + 1];
s.splice(o.i + 1, 1);
}
n--;
}
// Special optimization for only a single match.
if (s.length === 1) {
return s[0] == null ? q[0].x : function() { return b; };
}
// Otherwise, interpolate each of the numbers and rejoin the string.
return function(t) {
for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t);
return s.join("");
};
};
d3.interpolateRgb = function(a, b) {
a = d3.rgb(a);
b = d3.rgb(b);
var ar = a.r,
ag = a.g,
ab = a.b,
br = b.r - ar,
bg = b.g - ag,
bb = b.b - ab;
return function(t) {
return "#"
+ d3_rgb_hex(Math.round(ar + br * t))
+ d3_rgb_hex(Math.round(ag + bg * t))
+ d3_rgb_hex(Math.round(ab + bb * t));
};
};
// interpolates HSL space, but outputs RGB string (for compatibility)
d3.interpolateHsl = function(a, b) {
a = d3.hsl(a);
b = d3.hsl(b);
var h0 = a.h,
s0 = a.s,
l0 = a.l,
h1 = b.h - h0,
s1 = b.s - s0,
l1 = b.l - l0;
return function(t) {
return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t).toString();
};
};
d3.interpolateArray = function(a, b) {
var x = [],
c = [],
na = a.length,
nb = b.length,
n0 = Math.min(a.length, b.length),
i;
for (i = 0; i < n0; ++i) x.push(d3.interpolate(a[i], b[i]));
for (; i < na; ++i) c[i] = a[i];
for (; i < nb; ++i) c[i] = b[i];
return function(t) {
for (i = 0; i < n0; ++i) c[i] = x[i](t);
return c;
};
};
d3.interpolateObject = function(a, b) {
var i = {},
c = {},
k;
for (k in a) {
if (k in b) {
i[k] = d3_interpolateByName(k)(a[k], b[k]);
} else {
c[k] = a[k];
}
}
for (k in b) {
if (!(k in a)) {
c[k] = b[k];
}
}
return function(t) {
for (k in i) c[k] = i[k](t);
return c;
};
}
var d3_interpolate_number = /[-+]?(?:\d+\.\d+|\d+\.|\.\d+|\d+)(?:[eE][-]?\d+)?/g,
d3_interpolate_rgb = {background: 1, fill: 1, stroke: 1};
function d3_interpolateByName(n) {
return n in d3_interpolate_rgb || /\bcolor\b/.test(n)
? d3.interpolateRgb
: d3.interpolate;
}
d3.interpolators = [
d3.interpolateObject,
function(a, b) { return (b instanceof Array) && d3.interpolateArray(a, b); },
function(a, b) { return (typeof b === "string") && d3.interpolateString(String(a), b); },
function(a, b) { return (typeof b === "string" ? b in d3_rgb_names || /^(#|rgb\(|hsl\()/.test(b) : b instanceof d3_Rgb || b instanceof d3_Hsl) && d3.interpolateRgb(String(a), b); },
function(a, b) { return (typeof b === "number") && d3.interpolateNumber(+a, b); }
];
function d3_uninterpolateNumber(a, b) {
b = b - (a = +a) ? 1 / (b - a) : 0;
return function(x) { return (x - a) * b; };
}
function d3_uninterpolateClamp(a, b) {
b = b - (a = +a) ? 1 / (b - a) : 0;
return function(x) { return Math.max(0, Math.min(1, (x - a) * b)); };
}
d3.rgb = function(r, g, b) {
return arguments.length === 1
? (r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b)
: d3_rgb_parse("" + r, d3_rgb, d3_hsl_rgb))
: d3_rgb(~~r, ~~g, ~~b);
};
function d3_rgb(r, g, b) {
return new d3_Rgb(r, g, b);
}
function d3_Rgb(r, g, b) {
this.r = r;
this.g = g;
this.b = b;
}
d3_Rgb.prototype.brighter = function(k) {
k = Math.pow(0.7, arguments.length ? k : 1);
var r = this.r,
g = this.g,
b = this.b,
i = 30;
if (!r && !g && !b) return d3_rgb(i, i, i);
if (r && r < i) r = i;
if (g && g < i) g = i;
if (b && b < i) b = i;
return d3_rgb(
Math.min(255, Math.floor(r / k)),
Math.min(255, Math.floor(g / k)),
Math.min(255, Math.floor(b / k)));
};
d3_Rgb.prototype.darker = function(k) {
k = Math.pow(0.7, arguments.length ? k : 1);
return d3_rgb(
Math.floor(k * this.r),
Math.floor(k * this.g),
Math.floor(k * this.b));
};
d3_Rgb.prototype.hsl = function() {
return d3_rgb_hsl(this.r, this.g, this.b);
};
d3_Rgb.prototype.toString = function() {
return "#" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b);
};
function d3_rgb_hex(v) {
return v < 0x10
? "0" + Math.max(0, v).toString(16)
: Math.min(255, v).toString(16);
}
function d3_rgb_parse(format, rgb, hsl) {
var r = 0, // red channel; int in [0, 255]
g = 0, // green channel; int in [0, 255]
b = 0, // blue channel; int in [0, 255]
m1, // CSS color specification match
m2, // CSS color specification type (e.g., rgb)
name;
/* Handle hsl, rgb. */
m1 = /([a-z]+)\((.*)\)/i.exec(format);
if (m1) {
m2 = m1[2].split(",");
switch (m1[1]) {
case "hsl": {
return hsl(
parseFloat(m2[0]), // degrees
parseFloat(m2[1]) / 100, // percentage
parseFloat(m2[2]) / 100 // percentage
);
}
case "rgb": {
return rgb(
d3_rgb_parseNumber(m2[0]),
d3_rgb_parseNumber(m2[1]),
d3_rgb_parseNumber(m2[2])
);
}
}
}
/* Named colors. */
if (name = d3_rgb_names[format]) return rgb(name.r, name.g, name.b);
/* Hexadecimal colors: #rgb and #rrggbb. */
if (format != null && format.charAt(0) === "#") {
if (format.length === 4) {
r = format.charAt(1); r += r;
g = format.charAt(2); g += g;
b = format.charAt(3); b += b;
} else if (format.length === 7) {
r = format.substring(1, 3);
g = format.substring(3, 5);
b = format.substring(5, 7);
}
r = parseInt(r, 16);
g = parseInt(g, 16);
b = parseInt(b, 16);
}
return rgb(r, g, b);
}
function d3_rgb_hsl(r, g, b) {
var min = Math.min(r /= 255, g /= 255, b /= 255),
max = Math.max(r, g, b),
d = max - min,
h,
s,
l = (max + min) / 2;
if (d) {
s = l < .5 ? d / (max + min) : d / (2 - max - min);
if (r == max) h = (g - b) / d + (g < b ? 6 : 0);
else if (g == max) h = (b - r) / d + 2;
else h = (r - g) / d + 4;
h *= 60;
} else {
s = h = 0;
}
return d3_hsl(h, s, l);
}
function d3_rgb_parseNumber(c) { // either integer or percentage
var f = parseFloat(c);
return c.charAt(c.length - 1) === "%" ? Math.round(f * 2.55) : f;
}
var d3_rgb_names = {
aliceblue: "#f0f8ff",
antiquewhite: "#faebd7",
aqua: "#00ffff",
aquamarine: "#7fffd4",
azure: "#f0ffff",
beige: "#f5f5dc",
bisque: "#ffe4c4",
black: "#000000",
blanchedalmond: "#ffebcd",
blue: "#0000ff",
blueviolet: "#8a2be2",
brown: "#a52a2a",
burlywood: "#deb887",
cadetblue: "#5f9ea0",
chartreuse: "#7fff00",
chocolate: "#d2691e",
coral: "#ff7f50",
cornflowerblue: "#6495ed",
cornsilk: "#fff8dc",
crimson: "#dc143c",
cyan: "#00ffff",
darkblue: "#00008b",
darkcyan: "#008b8b",
darkgoldenrod: "#b8860b",
darkgray: "#a9a9a9",
darkgreen: "#006400",
darkgrey: "#a9a9a9",
darkkhaki: "#bdb76b",
darkmagenta: "#8b008b",
darkolivegreen: "#556b2f",
darkorange: "#ff8c00",
darkorchid: "#9932cc",
darkred: "#8b0000",
darksalmon: "#e9967a",
darkseagreen: "#8fbc8f",
darkslateblue: "#483d8b",
darkslategray: "#2f4f4f",
darkslategrey: "#2f4f4f",
darkturquoise: "#00ced1",
darkviolet: "#9400d3",
deeppink: "#ff1493",
deepskyblue: "#00bfff",
dimgray: "#696969",
dimgrey: "#696969",
dodgerblue: "#1e90ff",
firebrick: "#b22222",
floralwhite: "#fffaf0",
forestgreen: "#228b22",
fuchsia: "#ff00ff",
gainsboro: "#dcdcdc",
ghostwhite: "#f8f8ff",
gold: "#ffd700",
goldenrod: "#daa520",
gray: "#808080",
green: "#008000",
greenyellow: "#adff2f",
grey: "#808080",
honeydew: "#f0fff0",
hotpink: "#ff69b4",
indianred: "#cd5c5c",
indigo: "#4b0082",
ivory: "#fffff0",
khaki: "#f0e68c",
lavender: "#e6e6fa",
lavenderblush: "#fff0f5",
lawngreen: "#7cfc00",
lemonchiffon: "#fffacd",
lightblue: "#add8e6",
lightcoral: "#f08080",
lightcyan: "#e0ffff",
lightgoldenrodyellow: "#fafad2",
lightgray: "#d3d3d3",
lightgreen: "#90ee90",
lightgrey: "#d3d3d3",
lightpink: "#ffb6c1",
lightsalmon: "#ffa07a",
lightseagreen: "#20b2aa",
lightskyblue: "#87cefa",
lightslategray: "#778899",
lightslategrey: "#778899",
lightsteelblue: "#b0c4de",
lightyellow: "#ffffe0",
lime: "#00ff00",
limegreen: "#32cd32",
linen: "#faf0e6",
magenta: "#ff00ff",
maroon: "#800000",
mediumaquamarine: "#66cdaa",
mediumblue: "#0000cd",
mediumorchid: "#ba55d3",
mediumpurple: "#9370db",
mediumseagreen: "#3cb371",
mediumslateblue: "#7b68ee",
mediumspringgreen: "#00fa9a",
mediumturquoise: "#48d1cc",
mediumvioletred: "#c71585",
midnightblue: "#191970",
mintcream: "#f5fffa",
mistyrose: "#ffe4e1",
moccasin: "#ffe4b5",
navajowhite: "#ffdead",
navy: "#000080",
oldlace: "#fdf5e6",
olive: "#808000",
olivedrab: "#6b8e23",
orange: "#ffa500",
orangered: "#ff4500",
orchid: "#da70d6",
palegoldenrod: "#eee8aa",
palegreen: "#98fb98",
paleturquoise: "#afeeee",
palevioletred: "#db7093",
papayawhip: "#ffefd5",
peachpuff: "#ffdab9",
peru: "#cd853f",
pink: "#ffc0cb",
plum: "#dda0dd",
powderblue: "#b0e0e6",
purple: "#800080",
red: "#ff0000",
rosybrown: "#bc8f8f",
royalblue: "#4169e1",
saddlebrown: "#8b4513",
salmon: "#fa8072",
sandybrown: "#f4a460",
seagreen: "#2e8b57",
seashell: "#fff5ee",
sienna: "#a0522d",
silver: "#c0c0c0",
skyblue: "#87ceeb",
slateblue: "#6a5acd",
slategray: "#708090",
slategrey: "#708090",
snow: "#fffafa",
springgreen: "#00ff7f",
steelblue: "#4682b4",
tan: "#d2b48c",
teal: "#008080",
thistle: "#d8bfd8",
tomato: "#ff6347",
turquoise: "#40e0d0",
violet: "#ee82ee",
wheat: "#f5deb3",
white: "#ffffff",
whitesmoke: "#f5f5f5",
yellow: "#ffff00",
yellowgreen: "#9acd32"
};
for (var d3_rgb_name in d3_rgb_names) {
d3_rgb_names[d3_rgb_name] = d3_rgb_parse(
d3_rgb_names[d3_rgb_name],
d3_rgb,
d3_hsl_rgb);
}
d3.hsl = function(h, s, l) {
return arguments.length === 1
? (h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l)
: d3_rgb_parse("" + h, d3_rgb_hsl, d3_hsl))
: d3_hsl(+h, +s, +l);
};
function d3_hsl(h, s, l) {
return new d3_Hsl(h, s, l);
}
function d3_Hsl(h, s, l) {
this.h = h;
this.s = s;
this.l = l;
}
d3_Hsl.prototype.brighter = function(k) {
k = Math.pow(0.7, arguments.length ? k : 1);
return d3_hsl(this.h, this.s, this.l / k);
};
d3_Hsl.prototype.darker = function(k) {
k = Math.pow(0.7, arguments.length ? k : 1);
return d3_hsl(this.h, this.s, k * this.l);
};
d3_Hsl.prototype.rgb = function() {
return d3_hsl_rgb(this.h, this.s, this.l);
};
d3_Hsl.prototype.toString = function() {
return this.rgb().toString();
};
function d3_hsl_rgb(h, s, l) {
var m1,
m2;
/* Some simple corrections for h, s and l. */
h = h % 360; if (h < 0) h += 360;
s = s < 0 ? 0 : s > 1 ? 1 : s;
l = l < 0 ? 0 : l > 1 ? 1 : l;
/* From FvD 13.37, CSS Color Module Level 3 */
m2 = l <= .5 ? l * (1 + s) : l + s - l * s;
m1 = 2 * l - m2;
function v(h) {
if (h > 360) h -= 360;
else if (h < 0) h += 360;
if (h < 60) return m1 + (m2 - m1) * h / 60;
if (h < 180) return m2;
if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60;
return m1;
}
function vv(h) {
return Math.round(v(h) * 255);
}
return d3_rgb(vv(h + 120), vv(h), vv(h - 120));
}
function d3_selection(groups) {
d3_arraySubclass(groups, d3_selectionPrototype);
return groups;
}
var d3_select = function(s, n) { return n.querySelector(s); },
d3_selectAll = function(s, n) { return n.querySelectorAll(s); };
// Prefer Sizzle, if available.
if (typeof Sizzle === "function") {
d3_select = function(s, n) { return Sizzle(s, n)[0]; };
d3_selectAll = function(s, n) { return Sizzle.uniqueSort(Sizzle(s, n)); };
}
var d3_selectionPrototype = [];
d3.selection = function() {
return d3_selectionRoot;
};
d3.selection.prototype = d3_selectionPrototype;
d3_selectionPrototype.select = function(selector) {
var subgroups = [],
subgroup,
subnode,
group,
node;
if (typeof selector !== "function") selector = d3_selection_selector(selector);
for (var j = -1, m = this.length; ++j < m;) {
subgroups.push(subgroup = []);
subgroup.parentNode = (group = this[j]).parentNode;
for (var i = -1, n = group.length; ++i < n;) {
if (node = group[i]) {
subgroup.push(subnode = selector.call(node, node.__data__, i));
if (subnode && "__data__" in node) subnode.__data__ = node.__data__;
} else {
subgroup.push(null);
}
}
}
return d3_selection(subgroups);
};
function d3_selection_selector(selector) {
return function() {
return d3_select(selector, this);
};
}
d3_selectionPrototype.selectAll = function(selector) {
var subgroups = [],
subgroup,
node;
if (typeof selector !== "function") selector = d3_selection_selectorAll(selector);
for (var j = -1, m = this.length; ++j < m;) {
for (var group = this[j], i = -1, n = group.length; ++i < n;) {
if (node = group[i]) {
subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i)));
subgroup.parentNode = node;
}
}
}
return d3_selection(subgroups);
};
function d3_selection_selectorAll(selector) {
return function() {
return d3_selectAll(selector, this);
};
}
d3_selectionPrototype.attr = function(name, value) {
name = d3.ns.qualify(name);
// If no value is specified, return the first value.
if (arguments.length < 2) {
var node = this.node();
return name.local
? node.getAttributeNS(name.space, name.local)
: node.getAttribute(name);
}
function attrNull() {
this.removeAttribute(name);
}
function attrNullNS() {
this.removeAttributeNS(name.space, name.local);
}
function attrConstant() {
this.setAttribute(name, value);
}
function attrConstantNS() {
this.setAttributeNS(name.space, name.local, value);
}
function attrFunction() {
var x = value.apply(this, arguments);
if (x == null) this.removeAttribute(name);
else this.setAttribute(name, x);
}
function attrFunctionNS() {
var x = value.apply(this, arguments);
if (x == null) this.removeAttributeNS(name.space, name.local);
else this.setAttributeNS(name.space, name.local, x);
}
return this.each(value == null
? (name.local ? attrNullNS : attrNull) : (typeof value === "function"
? (name.local ? attrFunctionNS : attrFunction)
: (name.local ? attrConstantNS : attrConstant)));
};
d3_selectionPrototype.classed = function(name, value) {
var names = name.split(d3_selection_classedWhitespace),
n = names.length,
i = -1;
if (arguments.length > 1) {
while (++i < n) d3_selection_classed.call(this, names[i], value);
return this;
} else {
while (++i < n) if (!d3_selection_classed.call(this, names[i])) return false;
return true;
}
};
var d3_selection_classedWhitespace = /\s+/g;
function d3_selection_classed(name, value) {
var re = new RegExp("(^|\\s+)" + d3.requote(name) + "(\\s+|$)", "g");
// If no value is specified, return the first value.
if (arguments.length < 2) {
var node = this.node();
if (c = node.classList) return c.contains(name);
var c = node.className;
re.lastIndex = 0;
return re.test(c.baseVal != null ? c.baseVal : c);
}
function classedAdd() {
if (c = this.classList) return c.add(name);
var c = this.className,
cb = c.baseVal != null,
cv = cb ? c.baseVal : c;
re.lastIndex = 0;
if (!re.test(cv)) {
cv = d3_collapse(cv + " " + name);
if (cb) c.baseVal = cv;
else this.className = cv;
}
}
function classedRemove() {
if (c = this.classList) return c.remove(name);
var c = this.className,
cb = c.baseVal != null,
cv = cb ? c.baseVal : c;
cv = d3_collapse(cv.replace(re, " "));
if (cb) c.baseVal = cv;
else this.className = cv;
}
function classedFunction() {
(value.apply(this, arguments)
? classedAdd
: classedRemove).call(this);
}
return this.each(typeof value === "function"
? classedFunction : value
? classedAdd
: classedRemove);
}
d3_selectionPrototype.style = function(name, value, priority) {
if (arguments.length < 3) priority = "";
// If no value is specified, return the first value.
if (arguments.length < 2) return window
.getComputedStyle(this.node(), null)
.getPropertyValue(name);
function styleNull() {
this.style.removeProperty(name);
}
function styleConstant() {
this.style.setProperty(name, value, priority);
}
function styleFunction() {
var x = value.apply(this, arguments);
if (x == null) this.style.removeProperty(name);
else this.style.setProperty(name, x, priority);
}
return this.each(value == null
? styleNull : (typeof value === "function"
? styleFunction : styleConstant));
};
d3_selectionPrototype.property = function(name, value) {
// If no value is specified, return the first value.
if (arguments.length < 2) return this.node()[name];
function propertyNull() {
delete this[name];
}
function propertyConstant() {
this[name] = value;
}
function propertyFunction() {
var x = value.apply(this, arguments);
if (x == null) delete this[name];
else this[name] = x;
}
return this.each(value == null
? propertyNull : (typeof value === "function"
? propertyFunction : propertyConstant));
};
d3_selectionPrototype.text = function(value) {
return arguments.length < 1 ? this.node().textContent
: (this.each(typeof value === "function"
? function() { this.textContent = value.apply(this, arguments); }
: function() { this.textContent = value; }));
};
d3_selectionPrototype.html = function(value) {
return arguments.length < 1 ? this.node().innerHTML
: (this.each(typeof value === "function"
? function() { this.innerHTML = value.apply(this, arguments); }
: function() { this.innerHTML = value; }));
};
// TODO append(node)?
// TODO append(function)?
d3_selectionPrototype.append = function(name) {
name = d3.ns.qualify(name);
function append() {
return this.appendChild(document.createElement(name));
}
function appendNS() {
return this.appendChild(document.createElementNS(name.space, name.local));
}
return this.select(name.local ? appendNS : append);
};
// TODO insert(node, function)?
// TODO insert(function, string)?
// TODO insert(function, function)?
d3_selectionPrototype.insert = function(name, before) {
name = d3.ns.qualify(name);
function insert() {
return this.insertBefore(
document.createElement(name),
d3_select(before, this));
}
function insertNS() {
return this.insertBefore(
document.createElementNS(name.space, name.local),
d3_select(before, this));
}
return this.select(name.local ? insertNS : insert);
};
// TODO remove(selector)?
// TODO remove(node)?
// TODO remove(function)?
d3_selectionPrototype.remove = function() {
return this.each(function() {
var parent = this.parentNode;
if (parent) parent.removeChild(this);
});
};
// TODO data(null) for clearing data?
d3_selectionPrototype.data = function(data, join) {
var enter = [],
update = [],
exit = [];
function bind(group, groupData) {
var i,
n = group.length,
m = groupData.length,
n0 = Math.min(n, m),
n1 = Math.max(n, m),
updateNodes = [],
enterNodes = [],
exitNodes = [],
node,
nodeData;
if (join) {
var nodeByKey = {},
keys = [],
key,
j = groupData.length;
for (i = -1; ++i < n;) {
key = join.call(node = group[i], node.__data__, i);
if (key in nodeByKey) {
exitNodes[j++] = node; // duplicate key
} else {
nodeByKey[key] = node;
}
keys.push(key);
}
for (i = -1; ++i < m;) {
node = nodeByKey[key = join.call(groupData, nodeData = groupData[i], i)];
if (node) {
node.__data__ = nodeData;
updateNodes[i] = node;
enterNodes[i] = exitNodes[i] = null;
} else {
enterNodes[i] = d3_selection_dataNode(nodeData);
updateNodes[i] = exitNodes[i] = null;
}
delete nodeByKey[key];
}
for (i = -1; ++i < n;) {
if (keys[i] in nodeByKey) {
exitNodes[i] = group[i];
}
}
} else {
for (i = -1; ++i < n0;) {
node = group[i];
nodeData = groupData[i];
if (node) {
node.__data__ = nodeData;
updateNodes[i] = node;
enterNodes[i] = exitNodes[i] = null;
} else {
enterNodes[i] = d3_selection_dataNode(nodeData);
updateNodes[i] = exitNodes[i] = null;
}
}
for (; i < m; ++i) {
enterNodes[i] = d3_selection_dataNode(groupData[i]);
updateNodes[i] = exitNodes[i] = null;
}
for (; i < n1; ++i) {
exitNodes[i] = group[i];
enterNodes[i] = updateNodes[i] = null;
}
}
enterNodes.update
= updateNodes;
enterNodes.parentNode
= updateNodes.parentNode
= exitNodes.parentNode
= group.parentNode;
enter.push(enterNodes);
update.push(updateNodes);
exit.push(exitNodes);
}
var i = -1,
n = this.length,
group;
if (typeof data === "function") {
while (++i < n) {
bind(group = this[i], data.call(group, group.parentNode.__data__, i));
}
} else {
while (++i < n) {
bind(group = this[i], data);
}
}
var selection = d3_selection(update);
selection.enter = function() { return d3_selection_enter(enter); };
selection.exit = function() { return d3_selection(exit); };
return selection;
};
function d3_selection_dataNode(data) {
return {__data__: data};
}
// TODO preserve null elements to maintain index?
d3_selectionPrototype.filter = function(filter) {
var subgroups = [],
subgroup,
group,
node;
for (var j = 0, m = this.length; j < m; j++) {
subgroups.push(subgroup = []);
subgroup.parentNode = (group = this[j]).parentNode;
for (var i = 0, n = group.length; i < n; i++) {
if ((node = group[i]) && filter.call(node, node.__data__, i)) {
subgroup.push(node);
}
}
}
return d3_selection(subgroups);
};
d3_selectionPrototype.map = function(map) {
return this.each(function() {
this.__data__ = map.apply(this, arguments);
});
};
d3_selectionPrototype.sort = function(comparator) {
comparator = d3_selection_sortComparator.apply(this, arguments);
for (var j = 0, m = this.length; j < m; j++) {
for (var group = this[j].sort(comparator), i = 1, n = group.length, prev = group[0]; i < n; i++) {
var node = group[i];
if (node) {
if (prev) prev.parentNode.insertBefore(node, prev.nextSibling);
prev = node;
}
}
}
return this;
};
function d3_selection_sortComparator(comparator) {
if (!arguments.length) comparator = d3.ascending;
return function(a, b) {
return comparator(a && a.__data__, b && b.__data__);
};
}
// type can be namespaced, e.g., "click.foo"
// listener can be null for removal
d3_selectionPrototype.on = function(type, listener, capture) {
if (arguments.length < 3) capture = false;
// parse the type specifier
var name = "__on" + type, i = type.indexOf(".");
if (i > 0) type = type.substring(0, i);
// if called with only one argument, return the current listener
if (arguments.length < 2) return (i = this.node()[name]) && i._;
// remove the old event listener, and add the new event listener
return this.each(function(d, i) {
var node = this;
if (node[name]) node.removeEventListener(type, node[name], capture);
if (listener) node.addEventListener(type, node[name] = l, capture);
// wrapped event listener that preserves i
function l(e) {
var o = d3.event; // Events can be reentrant (e.g., focus).
d3.event = e;
try {
listener.call(node, node.__data__, i);
} finally {
d3.event = o;
}
}
// stash the unwrapped listener for retrieval
l._ = listener;
});
};
d3_selectionPrototype.each = function(callback) {
for (var j = -1, m = this.length; ++j < m;) {
for (var group = this[j], i = -1, n = group.length; ++i < n;) {
var node = group[i];
if (node) callback.call(node, node.__data__, i, j);
}
}
return this;
};
//
// Note: assigning to the arguments array simultaneously changes the value of
// the corresponding argument!
//
// TODO The `this` argument probably shouldn't be the first argument to the
// callback, anyway, since it's redundant. However, that will require a major
// version bump due to backwards compatibility, so I'm not changing it right
// away.
//
d3_selectionPrototype.call = function(callback) {
callback.apply(this, (arguments[0] = this, arguments));
return this;
};
d3_selectionPrototype.empty = function() {
return !this.node();
};
d3_selectionPrototype.node = function(callback) {
for (var j = 0, m = this.length; j < m; j++) {
for (var group = this[j], i = 0, n = group.length; i < n; i++) {
var node = group[i];
if (node) return node;
}
}
return null;
};
d3_selectionPrototype.transition = function() {
var subgroups = [],
subgroup,
node;
for (var j = -1, m = this.length; ++j < m;) {
subgroups.push(subgroup = []);
for (var group = this[j], i = -1, n = group.length; ++i < n;) {
subgroup.push((node = group[i]) ? {node: node, delay: 0, duration: 250} : null);
}
}
return d3_transition(subgroups, d3_transitionInheritId || ++d3_transitionId, Date.now());
};
var d3_selectionRoot = d3_selection([[document]]);
d3_selectionRoot[0].parentNode = document.documentElement;
// TODO fast singleton implementation!
// TODO select(function)
d3.select = function(selector) {
return typeof selector === "string"
? d3_selectionRoot.select(selector)
: d3_selection([[selector]]); // assume node
};
// TODO selectAll(function)
d3.selectAll = function(selector) {
return typeof selector === "string"
? d3_selectionRoot.selectAll(selector)
: d3_selection([d3_array(selector)]); // assume node[]
};
function d3_selection_enter(selection) {
d3_arraySubclass(selection, d3_selection_enterPrototype);
return selection;
}
var d3_selection_enterPrototype = [];
d3_selection_enterPrototype.append = d3_selectionPrototype.append;
d3_selection_enterPrototype.insert = d3_selectionPrototype.insert;
d3_selection_enterPrototype.empty = d3_selectionPrototype.empty;
d3_selection_enterPrototype.node = d3_selectionPrototype.node;
d3_selection_enterPrototype.select = function(selector) {
var subgroups = [],
subgroup,
subnode,
upgroup,
group,
node;
for (var j = -1, m = this.length; ++j < m;) {
upgroup = (group = this[j]).update;
subgroups.push(subgroup = []);
subgroup.parentNode = group.parentNode;
for (var i = -1, n = group.length; ++i < n;) {
if (node = group[i]) {
subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i));
subnode.__data__ = node.__data__;
} else {
subgroup.push(null);
}
}
}
return d3_selection(subgroups);
};
function d3_transition(groups, id, time) {
d3_arraySubclass(groups, d3_transitionPrototype);
var tweens = {},
event = d3.dispatch("start", "end"),
ease = d3_transitionEase;
groups.id = id;
groups.time = time;
groups.tween = function(name, tween) {
if (arguments.length < 2) return tweens[name];
if (tween == null) delete tweens[name];
else tweens[name] = tween;
return groups;
};
groups.ease = function(value) {
if (!arguments.length) return ease;
ease = typeof value === "function" ? value : d3.ease.apply(d3, arguments);
return groups;
};
groups.each = function(type, listener) {
if (arguments.length < 2) return d3_transition_each.call(groups, type);
event[type].add(listener);
return groups;
};
d3.timer(function(elapsed) {
groups.each(function(d, i, j) {
var tweened = [],
node = this,
delay = groups[j][i].delay,
duration = groups[j][i].duration,
lock = node.__transition__ || (node.__transition__ = {active: 0, count: 0});
++lock.count;
delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time);
function start(elapsed) {
if (lock.active > id) return stop();
lock.active = id;
for (var tween in tweens) {
if (tween = tweens[tween].call(node, d, i)) {
tweened.push(tween);
}
}
event.start.dispatch.call(node, d, i);
if (!tick(elapsed)) d3.timer(tick, 0, time);
return 1;
}
function tick(elapsed) {
if (lock.active !== id) return stop();
var t = (elapsed - delay) / duration,
e = ease(t),
n = tweened.length;
while (n > 0) {
tweened[--n].call(node, e);
}
if (t >= 1) {
stop();
d3_transitionInheritId = id;
event.end.dispatch.call(node, d, i);
d3_transitionInheritId = 0;
return 1;
}
}
function stop() {
if (!--lock.count) delete node.__transition__;
return 1;
}
});
return 1;
}, 0, time);
return groups;
}
var d3_transitionRemove = {};
function d3_transitionNull(d, i, a) {
return a != "" && d3_transitionRemove;
}
function d3_transitionTween(b) {
function transitionFunction(d, i, a) {
var v = b.call(this, d, i);
return v == null
? a != "" && d3_transitionRemove
: a != v && d3.interpolate(a, v);
}
function transitionString(d, i, a) {
return a != b && d3.interpolate(a, b);
}
return typeof b === "function" ? transitionFunction
: b == null ? d3_transitionNull
: (b += "", transitionString);
}
var d3_transitionPrototype = [],
d3_transitionId = 0,
d3_transitionInheritId = 0,
d3_transitionEase = d3.ease("cubic-in-out");
d3_transitionPrototype.call = d3_selectionPrototype.call;
d3.transition = function() {
return d3_selectionRoot.transition();
};
d3.transition.prototype = d3_transitionPrototype;
d3_transitionPrototype.select = function(selector) {
var subgroups = [],
subgroup,
subnode,
node;
if (typeof selector !== "function") selector = d3_selection_selector(selector);
for (var j = -1, m = this.length; ++j < m;) {
subgroups.push(subgroup = []);
for (var group = this[j], i = -1, n = group.length; ++i < n;) {
if ((node = group[i]) && (subnode = selector.call(node.node, node.node.__data__, i))) {
if ("__data__" in node.node) subnode.__data__ = node.node.__data__;
subgroup.push({node: subnode, delay: node.delay, duration: node.duration});
} else {
subgroup.push(null);
}
}
}
return d3_transition(subgroups, this.id, this.time).ease(this.ease());
};
d3_transitionPrototype.selectAll = function(selector) {
var subgroups = [],
subgroup,
subnodes,
node;
if (typeof selector !== "function") selector = d3_selection_selectorAll(selector);
for (var j = -1, m = this.length; ++j < m;) {
for (var group = this[j], i = -1, n = group.length; ++i < n;) {
if (node = group[i]) {
subnodes = selector.call(node.node, node.node.__data__, i);
subgroups.push(subgroup = []);
for (var k = -1, o = subnodes.length; ++k < o;) {
subgroup.push({node: subnodes[k], delay: node.delay, duration: node.duration});
}
}
}
}
return d3_transition(subgroups, this.id, this.time).ease(this.ease());
};
d3_transitionPrototype.attr = function(name, value) {
return this.attrTween(name, d3_transitionTween(value));
};
d3_transitionPrototype.attrTween = function(nameNS, tween) {
var name = d3.ns.qualify(nameNS);
function attrTween(d, i) {
var f = tween.call(this, d, i, this.getAttribute(name));
return f === d3_transitionRemove
? (this.removeAttribute(name), null)
: f && function(t) { this.setAttribute(name, f(t)); };
}
function attrTweenNS(d, i) {
var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local));
return f === d3_transitionRemove
? (this.removeAttributeNS(name.space, name.local), null)
: f && function(t) { this.setAttributeNS(name.space, name.local, f(t)); };
}
return this.tween("attr." + nameNS, name.local ? attrTweenNS : attrTween);
};
d3_transitionPrototype.style = function(name, value, priority) {
if (arguments.length < 3) priority = "";
return this.styleTween(name, d3_transitionTween(value), priority);
};
d3_transitionPrototype.styleTween = function(name, tween, priority) {
if (arguments.length < 3) priority = "";
return this.tween("style." + name, function(d, i) {
var f = tween.call(this, d, i, window.getComputedStyle(this, null).getPropertyValue(name));
return f === d3_transitionRemove
? (this.style.removeProperty(name), null)
: f && function(t) { this.style.setProperty(name, f(t), priority); };
});
};
d3_transitionPrototype.text = function(value) {
return this.tween("text", function(d, i) {
this.textContent = typeof value === "function"
? value.call(this, d, i)
: value;
});
};
d3_transitionPrototype.remove = function() {
return this.each("end", function() {
var p;
if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);
});
};
d3_transitionPrototype.delay = function(value) {
var groups = this;
return groups.each(typeof value === "function"
? function(d, i, j) { groups[j][i].delay = +value.apply(this, arguments); }
: (value = +value, function(d, i, j) { groups[j][i].delay = value; }));
};
d3_transitionPrototype.duration = function(value) {
var groups = this;
return groups.each(typeof value === "function"
? function(d, i, j) { groups[j][i].duration = +value.apply(this, arguments); }
: (value = +value, function(d, i, j) { groups[j][i].duration = value; }));
};
function d3_transition_each(callback) {
for (var j = 0, m = this.length; j < m; j++) {
for (var group = this[j], i = 0, n = group.length; i < n; i++) {
var node = group[i];
if (node) callback.call(node = node.node, node.__data__, i, j);
}
}
return this;
}
d3_transitionPrototype.transition = function() {
return this.select(d3_this);
};
var d3_timer_queue = null,
d3_timer_interval, // is an interval (or frame) active?
d3_timer_timeout; // is a timeout active?
// The timer will continue to fire until callback returns true.
d3.timer = function(callback, delay, then) {
var found = false,
t0,
t1 = d3_timer_queue;
if (arguments.length < 3) {
if (arguments.length < 2) delay = 0;
else if (!isFinite(delay)) return;
then = Date.now();
}
// See if the callback's already in the queue.
while (t1) {
if (t1.callback === callback) {
t1.then = then;
t1.delay = delay;
found = true;
break;
}
t0 = t1;
t1 = t1.next;
}
// Otherwise, add the callback to the queue.
if (!found) d3_timer_queue = {
callback: callback,
then: then,
delay: delay,
next: d3_timer_queue
};
// Start animatin'!
if (!d3_timer_interval) {
d3_timer_timeout = clearTimeout(d3_timer_timeout);
d3_timer_interval = 1;
d3_timer_frame(d3_timer_step);
}
}
function d3_timer_step() {
var elapsed,
now = Date.now(),
t1 = d3_timer_queue;
while (t1) {
elapsed = now - t1.then;
if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed);
t1 = t1.next;
}
var delay = d3_timer_flush() - now;
if (delay > 24) {
if (isFinite(delay)) {
clearTimeout(d3_timer_timeout);
d3_timer_timeout = setTimeout(d3_timer_step, delay);
}
d3_timer_interval = 0;
} else {
d3_timer_interval = 1;
d3_timer_frame(d3_timer_step);
}
}
d3.timer.flush = function() {
var elapsed,
now = Date.now(),
t1 = d3_timer_queue;
while (t1) {
elapsed = now - t1.then;
if (!t1.delay) t1.flush = t1.callback(elapsed);
t1 = t1.next;
}
d3_timer_flush();
};
// Flush after callbacks, to avoid concurrent queue modification.
function d3_timer_flush() {
var t0 = null,
t1 = d3_timer_queue,
then = Infinity;
while (t1) {
if (t1.flush) {
t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next;
} else {
then = Math.min(then, t1.then + t1.delay);
t1 = (t0 = t1).next;
}
}
return then;
}
var d3_timer_frame = window.requestAnimationFrame
|| window.webkitRequestAnimationFrame
|| window.mozRequestAnimationFrame
|| window.oRequestAnimationFrame
|| window.msRequestAnimationFrame
|| function(callback) { setTimeout(callback, 17); };
function d3_noop() {}
d3.scale = {};
function d3_scaleExtent(domain) {
var start = domain[0], stop = domain[domain.length - 1];
return start < stop ? [start, stop] : [stop, start];
}
function d3_scale_nice(domain, nice) {
var i0 = 0,
i1 = domain.length - 1,
x0 = domain[i0],
x1 = domain[i1],
dx;
if (x1 < x0) {
dx = i0; i0 = i1; i1 = dx;
dx = x0; x0 = x1; x1 = dx;
}
if (dx = x1 - x0) {
nice = nice(dx);
domain[i0] = nice.floor(x0);
domain[i1] = nice.ceil(x1);
}
return domain;
}
function d3_scale_niceDefault() {
return Math;
}
d3.scale.linear = function() {
return d3_scale_linear([0, 1], [0, 1], d3.interpolate, false);
};
function d3_scale_linear(domain, range, interpolate, clamp) {
var output,
input;
function rescale() {
var linear = domain.length == 2 ? d3_scale_bilinear : d3_scale_polylinear,
uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;
output = linear(domain, range, uninterpolate, interpolate);
input = linear(range, domain, uninterpolate, d3.interpolate);
return scale;
}
function scale(x) {
return output(x);
}
// Note: requires range is coercible to number!
scale.invert = function(y) {
return input(y);
};
scale.domain = function(x) {
if (!arguments.length) return domain;
domain = x.map(Number);
return rescale();
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
return rescale();
};
scale.rangeRound = function(x) {
return scale.range(x).interpolate(d3.interpolateRound);
};
scale.clamp = function(x) {
if (!arguments.length) return clamp;
clamp = x;
return rescale();
};
scale.interpolate = function(x) {
if (!arguments.length) return interpolate;
interpolate = x;
return rescale();
};
scale.ticks = function(m) {
return d3_scale_linearTicks(domain, m);
};
scale.tickFormat = function(m) {
return d3_scale_linearTickFormat(domain, m);
};
scale.nice = function() {
d3_scale_nice(domain, d3_scale_linearNice);
return rescale();
};
scale.copy = function() {
return d3_scale_linear(domain, range, interpolate, clamp);
};
return rescale();
};
function d3_scale_linearRebind(scale, linear) {
scale.range = d3.rebind(scale, linear.range);
scale.rangeRound = d3.rebind(scale, linear.rangeRound);
scale.interpolate = d3.rebind(scale, linear.interpolate);
scale.clamp = d3.rebind(scale, linear.clamp);
return scale;
}
function d3_scale_linearNice(dx) {
dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1);
return {
floor: function(x) { return Math.floor(x / dx) * dx; },
ceil: function(x) { return Math.ceil(x / dx) * dx; }
};
}
// TODO Dates? Ugh.
function d3_scale_linearTickRange(domain, m) {
var extent = d3_scaleExtent(domain),
span = extent[1] - extent[0],
step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)),
err = m / span * step;
// Filter ticks to get closer to the desired count.
if (err <= .15) step *= 10;
else if (err <= .35) step *= 5;
else if (err <= .75) step *= 2;
// Round start and stop values to step interval.
extent[0] = Math.ceil(extent[0] / step) * step;
extent[1] = Math.floor(extent[1] / step) * step + step * .5; // inclusive
extent[2] = step;
return extent;
}
function d3_scale_linearTicks(domain, m) {
return d3.range.apply(d3, d3_scale_linearTickRange(domain, m));
}
function d3_scale_linearTickFormat(domain, m) {
return d3.format(",." + Math.max(0, -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01)) + "f");
}
function d3_scale_bilinear(domain, range, uninterpolate, interpolate) {
var u = uninterpolate(domain[0], domain[1]),
i = interpolate(range[0], range[1]);
return function(x) {
return i(u(x));
};
}
function d3_scale_polylinear(domain, range, uninterpolate, interpolate) {
var u = [],
i = [],
j = 0,
n = domain.length;
while (++j < n) {
u.push(uninterpolate(domain[j - 1], domain[j]));
i.push(interpolate(range[j - 1], range[j]));
}
return function(x) {
var j = d3.bisect(domain, x, 1, domain.length - 1) - 1;
return i[j](u[j](x));
};
}
d3.scale.log = function() {
return d3_scale_log(d3.scale.linear(), d3_scale_logp);
};
function d3_scale_log(linear, log) {
var pow = log.pow;
function scale(x) {
return linear(log(x));
}
scale.invert = function(x) {
return pow(linear.invert(x));
};
scale.domain = function(x) {
if (!arguments.length) return linear.domain().map(pow);
log = x[0] < 0 ? d3_scale_logn : d3_scale_logp;
pow = log.pow;
linear.domain(x.map(log));
return scale;
};
scale.nice = function() {
linear.domain(d3_scale_nice(linear.domain(), d3_scale_niceDefault));
return scale;
};
scale.ticks = function() {
var extent = d3_scaleExtent(linear.domain()),
ticks = [];
if (extent.every(isFinite)) {
var i = Math.floor(extent[0]),
j = Math.ceil(extent[1]),
u = Math.round(pow(extent[0])),
v = Math.round(pow(extent[1]));
if (log === d3_scale_logn) {
ticks.push(pow(i));
for (; i++ < j;) for (var k = 9; k > 0; k--) ticks.push(pow(i) * k);
} else {
for (; i < j; i++) for (var k = 1; k < 10; k++) ticks.push(pow(i) * k);
ticks.push(pow(i));
}
for (i = 0; ticks[i] < u; i++) {} // strip small values
for (j = ticks.length; ticks[j - 1] > v; j--) {} // strip big values
ticks = ticks.slice(i, j);
}
return ticks;
};
scale.tickFormat = function(n, format) {
if (arguments.length < 2) format = d3_scale_logFormat;
if (arguments.length < 1) return format;
var k = n / scale.ticks().length,
f = log === d3_scale_logn ? (e = -1e-15, Math.floor) : (e = 1e-15, Math.ceil),
e;
return function(d) {
return d / pow(f(log(d) + e)) < k ? format(d) : "";
};
};
scale.copy = function() {
return d3_scale_log(linear.copy(), log);
};
return d3_scale_linearRebind(scale, linear);
};
var d3_scale_logFormat = d3.format("e");
function d3_scale_logp(x) {
return Math.log(x) / Math.LN10;
}
function d3_scale_logn(x) {
return -Math.log(-x) / Math.LN10;
}
d3_scale_logp.pow = function(x) {
return Math.pow(10, x);
};
d3_scale_logn.pow = function(x) {
return -Math.pow(10, -x);
};
d3.scale.pow = function() {
return d3_scale_pow(d3.scale.linear(), 1);
};
function d3_scale_pow(linear, exponent) {
var powp = d3_scale_powPow(exponent),
powb = d3_scale_powPow(1 / exponent);
function scale(x) {
return linear(powp(x));
}
scale.invert = function(x) {
return powb(linear.invert(x));
};
scale.domain = function(x) {
if (!arguments.length) return linear.domain().map(powb);
linear.domain(x.map(powp));
return scale;
};
scale.ticks = function(m) {
return d3_scale_linearTicks(scale.domain(), m);
};
scale.tickFormat = function(m) {
return d3_scale_linearTickFormat(scale.domain(), m);
};
scale.nice = function() {
return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice));
};
scale.exponent = function(x) {
if (!arguments.length) return exponent;
var domain = scale.domain();
powp = d3_scale_powPow(exponent = x);
powb = d3_scale_powPow(1 / exponent);
return scale.domain(domain);
};
scale.copy = function() {
return d3_scale_pow(linear.copy(), exponent);
};
return d3_scale_linearRebind(scale, linear);
};
function d3_scale_powPow(e) {
return function(x) {
return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);
};
}
d3.scale.sqrt = function() {
return d3.scale.pow().exponent(.5);
};
d3.scale.ordinal = function() {
return d3_scale_ordinal([], {t: "range", x: []});
};
function d3_scale_ordinal(domain, ranger) {
var index,
range,
rangeBand;
function scale(x) {
return range[((index[x] || (index[x] = domain.push(x))) - 1) % range.length];
}
scale.domain = function(x) {
if (!arguments.length) return domain;
domain = [];
index = {};
var i = -1, n = x.length, xi;
while (++i < n) if (!index[xi = x[i]]) index[xi] = domain.push(xi);
return scale[ranger.t](ranger.x, ranger.p);
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
rangeBand = 0;
ranger = {t: "range", x: x};
return scale;
};
scale.rangePoints = function(x, padding) {
if (arguments.length < 2) padding = 0;
var start = x[0],
stop = x[1],
step = (stop - start) / (domain.length - 1 + padding);
range = domain.length < 2 ? [(start + stop) / 2] : d3.range(start + step * padding / 2, stop + step / 2, step);
rangeBand = 0;
ranger = {t: "rangePoints", x: x, p: padding};
return scale;
};
scale.rangeBands = function(x, padding) {
if (arguments.length < 2) padding = 0;
var start = x[0],
stop = x[1],
step = (stop - start) / (domain.length + padding);
range = d3.range(start + step * padding, stop, step);
rangeBand = step * (1 - padding);
ranger = {t: "rangeBands", x: x, p: padding};
return scale;
};
scale.rangeRoundBands = function(x, padding) {
if (arguments.length < 2) padding = 0;
var start = x[0],
stop = x[1],
step = Math.floor((stop - start) / (domain.length + padding)),
err = stop - start - (domain.length - padding) * step;
range = d3.range(start + Math.round(err / 2), stop, step);
rangeBand = Math.round(step * (1 - padding));
ranger = {t: "rangeRoundBands", x: x, p: padding};
return scale;
};
scale.rangeBand = function() {
return rangeBand;
};
scale.copy = function() {
return d3_scale_ordinal(domain, ranger);
};
return scale.domain(domain);
};
/*
* This product includes color specifications and designs developed by Cynthia
* Brewer (http://colorbrewer.org/). See lib/colorbrewer for more information.
*/
d3.scale.category10 = function() {
return d3.scale.ordinal().range(d3_category10);
};
d3.scale.category20 = function() {
return d3.scale.ordinal().range(d3_category20);
};
d3.scale.category20b = function() {
return d3.scale.ordinal().range(d3_category20b);
};
d3.scale.category20c = function() {
return d3.scale.ordinal().range(d3_category20c);
};
var d3_category10 = [
"#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd",
"#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf"
];
var d3_category20 = [
"#1f77b4", "#aec7e8",
"#ff7f0e", "#ffbb78",
"#2ca02c", "#98df8a",
"#d62728", "#ff9896",
"#9467bd", "#c5b0d5",
"#8c564b", "#c49c94",
"#e377c2", "#f7b6d2",
"#7f7f7f", "#c7c7c7",
"#bcbd22", "#dbdb8d",
"#17becf", "#9edae5"
];
var d3_category20b = [
"#393b79", "#5254a3", "#6b6ecf", "#9c9ede",
"#637939", "#8ca252", "#b5cf6b", "#cedb9c",
"#8c6d31", "#bd9e39", "#e7ba52", "#e7cb94",
"#843c39", "#ad494a", "#d6616b", "#e7969c",
"#7b4173", "#a55194", "#ce6dbd", "#de9ed6"
];
var d3_category20c = [
"#3182bd", "#6baed6", "#9ecae1", "#c6dbef",
"#e6550d", "#fd8d3c", "#fdae6b", "#fdd0a2",
"#31a354", "#74c476", "#a1d99b", "#c7e9c0",
"#756bb1", "#9e9ac8", "#bcbddc", "#dadaeb",
"#636363", "#969696", "#bdbdbd", "#d9d9d9"
];
d3.scale.quantile = function() {
return d3_scale_quantile([], []);
};
function d3_scale_quantile(domain, range) {
var thresholds;
function rescale() {
var k = 0,
n = domain.length,
q = range.length;
thresholds = [];
while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q);
return scale;
}
function scale(x) {
if (isNaN(x = +x)) return NaN;
return range[d3.bisect(thresholds, x)];
}
scale.domain = function(x) {
if (!arguments.length) return domain;
domain = x.filter(function(d) { return !isNaN(d); }).sort(d3.ascending);
return rescale();
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
return rescale();
};
scale.quantiles = function() {
return thresholds;
};
scale.copy = function() {
return d3_scale_quantile(domain, range); // copy on write!
};
return rescale();
};
d3.scale.quantize = function() {
return d3_scale_quantize(0, 1, [0, 1]);
};
function d3_scale_quantize(x0, x1, range) {
var kx, i;
function scale(x) {
return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))];
}
function rescale() {
kx = range.length / (x1 - x0);
i = range.length - 1;
return scale;
}
scale.domain = function(x) {
if (!arguments.length) return [x0, x1];
x0 = +x[0];
x1 = +x[x.length - 1];
return rescale();
};
scale.range = function(x) {
if (!arguments.length) return range;
range = x;
return rescale();
};
scale.copy = function() {
return d3_scale_quantize(x0, x1, range); // copy on write
};
return rescale();
};
d3.svg = {};
d3.svg.arc = function() {
var innerRadius = d3_svg_arcInnerRadius,
outerRadius = d3_svg_arcOuterRadius,
startAngle = d3_svg_arcStartAngle,
endAngle = d3_svg_arcEndAngle;
function arc() {
var r0 = innerRadius.apply(this, arguments),
r1 = outerRadius.apply(this, arguments),
a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset,
a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset,
da = (a1 < a0 && (da = a0, a0 = a1, a1 = da), a1 - a0),
df = da < Math.PI ? "0" : "1",
c0 = Math.cos(a0),
s0 = Math.sin(a0),
c1 = Math.cos(a1),
s1 = Math.sin(a1);
return da >= d3_svg_arcMax
? (r0
? "M0," + r1
+ "A" + r1 + "," + r1 + " 0 1,1 0," + (-r1)
+ "A" + r1 + "," + r1 + " 0 1,1 0," + r1
+ "M0," + r0
+ "A" + r0 + "," + r0 + " 0 1,0 0," + (-r0)
+ "A" + r0 + "," + r0 + " 0 1,0 0," + r0
+ "Z"
: "M0," + r1
+ "A" + r1 + "," + r1 + " 0 1,1 0," + (-r1)
+ "A" + r1 + "," + r1 + " 0 1,1 0," + r1
+ "Z")
: (r0
? "M" + r1 * c0 + "," + r1 * s0
+ "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1
+ "L" + r0 * c1 + "," + r0 * s1
+ "A" + r0 + "," + r0 + " 0 " + df + ",0 " + r0 * c0 + "," + r0 * s0
+ "Z"
: "M" + r1 * c0 + "," + r1 * s0
+ "A" + r1 + "," + r1 + " 0 " + df + ",1 " + r1 * c1 + "," + r1 * s1
+ "L0,0"
+ "Z");
}
arc.innerRadius = function(v) {
if (!arguments.length) return innerRadius;
innerRadius = d3.functor(v);
return arc;
};
arc.outerRadius = function(v) {
if (!arguments.length) return outerRadius;
outerRadius = d3.functor(v);
return arc;
};
arc.startAngle = function(v) {
if (!arguments.length) return startAngle;
startAngle = d3.functor(v);
return arc;
};
arc.endAngle = function(v) {
if (!arguments.length) return endAngle;
endAngle = d3.functor(v);
return arc;
};
arc.centroid = function() {
var r = (innerRadius.apply(this, arguments)
+ outerRadius.apply(this, arguments)) / 2,
a = (startAngle.apply(this, arguments)
+ endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset;
return [Math.cos(a) * r, Math.sin(a) * r];
};
return arc;
};
var d3_svg_arcOffset = -Math.PI / 2,
d3_svg_arcMax = 2 * Math.PI - 1e-6;
function d3_svg_arcInnerRadius(d) {
return d.innerRadius;
}
function d3_svg_arcOuterRadius(d) {
return d.outerRadius;
}
function d3_svg_arcStartAngle(d) {
return d.startAngle;
}
function d3_svg_arcEndAngle(d) {
return d.endAngle;
}
function d3_svg_line(projection) {
var x = d3_svg_lineX,
y = d3_svg_lineY,
interpolate = "linear",
interpolator = d3_svg_lineInterpolators[interpolate],
tension = .7;
function line(d) {
return d.length < 1 ? null : "M" + interpolator(projection(d3_svg_linePoints(this, d, x, y)), tension);
}
line.x = function(v) {
if (!arguments.length) return x;
x = v;
return line;
};
line.y = function(v) {
if (!arguments.length) return y;
y = v;
return line;
};
line.interpolate = function(v) {
if (!arguments.length) return interpolate;
interpolator = d3_svg_lineInterpolators[interpolate = v];
return line;
};
line.tension = function(v) {
if (!arguments.length) return tension;
tension = v;
return line;
};
return line;
}
d3.svg.line = function() {
return d3_svg_line(Object);
};
// Converts the specified array of data into an array of points
// (x-y tuples), by evaluating the specified `x` and `y` functions on each
// data point. The `this` context of the evaluated functions is the specified
// "self" object; each function is passed the current datum and index.
function d3_svg_linePoints(self, d, x, y) {
var points = [],
i = -1,
n = d.length,
fx = typeof x === "function",
fy = typeof y === "function",
value;
if (fx && fy) {
while (++i < n) points.push([
x.call(self, value = d[i], i),
y.call(self, value, i)
]);
} else if (fx) {
while (++i < n) points.push([x.call(self, d[i], i), y]);
} else if (fy) {
while (++i < n) points.push([x, y.call(self, d[i], i)]);
} else {
while (++i < n) points.push([x, y]);
}
return points;
}
// The default `x` property, which references d[0].
function d3_svg_lineX(d) {
return d[0];
}
// The default `y` property, which references d[1].
function d3_svg_lineY(d) {
return d[1];
}
// The various interpolators supported by the `line` class.
var d3_svg_lineInterpolators = {
"linear": d3_svg_lineLinear,
"step-before": d3_svg_lineStepBefore,
"step-after": d3_svg_lineStepAfter,
"basis": d3_svg_lineBasis,
"basis-open": d3_svg_lineBasisOpen,
"basis-closed": d3_svg_lineBasisClosed,
"bundle": d3_svg_lineBundle,
"cardinal": d3_svg_lineCardinal,
"cardinal-open": d3_svg_lineCardinalOpen,
"cardinal-closed": d3_svg_lineCardinalClosed,
"monotone": d3_svg_lineMonotone
};
// Linear interpolation; generates "L" commands.
function d3_svg_lineLinear(points) {
var i = 0,
n = points.length,
p = points[0],
path = [p[0], ",", p[1]];
while (++i < n) path.push("L", (p = points[i])[0], ",", p[1]);
return path.join("");
}
// Step interpolation; generates "H" and "V" commands.
function d3_svg_lineStepBefore(points) {
var i = 0,
n = points.length,
p = points[0],
path = [p[0], ",", p[1]];
while (++i < n) path.push("V", (p = points[i])[1], "H", p[0]);
return path.join("");
}
// Step interpolation; generates "H" and "V" commands.
function d3_svg_lineStepAfter(points) {
var i = 0,
n = points.length,
p = points[0],
path = [p[0], ",", p[1]];
while (++i < n) path.push("H", (p = points[i])[0], "V", p[1]);
return path.join("");
}
// Open cardinal spline interpolation; generates "C" commands.
function d3_svg_lineCardinalOpen(points, tension) {
return points.length < 4
? d3_svg_lineLinear(points)
: points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1),
d3_svg_lineCardinalTangents(points, tension));
}
// Closed cardinal spline interpolation; generates "C" commands.
function d3_svg_lineCardinalClosed(points, tension) {
return points.length < 3
? d3_svg_lineLinear(points)
: points[0] + d3_svg_lineHermite((points.push(points[0]), points),
d3_svg_lineCardinalTangents([points[points.length - 2]]
.concat(points, [points[1]]), tension));
}
// Cardinal spline interpolation; generates "C" commands.
function d3_svg_lineCardinal(points, tension, closed) {
return points.length < 3
? d3_svg_lineLinear(points)
: points[0] + d3_svg_lineHermite(points,
d3_svg_lineCardinalTangents(points, tension));
}
// Hermite spline construction; generates "C" commands.
function d3_svg_lineHermite(points, tangents) {
if (tangents.length < 1
|| (points.length != tangents.length
&& points.length != tangents.length + 2)) {
return d3_svg_lineLinear(points);
}
var quad = points.length != tangents.length,
path = "",
p0 = points[0],
p = points[1],
t0 = tangents[0],
t = t0,
pi = 1;
if (quad) {
path += "Q" + (p[0] - t0[0] * 2 / 3) + "," + (p[1] - t0[1] * 2 / 3)
+ "," + p[0] + "," + p[1];
p0 = points[1];
pi = 2;
}
if (tangents.length > 1) {
t = tangents[1];
p = points[pi];
pi++;
path += "C" + (p0[0] + t0[0]) + "," + (p0[1] + t0[1])
+ "," + (p[0] - t[0]) + "," + (p[1] - t[1])
+ "," + p[0] + "," + p[1];
for (var i = 2; i < tangents.length; i++, pi++) {
p = points[pi];
t = tangents[i];
path += "S" + (p[0] - t[0]) + "," + (p[1] - t[1])
+ "," + p[0] + "," + p[1];
}
}
if (quad) {
var lp = points[pi];
path += "Q" + (p[0] + t[0] * 2 / 3) + "," + (p[1] + t[1] * 2 / 3)
+ "," + lp[0] + "," + lp[1];
}
return path;
}
// Generates tangents for a cardinal spline.
function d3_svg_lineCardinalTangents(points, tension) {
var tangents = [],
a = (1 - tension) / 2,
p0,
p1 = points[0],
p2 = points[1],
i = 1,
n = points.length;
while (++i < n) {
p0 = p1;
p1 = p2;
p2 = points[i];
tangents.push([a * (p2[0] - p0[0]), a * (p2[1] - p0[1])]);
}
return tangents;
}
// B-spline interpolation; generates "C" commands.
function d3_svg_lineBasis(points) {
if (points.length < 3) return d3_svg_lineLinear(points);
var i = 1,
n = points.length,
pi = points[0],
x0 = pi[0],
y0 = pi[1],
px = [x0, x0, x0, (pi = points[1])[0]],
py = [y0, y0, y0, pi[1]],
path = [x0, ",", y0];
d3_svg_lineBasisBezier(path, px, py);
while (++i < n) {
pi = points[i];
px.shift(); px.push(pi[0]);
py.shift(); py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
i = -1;
while (++i < 2) {
px.shift(); px.push(pi[0]);
py.shift(); py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
return path.join("");
}
// Open B-spline interpolation; generates "C" commands.
function d3_svg_lineBasisOpen(points) {
if (points.length < 4) return d3_svg_lineLinear(points);
var path = [],
i = -1,
n = points.length,
pi,
px = [0],
py = [0];
while (++i < 3) {
pi = points[i];
px.push(pi[0]);
py.push(pi[1]);
}
path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px)
+ "," + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py));
--i; while (++i < n) {
pi = points[i];
px.shift(); px.push(pi[0]);
py.shift(); py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
return path.join("");
}
// Closed B-spline interpolation; generates "C" commands.
function d3_svg_lineBasisClosed(points) {
var path,
i = -1,
n = points.length,
m = n + 4,
pi,
px = [],
py = [];
while (++i < 4) {
pi = points[i % n];
px.push(pi[0]);
py.push(pi[1]);
}
path = [
d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), ",",
d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)
];
--i; while (++i < m) {
pi = points[i % n];
px.shift(); px.push(pi[0]);
py.shift(); py.push(pi[1]);
d3_svg_lineBasisBezier(path, px, py);
}
return path.join("");
}
function d3_svg_lineBundle(points, tension) {
var n = points.length - 1,
x0 = points[0][0],
y0 = points[0][1],
dx = points[n][0] - x0,
dy = points[n][1] - y0,
i = -1,
p,
t;
while (++i <= n) {
p = points[i];
t = i / n;
p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx);
p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy);
}
return d3_svg_lineBasis(points);
}
// Returns the dot product of the given four-element vectors.
function d3_svg_lineDot4(a, b) {
return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3];
}
// Matrix to transform basis (b-spline) control points to bezier
// control points. Derived from FvD 11.2.8.
var d3_svg_lineBasisBezier1 = [0, 2/3, 1/3, 0],
d3_svg_lineBasisBezier2 = [0, 1/3, 2/3, 0],
d3_svg_lineBasisBezier3 = [0, 1/6, 2/3, 1/6];
// Pushes a "C" Bézier curve onto the specified path array, given the
// two specified four-element arrays which define the control points.
function d3_svg_lineBasisBezier(path, x, y) {
path.push(
"C", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x),
",", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y),
",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x),
",", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y),
",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x),
",", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y));
}
// Computes the slope from points p0 to p1.
function d3_svg_lineSlope(p0, p1) {
return (p1[1] - p0[1]) / (p1[0] - p0[0]);
}
// Compute three-point differences for the given points.
// http://en.wikipedia.org/wiki/Cubic_Hermite_spline#Finite_difference
function d3_svg_lineFiniteDifferences(points) {
var i = 0,
j = points.length - 1,
m = [],
p0 = points[0],
p1 = points[1],
d = m[0] = d3_svg_lineSlope(p0, p1);
while (++i < j) {
m[i] = d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]));
}
m[i] = d;
return m;
}
// Interpolates the given points using Fritsch-Carlson Monotone cubic Hermite
// interpolation. Returns an array of tangent vectors. For details, see
// http://en.wikipedia.org/wiki/Monotone_cubic_interpolation
function d3_svg_lineMonotoneTangents(points) {
var tangents = [],
d,
a,
b,
s,
m = d3_svg_lineFiniteDifferences(points),
i = -1,
j = points.length - 1;
// The first two steps are done by computing finite-differences:
// 1. Compute the slopes of the secant lines between successive points.
// 2. Initialize the tangents at every point as the average of the secants.
// Then, for each segment…
while (++i < j) {
d = d3_svg_lineSlope(points[i], points[i + 1]);
// 3. If two successive yk = y{k + 1} are equal (i.e., d is zero), then set
// mk = m{k + 1} = 0 as the spline connecting these points must be flat to
// preserve monotonicity. Ignore step 4 and 5 for those k.
if (Math.abs(d) < 1e-6) {
m[i] = m[i + 1] = 0;
} else {
// 4. Let ak = mk / dk and bk = m{k + 1} / dk.
a = m[i] / d;
b = m[i + 1] / d;
// 5. Prevent overshoot and ensure monotonicity by restricting the
// magnitude of vector <ak, bk> to a circle of radius 3.
s = a * a + b * b;
if (s > 9) {
s = d * 3 / Math.sqrt(s);
m[i] = s * a;
m[i + 1] = s * b;
}
}
}
// Compute the normalized tangent vector from the slopes. Note that if x is
// not monotonic, it's possible that the slope will be infinite, so we protect
// against NaN by setting the coordinate to zero.
i = -1; while (++i <= j) {
s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0])
/ (6 * (1 + m[i] * m[i]));
tangents.push([s || 0, m[i] * s || 0]);
}
return tangents;
}
function d3_svg_lineMonotone(points) {
return points.length < 3
? d3_svg_lineLinear(points)
: points[0] +
d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points));
}
d3.svg.line.radial = function() {
var line = d3_svg_line(d3_svg_lineRadial);
line.radius = line.x, delete line.x;
line.angle = line.y, delete line.y;
return line;
};
function d3_svg_lineRadial(points) {
var point,
i = -1,
n = points.length,
r,
a;
while (++i < n) {
point = points[i];
r = point[0];
a = point[1] + d3_svg_arcOffset;
point[0] = r * Math.cos(a);
point[1] = r * Math.sin(a);
}
return points;
}
function d3_svg_area(projection) {
var x0 = d3_svg_lineX,
x1 = d3_svg_lineX,
y0 = 0,
y1 = d3_svg_lineY,
interpolate,
i0,
i1,
tension = .7;
function area(d) {
if (d.length < 1) return null;
var points0 = d3_svg_linePoints(this, d, x0, y0),
points1 = d3_svg_linePoints(this, d, x0 === x1 ? d3_svg_areaX(points0) : x1, y0 === y1 ? d3_svg_areaY(points0) : y1);
return "M" + i0(projection(points1), tension)
+ "L" + i1(projection(points0.reverse()), tension)
+ "Z";
}
area.x = function(x) {
if (!arguments.length) return x1;
x0 = x1 = x;
return area;
};
area.x0 = function(x) {
if (!arguments.length) return x0;
x0 = x;
return area;
};
area.x1 = function(x) {
if (!arguments.length) return x1;
x1 = x;
return area;
};
area.y = function(y) {
if (!arguments.length) return y1;
y0 = y1 = y;
return area;
};
area.y0 = function(y) {
if (!arguments.length) return y0;
y0 = y;
return area;
};
area.y1 = function(y) {
if (!arguments.length) return y1;
y1 = y;
return area;
};
area.interpolate = function(x) {
if (!arguments.length) return interpolate;
i0 = d3_svg_lineInterpolators[interpolate = x];
i1 = i0.reverse || i0;
return area;
};
area.tension = function(x) {
if (!arguments.length) return tension;
tension = x;
return area;
};
return area.interpolate("linear");
}
d3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter;
d3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore;
d3.svg.area = function() {
return d3_svg_area(Object);
};
function d3_svg_areaX(points) {
return function(d, i) {
return points[i][0];
};
}
function d3_svg_areaY(points) {
return function(d, i) {
return points[i][1];
};
}
d3.svg.area.radial = function() {
var area = d3_svg_area(d3_svg_lineRadial);
area.radius = area.x, delete area.x;
area.innerRadius = area.x0, delete area.x0;
area.outerRadius = area.x1, delete area.x1;
area.angle = area.y, delete area.y;
area.startAngle = area.y0, delete area.y0;
area.endAngle = area.y1, delete area.y1;
return area;
};
d3.svg.chord = function() {
var source = d3_svg_chordSource,
target = d3_svg_chordTarget,
radius = d3_svg_chordRadius,
startAngle = d3_svg_arcStartAngle,
endAngle = d3_svg_arcEndAngle;
// TODO Allow control point to be customized.
function chord(d, i) {
var s = subgroup(this, source, d, i),
t = subgroup(this, target, d, i);
return "M" + s.p0
+ arc(s.r, s.p1) + (equals(s, t)
? curve(s.r, s.p1, s.r, s.p0)
: curve(s.r, s.p1, t.r, t.p0)
+ arc(t.r, t.p1)
+ curve(t.r, t.p1, s.r, s.p0))
+ "Z";
}
function subgroup(self, f, d, i) {
var subgroup = f.call(self, d, i),
r = radius.call(self, subgroup, i),
a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset,
a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset;
return {
r: r,
a0: a0,
a1: a1,
p0: [r * Math.cos(a0), r * Math.sin(a0)],
p1: [r * Math.cos(a1), r * Math.sin(a1)]
};
}
function equals(a, b) {
return a.a0 == b.a0 && a.a1 == b.a1;
}
function arc(r, p) {
return "A" + r + "," + r + " 0 0,1 " + p;
}
function curve(r0, p0, r1, p1) {
return "Q 0,0 " + p1;
}
chord.radius = function(v) {
if (!arguments.length) return radius;
radius = d3.functor(v);
return chord;
};
chord.source = function(v) {
if (!arguments.length) return source;
source = d3.functor(v);
return chord;
};
chord.target = function(v) {
if (!arguments.length) return target;
target = d3.functor(v);
return chord;
};
chord.startAngle = function(v) {
if (!arguments.length) return startAngle;
startAngle = d3.functor(v);
return chord;
};
chord.endAngle = function(v) {
if (!arguments.length) return endAngle;
endAngle = d3.functor(v);
return chord;
};
return chord;
};
function d3_svg_chordSource(d) {
return d.source;
}
function d3_svg_chordTarget(d) {
return d.target;
}
function d3_svg_chordRadius(d) {
return d.radius;
}
function d3_svg_chordStartAngle(d) {
return d.startAngle;
}
function d3_svg_chordEndAngle(d) {
return d.endAngle;
}
d3.svg.diagonal = function() {
var source = d3_svg_chordSource,
target = d3_svg_chordTarget,
projection = d3_svg_diagonalProjection;
function diagonal(d, i) {
var p0 = source.call(this, d, i),
p3 = target.call(this, d, i),
m = (p0.y + p3.y) / 2,
p = [p0, {x: p0.x, y: m}, {x: p3.x, y: m}, p3];
p = p.map(projection);
return "M" + p[0] + "C" + p[1] + " " + p[2] + " " + p[3];
}
diagonal.source = function(x) {
if (!arguments.length) return source;
source = d3.functor(x);
return diagonal;
};
diagonal.target = function(x) {
if (!arguments.length) return target;
target = d3.functor(x);
return diagonal;
};
diagonal.projection = function(x) {
if (!arguments.length) return projection;
projection = x;
return diagonal;
};
return diagonal;
};
function d3_svg_diagonalProjection(d) {
return [d.x, d.y];
}
d3.svg.diagonal.radial = function() {
var diagonal = d3.svg.diagonal(),
projection = d3_svg_diagonalProjection,
projection_ = diagonal.projection;
diagonal.projection = function(x) {
return arguments.length
? projection_(d3_svg_diagonalRadialProjection(projection = x))
: projection;
};
return diagonal;
};
function d3_svg_diagonalRadialProjection(projection) {
return function() {
var d = projection.apply(this, arguments),
r = d[0],
a = d[1] + d3_svg_arcOffset;
return [r * Math.cos(a), r * Math.sin(a)];
};
}
d3.svg.mouse = function(container) {
return d3_svg_mousePoint(container, d3.event);
};
// https://bugs.webkit.org/show_bug.cgi?id=44083
var d3_mouse_bug44083 = /WebKit/.test(navigator.userAgent) ? -1 : 0;
function d3_svg_mousePoint(container, e) {
var point = (container.ownerSVGElement || container).createSVGPoint();
if ((d3_mouse_bug44083 < 0) && (window.scrollX || window.scrollY)) {
var svg = d3.select(document.body)
.append("svg:svg")
.style("position", "absolute")
.style("top", 0)
.style("left", 0);
var ctm = svg[0][0].getScreenCTM();
d3_mouse_bug44083 = !(ctm.f || ctm.e);
svg.remove();
}
if (d3_mouse_bug44083) {
point.x = e.pageX;
point.y = e.pageY;
} else {
point.x = e.clientX;
point.y = e.clientY;
}
point = point.matrixTransform(container.getScreenCTM().inverse());
return [point.x, point.y];
};
d3.svg.touches = function(container) {
var touches = d3.event.touches;
return touches ? d3_array(touches).map(function(touch) {
var point = d3_svg_mousePoint(container, touch);
point.identifier = touch.identifier;
return point;
}) : [];
};
d3.svg.symbol = function() {
var type = d3_svg_symbolType,
size = d3_svg_symbolSize;
function symbol(d, i) {
return (d3_svg_symbols[type.call(this, d, i)]
|| d3_svg_symbols.circle)
(size.call(this, d, i));
}
symbol.type = function(x) {
if (!arguments.length) return type;
type = d3.functor(x);
return symbol;
};
// size of symbol in square pixels
symbol.size = function(x) {
if (!arguments.length) return size;
size = d3.functor(x);
return symbol;
};
return symbol;
};
function d3_svg_symbolSize() {
return 64;
}
function d3_svg_symbolType() {
return "circle";
}
// TODO cross-diagonal?
var d3_svg_symbols = {
"circle": function(size) {
var r = Math.sqrt(size / Math.PI);
return "M0," + r
+ "A" + r + "," + r + " 0 1,1 0," + (-r)
+ "A" + r + "," + r + " 0 1,1 0," + r
+ "Z";
},
"cross": function(size) {
var r = Math.sqrt(size / 5) / 2;
return "M" + -3 * r + "," + -r
+ "H" + -r
+ "V" + -3 * r
+ "H" + r
+ "V" + -r
+ "H" + 3 * r
+ "V" + r
+ "H" + r
+ "V" + 3 * r
+ "H" + -r
+ "V" + r
+ "H" + -3 * r
+ "Z";
},
"diamond": function(size) {
var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)),
rx = ry * d3_svg_symbolTan30;
return "M0," + -ry
+ "L" + rx + ",0"
+ " 0," + ry
+ " " + -rx + ",0"
+ "Z";
},
"square": function(size) {
var r = Math.sqrt(size) / 2;
return "M" + -r + "," + -r
+ "L" + r + "," + -r
+ " " + r + "," + r
+ " " + -r + "," + r
+ "Z";
},
"triangle-down": function(size) {
var rx = Math.sqrt(size / d3_svg_symbolSqrt3),
ry = rx * d3_svg_symbolSqrt3 / 2;
return "M0," + ry
+ "L" + rx +"," + -ry
+ " " + -rx + "," + -ry
+ "Z";
},
"triangle-up": function(size) {
var rx = Math.sqrt(size / d3_svg_symbolSqrt3),
ry = rx * d3_svg_symbolSqrt3 / 2;
return "M0," + -ry
+ "L" + rx +"," + ry
+ " " + -rx + "," + ry
+ "Z";
}
};
d3.svg.symbolTypes = d3.keys(d3_svg_symbols);
var d3_svg_symbolSqrt3 = Math.sqrt(3),
d3_svg_symbolTan30 = Math.tan(30 * Math.PI / 180);
d3.svg.axis = function() {
var scale = d3.scale.linear(),
orient = "bottom",
tickMajorSize = 6,
tickMinorSize = 6,
tickEndSize = 6,
tickPadding = 3,
tickArguments_ = [10],
tickFormat_,
tickSubdivide = 0;
function axis(selection) {
selection.each(function(d, i, j) {
var g = d3.select(this);
// If selection is a transition, create subtransitions.
var transition = selection.delay ? function(o) {
var id = d3_transitionInheritId;
try {
d3_transitionInheritId = selection.id;
return o.transition()
.delay(selection[j][i].delay)
.duration(selection[j][i].duration)
.ease(selection.ease());
} finally {
d3_transitionInheritId = id;
}
} : Object;
// Ticks.
var ticks = scale.ticks.apply(scale, tickArguments_),
tickFormat = tickFormat_ == null ? scale.tickFormat.apply(scale, tickArguments_) : tickFormat_;
// Minor ticks.
var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide),
subtick = g.selectAll(".minor").data(subticks, String),
subtickEnter = subtick.enter().insert("svg:line", "g").attr("class", "tick minor").style("opacity", 1e-6),
subtickExit = transition(subtick.exit()).style("opacity", 1e-6).remove(),
subtickUpdate = transition(subtick).style("opacity", 1);
// Major ticks.
var tick = g.selectAll("g").data(ticks, String),
tickEnter = tick.enter().insert("svg:g", "path").style("opacity", 1e-6),
tickExit = transition(tick.exit()).style("opacity", 1e-6).remove(),
tickUpdate = transition(tick).style("opacity", 1),
tickTransform;
// Domain.
var range = d3_scaleExtent(scale.range()),
path = g.selectAll(".domain").data([0]),
pathEnter = path.enter().append("svg:path").attr("class", "domain"),
pathUpdate = transition(path);
// Stash the new scale and grab the old scale.
var scale0 = this.__chart__ || scale;
this.__chart__ = scale.copy();
tickEnter.append("svg:line").attr("class", "tick");
tickEnter.append("svg:text");
tickUpdate.select("text").text(tickFormat);
switch (orient) {
case "bottom": {
tickTransform = d3_svg_axisX;
subtickUpdate.attr("x2", 0).attr("y2", tickMinorSize);
tickUpdate.select("line").attr("x2", 0).attr("y2", tickMajorSize);
tickUpdate.select("text").attr("x", 0).attr("y", Math.max(tickMajorSize, 0) + tickPadding).attr("dy", ".71em").attr("text-anchor", "middle");
pathUpdate.attr("d", "M" + range[0] + "," + tickEndSize + "V0H" + range[1] + "V" + tickEndSize);
break;
}
case "top": {
tickTransform = d3_svg_axisX;
subtickUpdate.attr("x2", 0).attr("y2", -tickMinorSize);
tickUpdate.select("line").attr("x2", 0).attr("y2", -tickMajorSize);
tickUpdate.select("text").attr("x", 0).attr("y", -(Math.max(tickMajorSize, 0) + tickPadding)).attr("dy", "0em").attr("text-anchor", "middle");
pathUpdate.attr("d", "M" + range[0] + "," + -tickEndSize + "V0H" + range[1] + "V" + -tickEndSize);
break;
}
case "left": {
tickTransform = d3_svg_axisY;
subtickUpdate.attr("x2", -tickMinorSize).attr("y2", 0);
tickUpdate.select("line").attr("x2", -tickMajorSize).attr("y2", 0);
tickUpdate.select("text").attr("x", -(Math.max(tickMajorSize, 0) + tickPadding)).attr("y", 0).attr("dy", ".32em").attr("text-anchor", "end");
pathUpdate.attr("d", "M" + -tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + -tickEndSize);
break;
}
case "right": {
tickTransform = d3_svg_axisY;
subtickUpdate.attr("x2", tickMinorSize).attr("y2", 0);
tickUpdate.select("line").attr("x2", tickMajorSize).attr("y2", 0);
tickUpdate.select("text").attr("x", Math.max(tickMajorSize, 0) + tickPadding).attr("y", 0).attr("dy", ".32em").attr("text-anchor", "start");
pathUpdate.attr("d", "M" + tickEndSize + "," + range[0] + "H0V" + range[1] + "H" + tickEndSize);
break;
}
}
tickEnter.call(tickTransform, scale0);
tickUpdate.call(tickTransform, scale);
tickExit.call(tickTransform, scale);
subtickEnter.call(tickTransform, scale0);
subtickUpdate.call(tickTransform, scale);
subtickExit.call(tickTransform, scale);
});
}
axis.scale = function(x) {
if (!arguments.length) return scale;
scale = x;
return axis;
};
axis.orient = function(x) {
if (!arguments.length) return orient;
orient = x;
return axis;
};
axis.ticks = function() {
if (!arguments.length) return tickArguments_;
tickArguments_ = arguments;
return axis;
};
axis.tickFormat = function(x) {
if (!arguments.length) return tickFormat_;
tickFormat_ = x;
return axis;
};
axis.tickSize = function(x, y, z) {
if (!arguments.length) return tickMajorSize;
var n = arguments.length - 1;
tickMajorSize = +x;
tickMinorSize = n > 1 ? +y : tickMajorSize;
tickEndSize = n > 0 ? +arguments[n] : tickMajorSize;
return axis;
};
axis.tickPadding = function(x) {
if (!arguments.length) return tickPadding;
tickPadding = +x;
return axis;
};
axis.tickSubdivide = function(x) {
if (!arguments.length) return tickSubdivide;
tickSubdivide = +x;
return axis;
};
return axis;
};
function d3_svg_axisX(selection, x) {
selection.attr("transform", function(d) { return "translate(" + x(d) + ",0)"; });
}
function d3_svg_axisY(selection, y) {
selection.attr("transform", function(d) { return "translate(0," + y(d) + ")"; });
}
function d3_svg_axisSubdivide(scale, ticks, m) {
subticks = [];
if (m && ticks.length > 1) {
var extent = d3_scaleExtent(scale.domain()),
subticks,
i = -1,
n = ticks.length,
d = (ticks[1] - ticks[0]) / ++m,
j,
v;
while (++i < n) {
for (j = m; --j > 0;) {
if ((v = +ticks[i] - j * d) >= extent[0]) {
subticks.push(v);
}
}
}
for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1];) {
subticks.push(v);
}
}
return subticks;
}
d3.behavior = {};
d3.behavior.drag = function() {
var event = d3.dispatch("drag", "dragstart", "dragend");
function drag() {
this
.on("mousedown.drag", mousedown)
.on("touchstart.drag", mousedown);
d3.select(window)
.on("mousemove.drag", d3_behavior_dragMove)
.on("touchmove.drag", d3_behavior_dragMove)
.on("mouseup.drag", d3_behavior_dragUp, true)
.on("touchend.drag", d3_behavior_dragUp, true)
.on("click.drag", d3_behavior_dragClick, true);
}
// snapshot the local context for subsequent dispatch
function start() {
d3_behavior_dragEvent = event;
d3_behavior_dragEventTarget = d3.event.target;
d3_behavior_dragOffset = d3_behavior_dragPoint((d3_behavior_dragTarget = this).parentNode);
d3_behavior_dragMoved = 0;
d3_behavior_dragArguments = arguments;
}
function mousedown() {
start.apply(this, arguments);
d3_behavior_dragDispatch("dragstart");
}
drag.on = function(type, listener) {
event[type].add(listener);
return drag;
};
return drag;
};
var d3_behavior_dragEvent,
d3_behavior_dragEventTarget,
d3_behavior_dragTarget,
d3_behavior_dragArguments,
d3_behavior_dragOffset,
d3_behavior_dragMoved,
d3_behavior_dragStopClick;
function d3_behavior_dragDispatch(type) {
var o = d3.event, p = d3_behavior_dragTarget.parentNode, dx = 0, dy = 0;
if (p) {
p = d3_behavior_dragPoint(p);
dx = p[0] - d3_behavior_dragOffset[0];
dy = p[1] - d3_behavior_dragOffset[1];
d3_behavior_dragOffset = p;
d3_behavior_dragMoved |= dx | dy;
}
try {
d3.event = {dx: dx, dy: dy};
d3_behavior_dragEvent[type].dispatch.apply(d3_behavior_dragTarget, d3_behavior_dragArguments);
} finally {
d3.event = o;
}
o.preventDefault();
}
function d3_behavior_dragPoint(container) {
return d3.event.touches
? d3.svg.touches(container)[0]
: d3.svg.mouse(container);
}
function d3_behavior_dragMove() {
if (!d3_behavior_dragTarget) return;
var parent = d3_behavior_dragTarget.parentNode;
// O NOES! The drag element was removed from the DOM.
if (!parent) return d3_behavior_dragUp();
d3_behavior_dragDispatch("drag");
d3_behavior_dragCancel();
}
function d3_behavior_dragUp() {
if (!d3_behavior_dragTarget) return;
d3_behavior_dragDispatch("dragend");
d3_behavior_dragTarget = null;
// If the node was moved, prevent the mouseup from propagating.
// Also prevent the subsequent click from propagating (e.g., for anchors).
if (d3_behavior_dragMoved && d3_behavior_dragEventTarget === d3.event.target) {
d3_behavior_dragStopClick = true;
d3_behavior_dragCancel();
}
}
function d3_behavior_dragClick() {
if (d3_behavior_dragStopClick && d3_behavior_dragEventTarget === d3.event.target) {
d3_behavior_dragCancel();
d3_behavior_dragStopClick = false;
d3_behavior_dragEventTarget = null;
}
}
function d3_behavior_dragCancel() {
d3.event.stopPropagation();
d3.event.preventDefault();
}
// TODO unbind zoom behavior?
// TODO unbind listener?
d3.behavior.zoom = function() {
var xyz = [0, 0, 0],
event = d3.dispatch("zoom"),
origin = d3_behavior_zoomOrigin([0, 0, 0]),
extents = [[Infinity, -Infinity],
[Infinity, -Infinity],
[-Infinity, Infinity]];
function zoom() {
this
.on("mousedown.zoom", mousedown)
.on("mousewheel.zoom", mousewheel)
.on("DOMMouseScroll.zoom", mousewheel)
.on("dblclick.zoom", dblclick)
.on("touchstart.zoom", touchstart);
d3.select(window)
.on("mousemove.zoom", d3_behavior_zoomMousemove)
.on("mouseup.zoom", d3_behavior_zoomMouseup)
.on("touchmove.zoom", d3_behavior_zoomTouchmove)
.on("touchend.zoom", d3_behavior_zoomTouchup)
.on("click.zoom", d3_behavior_zoomClick, true);
}
// snapshot the local context for subsequent dispatch
function start() {
d3_behavior_zoomXyz = xyz = origin.apply(this, arguments);
d3_behavior_zoomExtents = extents;
d3_behavior_zoomDispatch = event.zoom.dispatch;
d3_behavior_zoomEventTarget = d3.event.target;
d3_behavior_zoomTarget = this;
d3_behavior_zoomArguments = arguments;
}
function mousedown() {
start.apply(this, arguments);
d3_behavior_zoomPanning = d3_behavior_zoomLocation(d3.svg.mouse(d3_behavior_zoomTarget));
d3_behavior_zoomMoved = false;
d3.event.preventDefault();
window.focus();
}
// store starting mouse location
function mousewheel() {
start.apply(this, arguments);
if (!d3_behavior_zoomZooming) d3_behavior_zoomZooming = d3_behavior_zoomLocation(d3.svg.mouse(d3_behavior_zoomTarget));
d3_behavior_zoomTo(d3_behavior_zoomDelta() + xyz[2], d3.svg.mouse(d3_behavior_zoomTarget), d3_behavior_zoomZooming);
}
function dblclick() {
start.apply(this, arguments);
var mouse = d3.svg.mouse(d3_behavior_zoomTarget);
d3_behavior_zoomTo(d3.event.shiftKey ? Math.ceil(xyz[2] - 1) : Math.floor(xyz[2] + 1), mouse, d3_behavior_zoomLocation(mouse));
}
// doubletap detection
function touchstart() {
start.apply(this, arguments);
var touches = d3_behavior_zoomTouchup(),
touch,
now = Date.now();
if ((touches.length === 1) && (now - d3_behavior_zoomLast < 300)) {
d3_behavior_zoomTo(1 + Math.floor(xyz[2]), touch = touches[0], d3_behavior_zoomLocations[touch.identifier]);
}
d3_behavior_zoomLast = now;
}
zoom.origin = function(x) {
if (!arguments.length) return origin;
origin = x == null ? d3_behavior_zoomOrigin([0, 0, 0]) : x;
return zoom;
};
zoom.extents = function(x) {
if (!arguments.length) return extents;
extents = x == null ? Object : x;
return zoom;
};
zoom.on = function(type, listener) {
event[type].add(listener);
return zoom;
};
return zoom;
};
var d3_behavior_zoomDiv,
d3_behavior_zoomPanning,
d3_behavior_zoomZooming,
d3_behavior_zoomLocations = {}, // identifier -> location
d3_behavior_zoomLast = 0,
d3_behavior_zoomXyz,
d3_behavior_zoomExtents,
d3_behavior_zoomDispatch,
d3_behavior_zoomEventTarget,
d3_behavior_zoomTarget,
d3_behavior_zoomArguments,
d3_behavior_zoomMoved,
d3_behavior_zoomStopClick;
function d3_behavior_zoomLocation(point) {
return [
point[0] - d3_behavior_zoomXyz[0],
point[1] - d3_behavior_zoomXyz[1],
d3_behavior_zoomXyz[2]
];
}
// detect the pixels that would be scrolled by this wheel event
function d3_behavior_zoomDelta() {
// mousewheel events are totally broken!
// https://bugs.webkit.org/show_bug.cgi?id=40441
// not only that, but Chrome and Safari differ in re. to acceleration!
if (!d3_behavior_zoomDiv) {
d3_behavior_zoomDiv = d3.select("body").append("div")
.style("visibility", "hidden")
.style("top", 0)
.style("height", 0)
.style("width", 0)
.style("overflow-y", "scroll")
.append("div")
.style("height", "2000px")
.node().parentNode;
}
var e = d3.event, delta;
try {
d3_behavior_zoomDiv.scrollTop = 1000;
d3_behavior_zoomDiv.dispatchEvent(e);
delta = 1000 - d3_behavior_zoomDiv.scrollTop;
} catch (error) {
delta = e.wheelDelta || (-e.detail * 5);
}
return delta * .005;
}
// Note: Since we don't rotate, it's possible for the touches to become
// slightly detached from their original positions. Thus, we recompute the
// touch points on touchend as well as touchstart!
function d3_behavior_zoomTouchup() {
var touches = d3.svg.touches(d3_behavior_zoomTarget),
i = -1,
n = touches.length,
touch;
while (++i < n) d3_behavior_zoomLocations[(touch = touches[i]).identifier] = d3_behavior_zoomLocation(touch);
return touches;
}
function d3_behavior_zoomTouchmove() {
var touches = d3.svg.touches(d3_behavior_zoomTarget);
switch (touches.length) {
// single-touch pan
case 1: {
var touch = touches[0];
d3_behavior_zoomTo(d3_behavior_zoomXyz[2], touch, d3_behavior_zoomLocations[touch.identifier]);
break;
}
// double-touch pan + zoom
case 2: {
var p0 = touches[0],
p1 = touches[1],
p2 = [(p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2],
l0 = d3_behavior_zoomLocations[p0.identifier],
l1 = d3_behavior_zoomLocations[p1.identifier],
l2 = [(l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2, l0[2]];
d3_behavior_zoomTo(Math.log(d3.event.scale) / Math.LN2 + l0[2], p2, l2);
break;
}
}
}
function d3_behavior_zoomMousemove() {
d3_behavior_zoomZooming = null;
if (d3_behavior_zoomPanning) {
d3_behavior_zoomMoved = true;
d3_behavior_zoomTo(d3_behavior_zoomXyz[2], d3.svg.mouse(d3_behavior_zoomTarget), d3_behavior_zoomPanning);
}
}
function d3_behavior_zoomMouseup() {
if (d3_behavior_zoomPanning) {
if (d3_behavior_zoomMoved && d3_behavior_zoomEventTarget === d3.event.target) {
d3_behavior_zoomStopClick = true;
}
d3_behavior_zoomMousemove();
d3_behavior_zoomPanning = null;
}
}
function d3_behavior_zoomClick() {
if (d3_behavior_zoomStopClick && d3_behavior_zoomEventTarget === d3.event.target) {
d3.event.stopPropagation();
d3.event.preventDefault();
d3_behavior_zoomStopClick = false;
d3_behavior_zoomEventTarget = null;
}
}
function d3_behavior_zoomTo(z, x0, x1) {
z = d3_behavior_zoomExtentsRange(z, 2);
var j = Math.pow(2, d3_behavior_zoomXyz[2]),
k = Math.pow(2, z),
K = Math.pow(2, (d3_behavior_zoomXyz[2] = z) - x1[2]),
x = d3_behavior_zoomExtentsRange((x0[0] - x1[0] * K), 0, k),
y = d3_behavior_zoomExtentsRange((x0[1] - x1[1] * K), 1, k),
x_ = d3_behavior_zoomXyz[0],
y_ = d3_behavior_zoomXyz[1],
o = d3.event; // Events can be reentrant (e.g., focus).
d3_behavior_zoomXyz[0] = x;
d3_behavior_zoomXyz[1] = y;
d3.event = {
scale: k,
translate: [x, y],
transform: function(sx, sy) {
if (sx) transform(sx, x_, x);
if (sy) transform(sy, y_, y);
}
};
function transform(scale, a, b) {
var range = scale.range().map(function(v) { return ((v - b) * j) / k + a; });
scale.domain(range.map(scale.invert));
}
try {
d3_behavior_zoomDispatch.apply(d3_behavior_zoomTarget, d3_behavior_zoomArguments);
} finally {
d3.event = o;
}
o.preventDefault();
}
function d3_behavior_zoomExtentsRange(x, i, k) {
var range = d3_behavior_zoomExtents[i],
r1 = range[1];
if (arguments.length === 3) {
return Math.max(r1 * (r1 === -Infinity ? 1 : 1 / k - 1),
Math.min(range[0], x / k)) * k;
}
return Math.max(range[0], Math.min(r1, x));
}
function d3_behavior_zoomOrigin(origin) {
return function() { return origin; };
}
})();
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Earth's Surface Temperature: 500-2009</title>
<link type="text/css" rel="stylesheet" href="surface-temperature.css"/>
<script type="text/javascript" src="d3.js"></script>
<style type="text/css">
body {
font: 13px sans-serif;
}
rect {
fill: #fff;
}
#chart {
background-color: #F7F2C5;
width: 960px;
height: 500px;
border: solid 1px #ccc;
position: relative;
}
circle, .line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
circle {
fill: #fff;
fill-opacity: .2;
cursor: move;
}
circle.selected {
fill: #ff7f0e;
stroke: #ff7f0e;
}
</style>
</head>
<body>
<div id="chart"></div>
<script type="text/javascript" src="surface-temperature-data.js"></script>
<script type="text/javascript">
var graph = {};
graph.xmax = 2000;
graph.xmin = 500;
graph.ymax = 15;
graph.ymin = 13;
graph.title = "Earth's Surface Temperature: years 500-2009";
graph.xlabel = "Year";
graph.ylabel = "Degrees C";
var chart = document.getElementById("chart"),
cx = chart.clientWidth,
cy = chart.clientHeight,
padding = {
"top": graph.title ? 30 : 20,
"right": 30,
"bottom": graph.xlabel ? 40 : 10,
"left": graph.ylabel ? 70 : 45
},
size = {
"width": cx - padding.left - padding.right,
"height": cy - padding.top - padding.bottom
},
mw = size.width,
mh = size.height,
tx = function(d) { return "translate(" + x(d) + ",0)"; },
ty = function(d) { return "translate(0," + y(d) + ")"; },
stroke = function(d) { return d ? "#ccc" : "#666"; },
surface_temperature = global_temperatures
.temperature_anomolies.map(function(e) {
return [e[0], e[1] + global_temperatures.global_surface_temperature_1961_1990];
}),
// x-scale
x = d3.scale.linear()
.domain([graph.xmin, graph.xmax])
.range([0, mw]),
// drag x-axis logic
downscalex = x.copy(),
downx = Math.NaN,
// y-scale (inverted domain)
y = d3.scale.linear()
.domain([graph.ymax, graph.ymin])
.nice()
.range([0, mh])
.nice(),
line = d3.svg.line()
.x(function(d, i) { return x(surface_temperature[i][0]); })
.y(function(d, i) { return y(surface_temperature[i][1]); }),
// drag x-axis logic
downscaley = y.copy(),
downy = Math.NaN,
dragged = null,
selected = surface_temperature[0];
var vis = d3.select("#chart").append("svg:svg")
.attr("width", cx)
.attr("height", cy)
.append("svg:g")
.attr("transform", "translate(" + padding.left + "," + padding.top + ")");
var plot = vis.append("svg:rect")
.attr("width", size.width)
.attr("height", size.height)
.style("fill", "#EEEEEE")
.attr("pointer-events", "all")
.call(d3.behavior.zoom().on("zoom", redraw))
.on("mousedown", function() {
if (d3.event.altKey) {
points.push(selected = dragged = d3.svg.mouse(vis.node()));
update();
d3.event.preventDefault();
d3.event.stopPropagation();
}
});
vis.append("svg:svg")
.attr("top", 0)
.attr("left", 0)
.attr("width", size.width)
.attr("height", size.height)
.attr("viewBox", "0 0 "+size.width+" "+size.height)
.append("svg:path")
.attr("class", "line")
.attr("d", line(surface_temperature))
// add Chart Title
if (graph.title) {
vis.append("svg:text")
.text(graph.title)
.attr("x", size.width/2)
.attr("dy","-1em")
.style("text-anchor","middle");
}
// Add the x-axis label
if (graph.xlabel) {
vis.append("svg:text")
.text(graph.xlabel)
.attr("x", size.width/2)
.attr("y", size.height)
.attr("dy","2.4em")
.style("text-anchor","middle");
}
// add y-axis label
if (graph.ylabel) {
vis.append("svg:g")
.append("svg:text")
.text( graph.ylabel)
.style("text-anchor","middle")
.attr("transform","translate(" + -50 + " " + size.height/2+") rotate(-90)");
}
d3.select(window)
.on("mousemove", mousemove)
.on("mouseup", mouseup)
.on("keydown", keydown);
//
// draw the data
//
function update() {
var lines = vis.select("path").attr("d", line(surface_temperature)),
x_extent = x.domain()[1] - x.domain()[0];
var circle = vis.select("svg").selectAll("circle")
.data(surface_temperature, function(d) { return d; });
circle.enter().append("svg:circle")
.attr("class", function(d) { return d === selected ? "selected" : null; })
.attr("cx", function(d) { return x(d[0]); })
.attr("cy", function(d) { return y(d[1]); })
.attr("r", 4.0)
// .attr("r", function(d) { return 800 / (x.domain()[1] - x.domain()[0]); })
.on("mousedown", function(d) {
selected = dragged = d;
update();
})
.transition()
.duration(300)
.ease("elastic")
.attr("r", 2.0);
// .attr("r", function(d) { return 400 / (x.domain()[1] - x.domain()[0]); });
circle
.attr("class", function(d) { return d === selected ? "selected" : null; })
.attr("cx", function(d) { return x(d[0]); })
.attr("cy", function(d) { return y(d[1]); });
circle.exit().remove();
if (d3.event && d3.event.keyCode) {
d3.event.preventDefault();
d3.event.stopPropagation();
}
}
function mousemove() {
if (!dragged) return;
var m = d3.svg.mouse(vis.node());
dragged[0] = x.invert(Math.max(0, Math.min(size.width, m[0])));
dragged[1] = y.invert(Math.max(0, Math.min(size.height, m[1])));
update();
}
function mouseup() {
if (!dragged) return;
mousemove();
dragged = null;
}
function keydown() {
if (!selected) return;
switch (d3.event.keyCode) {
case 8: // backspace
case 46: { // delete
var i = surface_temperature.indexOf(selected);
surface_temperature.splice(i, 1);
selected = surface_temperature.length ? surface_temperature[i > 0 ? i - 1 : 0] : null;
update();
break;
}
}
}
redraw();
function redraw() {
if (d3.event && d3.event.transform && isNaN(downx) && isNaN(downy)) {
d3.event.transform(x, y);
};
var fx = x.tickFormat(10),
fy = y.tickFormat(10);
// Regenerate x-ticks…
var gx = vis.selectAll("g.x")
.data(x.ticks(10), String)
.attr("transform", tx);
gx.select("text")
.text(fx);
var gxe = gx.enter().insert("svg:g", "a")
.attr("class", "x")
.attr("transform", tx);
gxe.append("svg:line")
.attr("stroke", stroke)
.attr("y1", 0)
.attr("y2", size.height);
gxe.append("svg:text")
.attr("y", size.height)
.attr("dy", "1em")
.attr("text-anchor", "middle")
.text(fx)
.on("mouseover", function(d) { d3.select(this).style("font-weight", "bold");})
.on("mouseout", function(d) { d3.select(this).style("font-weight", "normal");})
.on("mousedown", function(d) {
var p = d3.svg.mouse(vis[0][0]);
downx = x.invert(p[0]);
downscalex = null;
downscalex = x.copy();
// d3.behavior.zoom().off("zoom", redraw);
});
gx.exit().remove();
// Regenerate y-ticks…
var gy = vis.selectAll("g.y")
.data(y.ticks(10), String)
.attr("transform", ty);
gy.select("text")
.text(fy);
var gye = gy.enter().insert("svg:g", "a")
.attr("class", "y")
.attr("transform", ty)
.attr("background-fill", "#FFEEB6");
gye.append("svg:line")
.attr("stroke", stroke)
.attr("x1", 0)
.attr("x2", size.width);
gye.append("svg:text")
.attr("x", -3)
.attr("dy", ".35em")
.attr("text-anchor", "end")
.text(fy)
.on("mouseover", function(d) { d3.select(this).style("font-weight", "bold");})
.on("mouseout", function(d) { d3.select(this).style("font-weight", "normal");})
.on("mousedown", function(d) {
var p = d3.svg.mouse(vis[0][0]);
downy = y.invert(p[1]);
downscaley = y.copy();
// d3.behavior.zoom().off("zoom", redraw);
});
gy.exit().remove();
update();
}
//
// axis scaling
//
// attach the mousemove and mouseup to the body
// in case one wanders off the axis line
d3.select('body')
.on("mousemove", function(d) {
var p = d3.svg.mouse(vis[0][0]);
if (!isNaN(downx)) {
var rupx = downscalex.invert(p[0]),
xaxis1 = downscalex.domain()[0],
xaxis2 = downscalex.domain()[1],
xextent = xaxis2 - xaxis1;
if (rupx !== 0) {
var changex, dragx_factor, new_domain;
dragx_factor = xextent/downx;
changex = 1 + (downx / rupx - 1) * (xextent/(downx-xaxis1))/dragx_factor;
new_domain = [xaxis1, xaxis1 + (xextent * changex)];
x.domain(new_domain);
redraw();
}
d3.event.preventDefault();
d3.event.stopPropagation();
}
if (!isNaN(downy)) {
var rupy = downscaley.invert(p[1]),
yaxis1 = downscaley.domain()[1],
yaxis2 = downscaley.domain()[0],
yextent = yaxis2 - yaxis1;
if (rupy !== 0) {
var changey, dragy_factor, new_range;
dragy_factor = yextent/downy;
changey = 1 - (rupy / downy - 1) * (yextent/(downy-yaxis1))/dragy_factor;
new_range = [yaxis1 + (yextent * changey), yaxis1];
y.domain(new_range);
redraw();
}
d3.event.preventDefault();
d3.event.stopPropagation();
}
})
.on("mouseup", function(d) {
if (!isNaN(downx)) {
redraw();
downx = Math.NaN;
d3.event.preventDefault();
d3.event.stopPropagation();
}
if (!isNaN(downy)) {
redraw();
downy = Math.NaN;
d3.event.preventDefault();
d3.event.stopPropagation();
}
});
</script>
</body>
</html>
global_temperatures = {
"global_surface_temperature_1961_1990": 14.0,
"temperature_anomolies": [
[5.0000000e+02, -7.8868754e-02],
[5.0100000e+02, -8.0449214e-02],
[5.0200000e+02, -8.2978461e-02],
[5.0300000e+02, -8.5276323e-02],
[5.0400000e+02, -8.5972790e-02],
[5.0500000e+02, -8.3747502e-02],
[5.0600000e+02, -7.7607716e-02],
[5.0700000e+02, -6.7153310e-02],
[5.0800000e+02, -5.2768273e-02],
[5.0900000e+02, -3.5681858e-02],
[5.1000000e+02, -1.7860843e-02],
[5.1100000e+02, -1.7255113e-03],
[5.1200000e+02, 1.0278936e-02],
[5.1300000e+02, 1.6184588e-02],
[5.1400000e+02, 1.4975890e-02],
[5.1500000e+02, 6.9257894e-03],
[5.1600000e+02, -6.3043279e-03],
[5.1700000e+02, -2.1856787e-02],
[5.1800000e+02, -3.6155223e-02],
[5.1900000e+02, -4.5590532e-02],
[5.2000000e+02, -4.7277872e-02],
[5.2100000e+02, -3.9715833e-02],
[5.2200000e+02, -2.3188479e-02],
[5.2300000e+02, 1.9676477e-04],
[5.2400000e+02, 2.6858989e-02],
[5.2500000e+02, 5.2412394e-02],
[5.2600000e+02, 7.2508543e-02],
[5.2700000e+02, 8.3668783e-02],
[5.2800000e+02, 8.3931766e-02],
[5.2900000e+02, 7.3190842e-02],
[5.3000000e+02, 5.3170350e-02],
[5.3100000e+02, 2.7066759e-02],
[5.3200000e+02, -1.0583302e-03],
[5.3300000e+02, -2.7010868e-02],
[5.3400000e+02, -4.7191038e-02],
[5.3500000e+02, -5.9193500e-02],
[5.3600000e+02, -6.2185852e-02],
[5.3700000e+02, -5.7004770e-02],
[5.3800000e+02, -4.5952050e-02],
[5.3900000e+02, -3.2322203e-02],
[5.4000000e+02, -1.9743972e-02],
[5.4100000e+02, -1.1460531e-02],
[5.4200000e+02, -9.6941183e-03],
[5.4300000e+02, -1.5230154e-02],
[5.4400000e+02, -2.7310693e-02],
[5.4500000e+02, -4.3855775e-02],
[5.4600000e+02, -6.1952187e-02],
[5.4700000e+02, -7.8484951e-02],
[5.4800000e+02, -9.0756713e-02],
[5.4900000e+02, -9.6952809e-02],
[5.5000000e+02, -9.6360252e-02],
[5.5100000e+02, -8.9320499e-02],
[5.5200000e+02, -7.6966206e-02],
[5.5300000e+02, -6.0841027e-02],
[5.5400000e+02, -4.2516963e-02],
[5.5500000e+02, -2.3305729e-02],
[5.5600000e+02, -4.1187298e-03],
[5.5700000e+02, 1.4519882e-02],
[5.5800000e+02, 3.2345702e-02],
[5.5900000e+02, 4.9176177e-02],
[5.6000000e+02, 6.4750273e-02],
[5.6100000e+02, 7.8638901e-02],
[5.6200000e+02, 9.0252644e-02],
[5.6300000e+02, 9.8943152e-02],
[5.6400000e+02, 1.0416832e-01],
[5.6500000e+02, 1.0567404e-01],
[5.6600000e+02, 1.0363986e-01],
[5.6700000e+02, 9.8742614e-02],
[5.6800000e+02, 9.2109946e-02],
[5.6900000e+02, 8.5161237e-02],
[5.7000000e+02, 7.9361881e-02],
[5.7100000e+02, 7.5942082e-02],
[5.7200000e+02, 7.5646051e-02],
[5.7300000e+02, 7.8576578e-02],
[5.7400000e+02, 8.4181119e-02],
[5.7500000e+02, 9.1391949e-02],
[5.7600000e+02, 9.8892524e-02],
[5.7700000e+02, 1.0544655e-01],
[5.7800000e+02, 1.1020660e-01],
[5.7900000e+02, 1.1292246e-01],
[5.8000000e+02, 1.1399551e-01],
[5.8100000e+02, 1.1436700e-01],
[5.8200000e+02, 1.1527189e-01],
[5.8300000e+02, 1.1792326e-01],
[5.8400000e+02, 1.2320575e-01],
[5.8500000e+02, 1.3144840e-01],
[5.8600000e+02, 1.4232217e-01],
[5.8700000e+02, 1.5487583e-01],
[5.8800000e+02, 1.6769393e-01],
[5.8900000e+02, 1.7913984e-01],
[5.9000000e+02, 1.8763660e-01],
[5.9100000e+02, 1.9193688e-01],
[5.9200000e+02, 1.9133812e-01],
[5.9300000e+02, 1.8580762e-01],
[5.9400000e+02, 1.7599467e-01],
[5.9500000e+02, 1.6312329e-01],
[5.9600000e+02, 1.4877892e-01],
[5.9700000e+02, 1.3462345e-01],
[5.9800000e+02, 1.2208971e-01],
[5.9900000e+02, 1.4463328e-01],
[6.0000000e+02, 9.7948303e-02],
[6.0100000e+02, 9.3681084e-02],
[6.0200000e+02, 9.0862409e-02],
[6.0300000e+02, 8.8000826e-02],
[6.0400000e+02, 8.3501570e-02],
[6.0500000e+02, 7.6000727e-02],
[6.0600000e+02, 6.4657271e-02],
[6.0700000e+02, 4.9342764e-02],
[6.0800000e+02, 3.0686608e-02],
[6.0900000e+02, 9.9619979e-03],
[6.1000000e+02, -1.1169564e-02],
[6.1100000e+02, -3.1004891e-02],
[6.1200000e+02, -4.8161427e-02],
[6.1300000e+02, -6.1869363e-02],
[6.1400000e+02, -7.2117372e-02],
[6.1500000e+02, -7.9606569e-02],
[6.1600000e+02, -8.5514147e-02],
[6.1700000e+02, -9.1119906e-02],
[6.1800000e+02, -9.7391276e-02],
[6.1900000e+02, -1.0464155e-01],
[6.2000000e+02, -1.1236388e-01],
[6.2100000e+02, -1.1930042e-01],
[6.2200000e+02, -1.2374241e-01],
[6.2300000e+02, -1.2399015e-01],
[6.2400000e+02, -1.1885194e-01],
[6.2500000e+02, -1.0804421e-01],
[6.2600000e+02, -9.2377434e-02],
[6.2700000e+02, -7.3670175e-02],
[6.2800000e+02, -5.4408481e-02],
[6.2900000e+02, -3.7239506e-02],
[6.3000000e+02, -2.4432841e-02],
[6.3100000e+02, -1.7448245e-02],
[6.3200000e+02, -1.6712542e-02],
[6.3300000e+02, -2.1644155e-02],
[6.3400000e+02, -3.0892541e-02],
[6.3500000e+02, -4.2704726e-02],
[6.3600000e+02, -5.5308655e-02],
[6.3700000e+02, -6.7217262e-02],
[6.3800000e+02, -7.7398821e-02],
[6.3900000e+02, -8.5310186e-02],
[6.4000000e+02, -9.0830369e-02],
[6.4100000e+02, -9.4149270e-02],
[6.4200000e+02, -9.5658060e-02],
[6.4300000e+02, -9.5862534e-02],
[6.4400000e+02, -9.5313782e-02],
[6.4500000e+02, -9.4535973e-02],
[6.4600000e+02, -9.3935874e-02],
[6.4700000e+02, -9.3699537e-02],
[6.4800000e+02, -9.3706492e-02],
[6.4900000e+02, -9.3505928e-02],
[6.5000000e+02, -9.2391849e-02],
[6.5100000e+02, -8.9583922e-02],
[6.5200000e+02, -8.4477380e-02],
[6.5300000e+02, -7.6886552e-02],
[6.5400000e+02, -6.7190689e-02],
[6.5500000e+02, -5.6309185e-02],
[6.5600000e+02, -4.5484656e-02],
[6.5700000e+02, -3.5921472e-02],
[6.5800000e+02, -2.8389694e-02],
[6.5900000e+02, -2.2934429e-02],
[6.6000000e+02, -1.8812183e-02],
[6.6100000e+02, -1.4708862e-02],
[6.6200000e+02, -9.1975661e-03],
[6.6300000e+02, -1.3001845e-03],
[6.6400000e+02, 9.0393728e-03],
[6.6500000e+02, 2.0755565e-02],
[6.6600000e+02, 3.1845187e-02],
[6.6700000e+02, 3.9920725e-02],
[6.6800000e+02, 4.2985133e-02],
[6.6900000e+02, 4.0183851e-02],
[6.7000000e+02, 3.2269596e-02],
[6.7100000e+02, 2.1586265e-02],
[6.7200000e+02, 1.1524158e-02],
[6.7300000e+02, 5.5751553e-03],
[6.7400000e+02, 6.2641653e-03],
[6.7500000e+02, 1.4297992e-02],
[6.7600000e+02, 2.8225582e-02],
[6.7700000e+02, 4.4753106e-02],
[6.7800000e+02, 5.9649032e-02],
[6.7900000e+02, 6.8976958e-02],
[6.8000000e+02, 7.0275738e-02],
[6.8100000e+02, 6.3310744e-02],
[6.8200000e+02, 5.0149375e-02],
[6.8300000e+02, 3.4527187e-02],
[6.8400000e+02, 2.0698010e-02],
[6.8500000e+02, 1.2126499e-02],
[6.8600000e+02, 1.0430221e-02],
[6.8700000e+02, 1.4895715e-02],
[6.8800000e+02, 2.2708394e-02],
[6.8900000e+02, 2.9812031e-02],
[6.9000000e+02, 3.2123492e-02],
[6.9100000e+02, 2.6731298e-02],
[6.9200000e+02, 1.2728606e-02],
[6.9300000e+02, -8.5422523e-03],
[6.9400000e+02, -3.3872091e-02],
[6.9500000e+02, -5.9051676e-02],
[6.9600000e+02, -7.9957615e-02],
[6.9700000e+02, -9.3556714e-02],
[6.9800000e+02, -9.8579803e-02],
[6.9900000e+02, -1.1624929e-01],
[7.0000000e+02, -8.2589570e-02],
[7.0100000e+02, -7.2866016e-02],
[7.0200000e+02, -6.4715244e-02],
[7.0300000e+02, -6.1055775e-02],
[7.0400000e+02, -6.3597545e-02],
[7.0500000e+02, -7.2491027e-02],
[7.0600000e+02, -8.6311832e-02],
[7.0700000e+02, -1.0237488e-01],
[7.0800000e+02, -1.1731389e-01],
[7.0900000e+02, -1.2781288e-01],
[7.1000000e+02, -1.3134294e-01],
[7.1100000e+02, -1.2674804e-01],
[7.1200000e+02, -1.1454440e-01],
[7.1300000e+02, -9.6851113e-02],
[7.1400000e+02, -7.6948313e-02],
[7.1500000e+02, -5.8548166e-02],
[7.1600000e+02, -4.4940219e-02],
[7.1700000e+02, -3.8215351e-02],
[7.1800000e+02, -3.8764821e-02],
[7.1900000e+02, -4.5190280e-02],
[7.2000000e+02, -5.4658970e-02],
[7.2100000e+02, -6.3621192e-02],
[7.2200000e+02, -6.8707037e-02],
[7.2300000e+02, -6.7566384e-02],
[7.2400000e+02, -5.9428624e-02],
[7.2500000e+02, -4.5235753e-02],
[7.2600000e+02, -2.7323840e-02],
[7.2700000e+02, -8.7578065e-03],
[7.2800000e+02, 7.4768676e-03],
[7.2900000e+02, 1.9185698e-02],
[7.3000000e+02, 2.5378530e-02],
[7.3100000e+02, 2.6283924e-02],
[7.3200000e+02, 2.2994249e-02],
[7.3300000e+02, 1.6888371e-02],
[7.3400000e+02, 9.0442937e-03],
[7.3500000e+02, -1.5304514e-04],
[7.3600000e+02, -1.1079408e-02],
[7.3700000e+02, -2.4602238e-02],
[7.3800000e+02, -4.1580727e-02],
[7.3900000e+02, -6.2319229e-02],
[7.4000000e+02, -8.6171965e-02],
[7.4100000e+02, -1.1144379e-01],
[7.4200000e+02, -1.3563203e-01],
[7.4300000e+02, -1.5594327e-01],
[7.4400000e+02, -1.6993363e-01],
[7.4500000e+02, -1.7608680e-01],
[7.4600000e+02, -1.7416867e-01],
[7.4700000e+02, -1.6526790e-01],
[7.4800000e+02, -1.5152294e-01],
[7.4900000e+02, -1.3561834e-01],
[7.5000000e+02, -1.2018556e-01],
[7.5100000e+02, -1.0725447e-01],
[7.5200000e+02, -9.7876617e-02],
[7.5300000e+02, -9.1991336e-02],
[7.5400000e+02, -8.8546740e-02],
[7.5500000e+02, -8.5833874e-02],
[7.5600000e+02, -8.1951436e-02],
[7.5700000e+02, -7.5296040e-02],
[7.5800000e+02, -6.4970336e-02],
[7.5900000e+02, -5.1018973e-02],
[7.6000000e+02, -3.4438996e-02],
[7.6100000e+02, -1.6961912e-02],
[7.6200000e+02, -6.5977945e-04],
[7.6300000e+02, 1.2526426e-02],
[7.6400000e+02, 2.1215544e-02],
[7.6500000e+02, 2.4862002e-02],
[7.6600000e+02, 2.3812020e-02],
[7.6700000e+02, 1.9138238e-02],
[7.6800000e+02, 1.2316139e-02],
[7.6900000e+02, 4.8497257e-03],
[7.7000000e+02, -2.0386354e-03],
[7.7100000e+02, -7.5708417e-03],
[7.7200000e+02, -1.1403121e-02],
[7.7300000e+02, -1.3481606e-02],
[7.7400000e+02, -1.3845906e-02],
[7.7500000e+02, -1.2473351e-02],
[7.7600000e+02, -9.2305236e-03],
[7.7700000e+02, -3.9483738e-03],
[7.7800000e+02, 3.4167628e-03],
[7.7900000e+02, 1.2610740e-02],
[7.8000000e+02, 2.2978772e-02],
[7.8100000e+02, 3.3488332e-02],
[7.8200000e+02, 4.2888179e-02],
[7.8300000e+02, 4.9964548e-02],
[7.8400000e+02, 5.3819829e-02],
[7.8500000e+02, 5.4088539e-02],
[7.8600000e+02, 5.1022534e-02],
[7.8700000e+02, 4.5416040e-02],
[7.8800000e+02, 3.8388915e-02],
[7.8900000e+02, 3.1089260e-02],
[7.9000000e+02, 2.4401558e-02],
[7.9100000e+02, 1.8746514e-02],
[7.9200000e+02, 1.4032786e-02],
[7.9300000e+02, 9.7755899e-03],
[7.9400000e+02, 5.3451451e-03],
[7.9500000e+02, 2.6488436e-04],
[7.9600000e+02, -5.5403855e-03],
[7.9700000e+02, -1.1634437e-02],
[7.9800000e+02, -1.7144009e-02],
[7.9900000e+02, -2.1184834e-02],
[8.0000000e+02, -2.1690772e-02],
[8.0100000e+02, -2.0041761e-02],
[8.0200000e+02, -1.5711300e-02],
[8.0300000e+02, -9.6730971e-03],
[8.0400000e+02, -3.4135368e-03],
[8.0500000e+02, 1.4173868e-03],
[8.0600000e+02, 3.4106572e-03],
[8.0700000e+02, 1.7414807e-03],
[8.0800000e+02, -3.6431371e-03],
[8.0900000e+02, -1.2035410e-02],
[8.1000000e+02, -2.2157877e-02],
[8.1100000e+02, -3.2465764e-02],
[8.1200000e+02, -4.1468395e-02],
[8.1300000e+02, -4.7985997e-02],
[8.1400000e+02, -5.1292317e-02],
[8.1500000e+02, -5.1138033e-02],
[8.1600000e+02, -4.7687957e-02],
[8.1700000e+02, -4.1423395e-02],
[8.1800000e+02, -3.3055366e-02],
[8.1900000e+02, -2.3469839e-02],
[8.2000000e+02, -1.3695212e-02],
[8.2100000e+02, -4.8594677e-03],
[8.2200000e+02, 1.8992921e-03],
[8.2300000e+02, 5.5868041e-03],
[8.2400000e+02, 5.5549856e-03],
[8.2500000e+02, 1.7007705e-03],
[8.2600000e+02, -5.4119814e-03],
[8.2700000e+02, -1.4576084e-02],
[8.2800000e+02, -2.4144519e-02],
[8.2900000e+02, -3.2392710e-02],
[8.3000000e+02, -3.7958942e-02],
[8.3100000e+02, -4.0239778e-02],
[8.3200000e+02, -3.9609676e-02],
[8.3300000e+02, -3.7369117e-02],
[8.3400000e+02, -3.5397995e-02],
[8.3500000e+02, -3.5581954e-02],
[8.3600000e+02, -3.9161629e-02],
[8.3700000e+02, -4.6200502e-02],
[8.3800000e+02, -5.5356600e-02],
[8.3900000e+02, -6.4072469e-02],
[8.4000000e+02, -6.9181318e-02],
[8.4100000e+02, -6.7796031e-02],
[8.4200000e+02, -5.8241761e-02],
[8.4300000e+02, -4.0749159e-02],
[8.4400000e+02, -1.7665724e-02],
[8.4500000e+02, 6.9351612e-03],
[8.4600000e+02, 2.8193857e-02],
[8.4700000e+02, 4.1723405e-02],
[8.4800000e+02, 4.4838275e-02],
[8.4900000e+02, 3.7383758e-02],
[8.5000000e+02, 2.1893659e-02],
[8.5100000e+02, 2.9947582e-03],
[8.5200000e+02, -1.3795094e-02],
[8.5300000e+02, -2.3536467e-02],
[8.5400000e+02, -2.3177278e-02],
[8.5500000e+02, -1.2319825e-02],
[8.5600000e+02, 6.7653252e-03],
[8.5700000e+02, 2.9853305e-02],
[8.5800000e+02, 5.1959631e-02],
[8.5900000e+02, 6.8636782e-02],
[8.6000000e+02, 7.6994031e-02],
[8.6100000e+02, 7.6186557e-02],
[8.6200000e+02, 6.7316228e-02],
[8.6300000e+02, 5.2878612e-02],
[8.6400000e+02, 3.6009516e-02],
[8.6500000e+02, 1.9794426e-02],
[8.6600000e+02, 6.8158268e-03],
[8.6700000e+02, -1.0250632e-03],
[8.6800000e+02, -2.4995905e-03],
[8.6900000e+02, 2.9988704e-03],
[8.7000000e+02, 1.5429446e-02],
[8.7100000e+02, 3.3975489e-02],
[8.7200000e+02, 5.6892104e-02],
[8.7300000e+02, 8.1473140e-02],
[8.7400000e+02, 1.0427054e-01],
[8.7500000e+02, 1.2161222e-01],
[8.7600000e+02, 1.3033643e-01],
[8.7700000e+02, 1.2854679e-01],
[8.7800000e+02, 1.1614369e-01],
[8.7900000e+02, 9.4931953e-02],
[8.8000000e+02, 6.8230362e-02],
[8.8100000e+02, 4.0071771e-02],
[8.8200000e+02, 1.4222914e-02],
[8.8300000e+02, -6.6820866e-03],
[8.8400000e+02, -2.1636362e-02],
[8.8500000e+02, -3.1248781e-02],
[8.8600000e+02, -3.7259419e-02],
[8.8700000e+02, -4.1766570e-02],
[8.8800000e+02, -4.6433246e-02],
[8.8900000e+02, -5.1930652e-02],
[8.9000000e+02, -5.7780407e-02],
[8.9100000e+02, -6.2614367e-02],
[8.9200000e+02, -6.4732774e-02],
[8.9300000e+02, -6.2754545e-02],
[8.9400000e+02, -5.6142317e-02],
[8.9500000e+02, -4.5445671e-02],
[8.9600000e+02, -3.2210428e-02],
[8.9700000e+02, -1.8610213e-02],
[8.9800000e+02, -6.9325310e-03],
[8.9900000e+02, 1.2895624e-03],
[9.0000000e+02, -1.4823917e-01],
[9.0100000e+02, -1.4850671e-01],
[9.0200000e+02, -1.4925018e-01],
[9.0300000e+02, -1.5055418e-01],
[9.0400000e+02, -1.5287704e-01],
[9.0500000e+02, -1.5678563e-01],
[9.0600000e+02, -1.6252778e-01],
[9.0700000e+02, -1.6962223e-01],
[9.0800000e+02, -1.7667225e-01],
[9.0900000e+02, -1.8155065e-01],
[9.1000000e+02, -1.8197116e-01],
[9.1100000e+02, -1.7630008e-01],
[9.1200000e+02, -1.6433394e-01],
[9.1300000e+02, -1.4773089e-01],
[9.1400000e+02, -1.2986394e-01],
[9.1500000e+02, -1.1504734e-01],
[9.1600000e+02, -1.0731546e-01],
[9.1700000e+02, -1.0912438e-01],
[9.1800000e+02, -1.2042078e-01],
[9.1900000e+02, -1.3844128e-01],
[9.2000000e+02, -1.5838163e-01],
[9.2100000e+02, -1.7477981e-01],
[9.2200000e+02, -1.8319499e-01],
[9.2300000e+02, -1.8163289e-01],
[9.2400000e+02, -1.7122556e-01],
[9.2500000e+02, -1.5590808e-01],
[9.2600000e+02, -1.4117067e-01],
[9.2700000e+02, -1.3228336e-01],
[9.2800000e+02, -1.3257903e-01],
[9.2900000e+02, -1.4236782e-01],
[9.3000000e+02, -1.5884476e-01],
[9.3100000e+02, -1.7701688e-01],
[9.3200000e+02, -1.9133285e-01],
[9.3300000e+02, -1.9746821e-01],
[9.3400000e+02, -1.9367869e-01],
[9.3500000e+02, -1.8129201e-01],
[9.3600000e+02, -1.6420563e-01],
[9.3700000e+02, -1.4758651e-01],
[9.3800000e+02, -1.3621944e-01],
[9.3900000e+02, -1.3304227e-01],
[9.4000000e+02, -1.3831855e-01],
[9.4100000e+02, -1.4967123e-01],
[9.4200000e+02, -1.6291774e-01],
[9.4300000e+02, -1.7340208e-01],
[9.4400000e+02, -1.7738934e-01],
[9.4500000e+02, -1.7310243e-01],
[9.4600000e+02, -1.6112286e-01],
[9.4700000e+02, -1.4409029e-01],
[9.4800000e+02, -1.2584645e-01],
[9.4900000e+02, -1.1031392e-01],
[9.5000000e+02, -1.0044405e-01],
[9.5100000e+02, -9.7510203e-02],
[9.5200000e+02, -1.0089459e-01],
[9.5300000e+02, -1.0836621e-01],
[9.5400000e+02, -1.1672118e-01],
[9.5500000e+02, -1.2258651e-01],
[9.5600000e+02, -1.2318227e-01],
[9.5700000e+02, -1.1688299e-01],
[9.5800000e+02, -1.0349141e-01],
[9.5900000e+02, -8.4209811e-02],
[9.6000000e+02, -6.1348750e-02],
[9.6100000e+02, -3.7845100e-02],
[9.6200000e+02, -1.6676963e-02],
[9.6300000e+02, -2.7151209e-04],
[9.6400000e+02, 9.9920739e-03],
[9.6500000e+02, 1.4082557e-02],
[9.6600000e+02, 1.3334626e-02],
[9.6700000e+02, 1.0144160e-02],
[9.6800000e+02, 7.3717342e-03],
[9.6900000e+02, 7.5704846e-03],
[9.7000000e+02, 1.2226655e-02],
[9.7100000e+02, 2.1230136e-02],
[9.7200000e+02, 3.2757633e-02],
[9.7300000e+02, 4.3652051e-02],
[9.7400000e+02, 5.0241556e-02],
[9.7500000e+02, 4.9401564e-02],
[9.7600000e+02, 3.9568862e-02],
[9.7700000e+02, 2.1403965e-02],
[9.7800000e+02, -2.1232127e-03],
[9.7900000e+02, -2.6296381e-02],
[9.8000000e+02, -4.5752144e-02],
[9.8100000e+02, -5.5841307e-02],
[9.8200000e+02, -5.3888131e-02],
[9.8300000e+02, -3.9994524e-02],
[9.8400000e+02, -1.7148183e-02],
[9.8500000e+02, 9.4223931e-03],
[9.8600000e+02, 3.3497446e-02],
[9.8700000e+02, 4.9400813e-02],
[9.8800000e+02, 5.3413542e-02],
[9.8900000e+02, 4.4682495e-02],
[9.9000000e+02, 2.5370660e-02],
[9.9100000e+02, 2.1757866e-06],
[9.9200000e+02, -2.5817719e-02],
[9.9300000e+02, -4.6943824e-02],
[9.9400000e+02, -6.0045821e-02],
[9.9500000e+02, -6.4377955e-02],
[9.9600000e+02, -6.1738668e-02],
[9.9700000e+02, -5.5647645e-02],
[9.9800000e+02, -5.0020785e-02],
[9.9900000e+02, -8.2428708e-02],
[1.0000000e+03, -6.9785422e-02],
[1.0010000e+03, -7.6191746e-02],
[1.0020000e+03, -8.2957808e-02],
[1.0030000e+03, -8.6840012e-02],
[1.0040000e+03, -8.5616195e-02],
[1.0050000e+03, -7.9096676e-02],
[1.0060000e+03, -6.9354133e-02],
[1.0070000e+03, -6.0063921e-02],
[1.0080000e+03, -5.5182894e-02],
[1.0090000e+03, -5.7451504e-02],
[1.0100000e+03, -6.7281146e-02],
[1.0110000e+03, -8.2454254e-02],
[1.0120000e+03, -9.8767561e-02],
[1.0130000e+03, -1.1140101e-01],
[1.0140000e+03, -1.1652696e-01],
[1.0150000e+03, -1.1258617e-01],
[1.0160000e+03, -1.0077930e-01],
[1.0170000e+03, -8.4607209e-02],
[1.0180000e+03, -6.8633297e-02],
[1.0190000e+03, -5.6913122e-02],
[1.0200000e+03, -5.1645573e-02],
[1.0210000e+03, -5.2512599e-02],
[1.0220000e+03, -5.6927523e-02],
[1.0230000e+03, -6.1095247e-02],
[1.0240000e+03, -6.1510270e-02],
[1.0250000e+03, -5.6371695e-02],
[1.0260000e+03, -4.6422530e-02],
[1.0270000e+03, -3.4910268e-02],
[1.0280000e+03, -2.6653103e-02],
[1.0290000e+03, -2.6489266e-02],
[1.0300000e+03, -3.7594316e-02],
[1.0310000e+03, -6.0208550e-02],
[1.0320000e+03, -9.1205186e-02],
[1.0330000e+03, -1.2468134e-01],
[1.0340000e+03, -1.5344117e-01],
[1.0350000e+03, -1.7095787e-01],
[1.0360000e+03, -1.7323666e-01],
[1.0370000e+03, -1.6000852e-01],
[1.0380000e+03, -1.3486956e-01],
[1.0390000e+03, -1.0429197e-01],
[1.0400000e+03, -7.5777506e-02],
[1.0410000e+03, -5.5697018e-02],
[1.0420000e+03, -4.7470029e-02],
[1.0430000e+03, -5.0647169e-02],
[1.0440000e+03, -6.1187003e-02],
[1.0450000e+03, -7.2849001e-02],
[1.0460000e+03, -7.9271402e-02],
[1.0470000e+03, -7.6080173e-02],
[1.0480000e+03, -6.2357756e-02],
[1.0490000e+03, -4.0997497e-02],
[1.0500000e+03, -1.7821993e-02],
[1.0510000e+03, 2.6056378e-04],
[1.0520000e+03, 7.4763032e-03],
[1.0530000e+03, 1.0708129e-03],
[1.0540000e+03, -1.7747749e-02],
[1.0550000e+03, -4.4114038e-02],
[1.0560000e+03, -7.0964911e-02],
[1.0570000e+03, -9.1187686e-02],
[1.0580000e+03, -9.9772723e-02],
[1.0590000e+03, -9.5289250e-02],
[1.0600000e+03, -8.0227723e-02],
[1.0610000e+03, -6.0122474e-02],
[1.0620000e+03, -4.1761826e-02],
[1.0630000e+03, -3.1078851e-02],
[1.0640000e+03, -3.1400984e-02],
[1.0650000e+03, -4.2595815e-02],
[1.0660000e+03, -6.1335872e-02],
[1.0670000e+03, -8.2328601e-02],
[1.0680000e+03, -1.0004999e-01],
[1.0690000e+03, -1.1038533e-01],
[1.0700000e+03, -1.1165753e-01],
[1.0710000e+03, -1.0477421e-01],
[1.0720000e+03, -9.2549043e-02],
[1.0730000e+03, -7.8529360e-02],
[1.0740000e+03, -6.5793808e-02],
[1.0750000e+03, -5.6135258e-02],
[1.0760000e+03, -4.9850054e-02],
[1.0770000e+03, -4.6102515e-02],
[1.0780000e+03, -4.3624660e-02],
[1.0790000e+03, -4.1420190e-02],
[1.0800000e+03, -3.9189874e-02],
[1.0810000e+03, -3.7347428e-02],
[1.0820000e+03, -3.6679103e-02],
[1.0830000e+03, -3.7840822e-02],
[1.0840000e+03, -4.0934176e-02],
[1.0850000e+03, -4.5349271e-02],
[1.0860000e+03, -4.9940145e-02],
[1.0870000e+03, -5.3460997e-02],
[1.0880000e+03, -5.5091424e-02],
[1.0890000e+03, -5.4848636e-02],
[1.0900000e+03, -5.3728134e-02],
[1.0910000e+03, -5.3509915e-02],
[1.0920000e+03, -5.6279188e-02],
[1.0930000e+03, -6.3802324e-02],
[1.0940000e+03, -7.6944321e-02],
[1.0950000e+03, -9.5303602e-02],
[1.0960000e+03, -1.1717960e-01],
[1.0970000e+03, -1.3989689e-01],
[1.0980000e+03, -1.6041137e-01],
[1.0990000e+03, -1.9929601e-01],
[1.1000000e+03, -1.7739105e-01],
[1.1010000e+03, -1.8068553e-01],
[1.1020000e+03, -1.7911480e-01],
[1.1030000e+03, -1.7480536e-01],
[1.1040000e+03, -1.7032728e-01],
[1.1050000e+03, -1.6801084e-01],
[1.1060000e+03, -1.6933909e-01],
[1.1070000e+03, -1.7458696e-01],
[1.1080000e+03, -1.8280597e-01],
[1.1090000e+03, -1.9215130e-01],
[1.1100000e+03, -2.0044608e-01],
[1.1110000e+03, -2.0581055e-01],
[1.1120000e+03, -2.0717117e-01],
[1.1130000e+03, -2.0451068e-01],
[1.1140000e+03, -1.9880530e-01],
[1.1150000e+03, -1.9169103e-01],
[1.1160000e+03, -1.8497510e-01],
[1.1170000e+03, -1.8014059e-01],
[1.1180000e+03, -1.7797804e-01],
[1.1190000e+03, -1.7842773e-01],
[1.1200000e+03, -1.8065190e-01],
[1.1210000e+03, -1.8329747e-01],
[1.1220000e+03, -1.8487059e-01],
[1.1230000e+03, -1.8412975e-01],
[1.1240000e+03, -1.8040979e-01],
[1.1250000e+03, -1.7380927e-01],
[1.1260000e+03, -1.6520278e-01],
[1.1270000e+03, -1.5607345e-01],
[1.1280000e+03, -1.4819729e-01],
[1.1290000e+03, -1.4324406e-01],
[1.1300000e+03, -1.4238325e-01],
[1.1310000e+03, -1.4598881e-01],
[1.1320000e+03, -1.5351929e-01],
[1.1330000e+03, -1.6361177e-01],
[1.1340000e+03, -1.7437676e-01],
[1.1350000e+03, -1.8383094e-01],
[1.1360000e+03, -1.9036748e-01],
[1.1370000e+03, -1.9315071e-01],
[1.1380000e+03, -1.9233502e-01],
[1.1390000e+03, -1.8904726e-01],
[1.1400000e+03, -1.8512734e-01],
[1.1410000e+03, -1.8268334e-01],
[1.1420000e+03, -1.8356958e-01],
[1.1430000e+03, -1.8892285e-01],
[1.1440000e+03, -1.9888342e-01],
[1.1450000e+03, -2.1257932e-01],
[1.1460000e+03, -2.2837670e-01],
[1.1470000e+03, -2.4431680e-01],
[1.1480000e+03, -2.5860053e-01],
[1.1490000e+03, -2.6996818e-01],
[1.1500000e+03, -2.7786208e-01],
[1.1510000e+03, -2.8234300e-01],
[1.1520000e+03, -2.8382386e-01],
[1.1530000e+03, -2.8275180e-01],
[1.1540000e+03, -2.7938244e-01],
[1.1550000e+03, -2.7374214e-01],
[1.1560000e+03, -2.6578500e-01],
[1.1570000e+03, -2.5565925e-01],
[1.1580000e+03, -2.4394243e-01],
[1.1590000e+03, -2.3171216e-01],
[1.1600000e+03, -2.2038651e-01],
[1.1610000e+03, -2.1136836e-01],
[1.1620000e+03, -2.0561732e-01],
[1.1630000e+03, -2.0331359e-01],
[1.1640000e+03, -2.0375107e-01],
[1.1650000e+03, -2.0551280e-01],
[1.1660000e+03, -2.0687457e-01],
[1.1670000e+03, -2.0629547e-01],
[1.1680000e+03, -2.0282319e-01],
[1.1690000e+03, -1.9627935e-01],
[1.1700000e+03, -1.8718038e-01],
[1.1710000e+03, -1.7645557e-01],
[1.1720000e+03, -1.6510206e-01],
[1.1730000e+03, -1.5393421e-01],
[1.1740000e+03, -1.4353279e-01],
[1.1750000e+03, -1.3439970e-01],
[1.1760000e+03, -1.2721745e-01],
[1.1770000e+03, -1.2304644e-01],
[1.1780000e+03, -1.2330109e-01],
[1.1790000e+03, -1.2943053e-01],
[1.1800000e+03, -1.4236304e-01],
[1.1810000e+03, -1.6190143e-01],
[1.1820000e+03, -1.8632439e-01],
[1.1830000e+03, -2.1241768e-01],
[1.1840000e+03, -2.3602970e-01],
[1.1850000e+03, -2.5305781e-01],
[1.1860000e+03, -2.6059228e-01],
[1.1870000e+03, -2.5784651e-01],
[1.1880000e+03, -2.4653006e-01],
[1.1890000e+03, -2.3047957e-01],
[1.1900000e+03, -2.1460315e-01],
[1.1910000e+03, -2.0343557e-01],
[1.1920000e+03, -1.9975706e-01],
[1.1930000e+03, -2.0373496e-01],
[1.1940000e+03, -2.1289383e-01],
[1.1950000e+03, -2.2295089e-01],
[1.1960000e+03, -2.2925871e-01],
[1.1970000e+03, -2.2837914e-01],
[1.1980000e+03, -2.1925227e-01],
[1.1990000e+03, -2.4000870e-01],
[1.2000000e+03, -1.7914682e-01],
[1.2010000e+03, -1.6264353e-01],
[1.2020000e+03, -1.5168557e-01],
[1.2030000e+03, -1.4798876e-01],
[1.2040000e+03, -1.5072667e-01],
[1.2050000e+03, -1.5699947e-01],
[1.2060000e+03, -1.6310094e-01],
[1.2070000e+03, -1.6609853e-01],
[1.2080000e+03, -1.6510211e-01],
[1.2090000e+03, -1.6169649e-01],
[1.2100000e+03, -1.5932428e-01],
[1.2110000e+03, -1.6181649e-01],
[1.2120000e+03, -1.7162025e-01],
[1.2130000e+03, -1.8842364e-01],
[1.2140000e+03, -2.0875830e-01],
[1.2150000e+03, -2.2680734e-01],
[1.2160000e+03, -2.3619020e-01],
[1.2170000e+03, -2.3211274e-01],
[1.2180000e+03, -2.1311243e-01],
[1.2190000e+03, -1.8175968e-01],
[1.2200000e+03, -1.4405055e-01],
[1.2210000e+03, -1.0769921e-01],
[1.2220000e+03, -7.9929247e-02],
[1.2230000e+03, -6.5522353e-02],
[1.2240000e+03, -6.5756356e-02],
[1.2250000e+03, -7.8509549e-02],
[1.2260000e+03, -9.9371634e-02],
[1.2270000e+03, -1.2325607e-01],
[1.2280000e+03, -1.4588379e-01],
[1.2290000e+03, -1.6463847e-01],
[1.2300000e+03, -1.7860786e-01],
[1.2310000e+03, -1.8798148e-01],
[1.2320000e+03, -1.9322145e-01],
[1.2330000e+03, -1.9446256e-01],
[1.2340000e+03, -1.9142888e-01],
[1.2350000e+03, -1.8386354e-01],
[1.2360000e+03, -1.7219429e-01],
[1.2370000e+03, -1.5802460e-01],
[1.2380000e+03, -1.4410804e-01],
[1.2390000e+03, -1.3370090e-01],
[1.2400000e+03, -1.2948819e-01],
[1.2410000e+03, -1.3250658e-01],
[1.2420000e+03, -1.4153939e-01],
[1.2430000e+03, -1.5330342e-01],
[1.2440000e+03, -1.6344340e-01],
[1.2450000e+03, -1.6801883e-01],
[1.2460000e+03, -1.6494741e-01],
[1.2470000e+03, -1.5485197e-01],
[1.2480000e+03, -1.4096003e-01],
[1.2490000e+03, -1.2805060e-01],
[1.2500000e+03, -1.2080268e-01],
[1.2510000e+03, -1.2213235e-01],
[1.2520000e+03, -1.3212162e-01],
[1.2530000e+03, -1.4793243e-01],
[1.2540000e+03, -1.6474191e-01],
[1.2550000e+03, -1.7736395e-01],
[1.2560000e+03, -1.8197599e-01],
[1.2570000e+03, -1.7733973e-01],
[1.2580000e+03, -1.6509954e-01],
[1.2590000e+03, -1.4908648e-01],
[1.2600000e+03, -1.3391943e-01],
[1.2610000e+03, -1.2343987e-01],
[1.2620000e+03, -1.1955520e-01],
[1.2630000e+03, -1.2188719e-01],
[1.2640000e+03, -1.2830031e-01],
[1.2650000e+03, -1.3604630e-01],
[1.2660000e+03, -1.4303565e-01],
[1.2670000e+03, -1.4871781e-01],
[1.2680000e+03, -1.5422409e-01],
[1.2690000e+03, -1.6173030e-01],
[1.2700000e+03, -1.7330933e-01],
[1.2710000e+03, -1.8974821e-01],
[1.2720000e+03, -2.0982260e-01],
[1.2730000e+03, -2.3035127e-01],
[1.2740000e+03, -2.4705832e-01],
[1.2750000e+03, -2.5596268e-01],
[1.2760000e+03, -2.5480598e-01],
[1.2770000e+03, -2.4399745e-01],
[1.2780000e+03, -2.2671043e-01],
[1.2790000e+03, -2.0805590e-01],
[1.2800000e+03, -1.9358169e-01],
[1.2810000e+03, -1.8758794e-01],
[1.2820000e+03, -1.9182412e-01],
[1.2830000e+03, -2.0501113e-01],
[1.2840000e+03, -2.2335400e-01],
[1.2850000e+03, -2.4187033e-01],
[1.2860000e+03, -2.5607673e-01],
[1.2870000e+03, -2.6344836e-01],
[1.2880000e+03, -2.6414411e-01],
[1.2890000e+03, -2.6074647e-01],
[1.2900000e+03, -2.5711405e-01],
[1.2910000e+03, -2.5676332e-01],
[1.2920000e+03, -2.6137120e-01],
[1.2930000e+03, -2.6995736e-01],
[1.2940000e+03, -2.7907215e-01],
[1.2950000e+03, -2.8396136e-01],
[1.2960000e+03, -2.8032546e-01],
[1.2970000e+03, -2.6606282e-01],
[1.2980000e+03, -2.4236537e-01],
[1.2990000e+03, -2.5468259e-01],
[1.3000000e+03, -1.8004861e-01],
[1.3010000e+03, -1.6212067e-01],
[1.3020000e+03, -1.5747160e-01],
[1.3030000e+03, -1.6714744e-01],
[1.3040000e+03, -1.8784910e-01],
[1.3050000e+03, -2.1265446e-01],
[1.3060000e+03, -2.3292317e-01],
[1.3070000e+03, -2.4083887e-01],
[1.3080000e+03, -2.3182405e-01],
[1.3090000e+03, -2.0608028e-01],
[1.3100000e+03, -1.6875960e-01],
[1.3110000e+03, -1.2868334e-01],
[1.3120000e+03, -9.5963886e-02],
[1.3130000e+03, -7.9215237e-02],
[1.3140000e+03, -8.3157096e-02],
[1.3150000e+03, -1.0729141e-01],
[1.3160000e+03, -1.4600373e-01],
[1.3170000e+03, -1.9002168e-01],
[1.3180000e+03, -2.2878000e-01],
[1.3190000e+03, -2.5301111e-01],
[1.3200000e+03, -2.5686087e-01],
[1.3210000e+03, -2.3901380e-01],
[1.3220000e+03, -2.0262955e-01],
[1.3230000e+03, -1.5423841e-01],
[1.3240000e+03, -1.0201195e-01],
[1.3250000e+03, -5.3944135e-02],
[1.3260000e+03, -1.6425252e-02],
[1.3270000e+03, 6.4986380e-03],
[1.3280000e+03, 1.3143695e-02],
[1.3290000e+03, 3.6781836e-03],
[1.3300000e+03, -2.0586186e-02],
[1.3310000e+03, -5.7770604e-02],
[1.3320000e+03, -1.0566348e-01],
[1.3330000e+03, -1.6159396e-01],
[1.3340000e+03, -2.2211121e-01],
[1.3350000e+03, -2.8274572e-01],
[1.3360000e+03, -3.3812022e-01],
[1.3370000e+03, -3.8255382e-01],
[1.3380000e+03, -4.1110502e-01],
[1.3390000e+03, -4.2079970e-01],
[1.3400000e+03, -4.1166189e-01],
[1.3410000e+03, -3.8716006e-01],
[1.3420000e+03, -3.5381460e-01],
[1.3430000e+03, -3.1994775e-01],
[1.3440000e+03, -2.9382819e-01],
[1.3450000e+03, -2.8167907e-01],
[1.3460000e+03, -2.8610541e-01],
[1.3470000e+03, -3.0541399e-01],
[1.3480000e+03, -3.3406082e-01],
[1.3490000e+03, -3.6413347e-01],
[1.3500000e+03, -3.8746148e-01],
[1.3510000e+03, -3.9774941e-01],
[1.3520000e+03, -3.9211437e-01],
[1.3530000e+03, -3.7159349e-01],
[1.3540000e+03, -3.4050951e-01],
[1.3550000e+03, -3.0494145e-01],
[1.3560000e+03, -2.7082101e-01],
[1.3570000e+03, -2.4227498e-01],
[1.3580000e+03, -2.2072434e-01],
[1.3590000e+03, -2.0497458e-01],
[1.3600000e+03, -1.9218361e-01],
[1.3610000e+03, -1.7929752e-01],
[1.3620000e+03, -1.6440200e-01],
[1.3630000e+03, -1.4749581e-01],
[1.3640000e+03, -1.3042805e-01],
[1.3650000e+03, -1.1606339e-01],
[1.3660000e+03, -1.0702973e-01],
[1.3670000e+03, -1.0455449e-01],
[1.3680000e+03, -1.0785308e-01],
[1.3690000e+03, -1.1431464e-01],
[1.3700000e+03, -1.2041931e-01],
[1.3710000e+03, -1.2303541e-01],
[1.3720000e+03, -1.2059404e-01],
[1.3730000e+03, -1.1367923e-01],
[1.3740000e+03, -1.0479095e-01],
[1.3750000e+03, -9.7353856e-02],
[1.3760000e+03, -9.4337632e-02],
[1.3770000e+03, -9.7013575e-02],
[1.3780000e+03, -1.0433374e-01],
[1.3790000e+03, -1.1319391e-01],
[1.3800000e+03, -1.1951149e-01],
[1.3810000e+03, -1.1973722e-01],
[1.3820000e+03, -1.1224442e-01],
[1.3830000e+03, -9.8071868e-02],
[1.3840000e+03, -8.0727751e-02],
[1.3850000e+03, -6.5108632e-02],
[1.3860000e+03, -5.5917945e-02],
[1.3870000e+03, -5.6155729e-02],
[1.3880000e+03, -6.6222464e-02],
[1.3890000e+03, -8.3945151e-02],
[1.3900000e+03, -1.0548436e-01],
[1.3910000e+03, -1.2675291e-01],
[1.3920000e+03, -1.4479640e-01],
[1.3930000e+03, -1.5862027e-01],
[1.3940000e+03, -1.6917792e-01],
[1.3950000e+03, -1.7856683e-01],
[1.3960000e+03, -1.8878179e-01],
[1.3970000e+03, -2.0053438e-01],
[1.3980000e+03, -2.1260889e-01],
[1.3990000e+03, -2.7423472e-01],
[1.4000000e+03, -2.8099509e-01],
[1.4010000e+03, -2.8048760e-01],
[1.4020000e+03, -2.7843085e-01],
[1.4030000e+03, -2.7791625e-01],
[1.4040000e+03, -2.8081130e-01],
[1.4050000e+03, -2.8730470e-01],
[1.4060000e+03, -2.9603119e-01],
[1.4070000e+03, -3.0470284e-01],
[1.4080000e+03, -3.1100756e-01],
[1.4090000e+03, -3.1345579e-01],
[1.4100000e+03, -3.1188799e-01],
[1.4110000e+03, -3.0748385e-01],
[1.4120000e+03, -3.0229283e-01],
[1.4130000e+03, -2.9847002e-01],
[1.4140000e+03, -2.9749622e-01],
[1.4150000e+03, -2.9965544e-01],
[1.4160000e+03, -3.0394410e-01],
[1.4170000e+03, -3.0843114e-01],
[1.4180000e+03, -3.1093439e-01],
[1.4190000e+03, -3.0977644e-01],
[1.4200000e+03, -3.0436677e-01],
[1.4210000e+03, -2.9542536e-01],
[1.4220000e+03, -2.8478888e-01],
[1.4230000e+03, -2.7487792e-01],
[1.4240000e+03, -2.6800526e-01],
[1.4250000e+03, -2.6574112e-01],
[1.4260000e+03, -2.6851542e-01],
[1.4270000e+03, -2.7554921e-01],
[1.4280000e+03, -2.8510304e-01],
[1.4290000e+03, -2.9494420e-01],
[1.4300000e+03, -3.0289191e-01],
[1.4310000e+03, -3.0730432e-01],
[1.4320000e+03, -3.0740983e-01],
[1.4330000e+03, -3.0343756e-01],
[1.4340000e+03, -2.9654757e-01],
[1.4350000e+03, -2.8859157e-01],
[1.4360000e+03, -2.8175120e-01],
[1.4370000e+03, -2.7811115e-01],
[1.4380000e+03, -2.7923545e-01],
[1.4390000e+03, -2.8582627e-01],
[1.4400000e+03, -2.9754636e-01],
[1.4410000e+03, -3.1306730e-01],
[1.4420000e+03, -3.3035886e-01],
[1.4430000e+03, -3.4716731e-01],
[1.4440000e+03, -3.6156223e-01],
[1.4450000e+03, -3.7239090e-01],
[1.4460000e+03, -3.7949130e-01],
[1.4470000e+03, -3.8358439e-01],
[1.4480000e+03, -3.8587716e-01],
[1.4490000e+03, -3.8751989e-01],
[1.4500000e+03, -3.8912856e-01],
[1.4510000e+03, -3.9057335e-01],
[1.4520000e+03, -3.9113931e-01],
[1.4530000e+03, -3.9001804e-01],
[1.4540000e+03, -3.8694089e-01],
[1.4550000e+03, -3.8267888e-01],
[1.4560000e+03, -3.7915158e-01],
[1.4570000e+03, -3.7901317e-01],
[1.4580000e+03, -3.8477925e-01],
[1.4590000e+03, -3.9775619e-01],
[1.4600000e+03, -4.1715675e-01],
[1.4610000e+03, -4.3977838e-01],
[1.4620000e+03, -4.6047045e-01],
[1.4630000e+03, -4.7336354e-01],
[1.4640000e+03, -4.7355940e-01],
[1.4650000e+03, -4.5878122e-01],
[1.4660000e+03, -4.3043804e-01],
[1.4670000e+03, -3.9369603e-01],
[1.4680000e+03, -3.5643704e-01],
[1.4690000e+03, -3.2733357e-01],
[1.4700000e+03, -3.1356251e-01],
[1.4710000e+03, -3.1881599e-01],
[1.4720000e+03, -3.4219720e-01],
[1.4730000e+03, -3.7833180e-01],
[1.4740000e+03, -4.1866654e-01],
[1.4750000e+03, -4.5358161e-01],
[1.4760000e+03, -4.7472205e-01],
[1.4770000e+03, -4.7691835e-01],
[1.4780000e+03, -4.5921715e-01],
[1.4790000e+03, -4.2482130e-01],
[1.4800000e+03, -3.8004985e-01],
[1.4810000e+03, -3.3267972e-01],
[1.4820000e+03, -2.9015458e-01],
[1.4830000e+03, -2.5812203e-01],
[1.4840000e+03, -2.3961125e-01],
[1.4850000e+03, -2.3494806e-01],
[1.4860000e+03, -2.4229079e-01],
[1.4870000e+03, -2.5852194e-01],
[1.4880000e+03, -2.8018024e-01],
[1.4890000e+03, -3.0417024e-01],
[1.4900000e+03, -3.2811151e-01],
[1.4910000e+03, -3.5033806e-01],
[1.4920000e+03, -3.6967849e-01],
[1.4930000e+03, -3.8520014e-01],
[1.4940000e+03, -3.9607437e-01],
[1.4950000e+03, -4.0163343e-01],
[1.4960000e+03, -4.0158102e-01],
[1.4970000e+03, -3.9623477e-01],
[1.4980000e+03, -3.8665345e-01],
[1.4990000e+03, -4.4195475e-01],
[1.5000000e+03, -3.1953163e-01],
[1.5010000e+03, -3.1056024e-01],
[1.5020000e+03, -3.0001882e-01],
[1.5030000e+03, -2.8904965e-01],
[1.5040000e+03, -2.7868890e-01],
[1.5050000e+03, -2.6973300e-01],
[1.5060000e+03, -2.6271041e-01],
[1.5070000e+03, -2.5792088e-01],
[1.5080000e+03, -2.5548880e-01],
[1.5090000e+03, -2.5539256e-01],
[1.5100000e+03, -2.5746423e-01],
[1.5110000e+03, -2.6138075e-01],
[1.5120000e+03, -2.6667363e-01],
[1.5130000e+03, -2.7276663e-01],
[1.5140000e+03, -2.7902474e-01],
[1.5150000e+03, -2.8478389e-01],
[1.5160000e+03, -2.8934386e-01],
[1.5170000e+03, -2.9194255e-01],
[1.5180000e+03, -2.9176800e-01],
[1.5190000e+03, -2.8807449e-01],
[1.5200000e+03, -2.8043337e-01],
[1.5210000e+03, -2.6907206e-01],
[1.5220000e+03, -2.5517003e-01],
[1.5230000e+03, -2.4093502e-01],
[1.5240000e+03, -2.2931535e-01],
[1.5250000e+03, -2.2332182e-01],
[1.5260000e+03, -2.2509937e-01],
[1.5270000e+03, -2.3503814e-01],
[1.5280000e+03, -2.5127222e-01],
[1.5290000e+03, -2.6983945e-01],
[1.5300000e+03, -2.8557471e-01],
[1.5310000e+03, -2.9354671e-01],
[1.5320000e+03, -2.9062160e-01],
[1.5330000e+03, -2.7663943e-01],
[1.5340000e+03, -2.5477086e-01],
[1.5350000e+03, -2.3086604e-01],
[1.5360000e+03, -2.1193429e-01],
[1.5370000e+03, -2.0418812e-01],
[1.5380000e+03, -2.1124122e-01],
[1.5390000e+03, -2.3301090e-01],
[1.5400000e+03, -2.6565423e-01],
[1.5410000e+03, -3.0254256e-01],
[1.5420000e+03, -3.3596399e-01],
[1.5430000e+03, -3.5904163e-01],
[1.5440000e+03, -3.6732695e-01],
[1.5450000e+03, -3.5966677e-01],
[1.5460000e+03, -3.3818897e-01],
[1.5470000e+03, -3.0751451e-01],
[1.5480000e+03, -2.7349739e-01],
[1.5490000e+03, -2.4186982e-01],
[1.5500000e+03, -2.1712393e-01],
[1.5510000e+03, -2.0183304e-01],
[1.5520000e+03, -1.9646350e-01],
[1.5530000e+03, -1.9960532e-01],
[1.5540000e+03, -2.0848761e-01],
[1.5550000e+03, -2.1964003e-01],
[1.5560000e+03, -2.2959087e-01],
[1.5570000e+03, -2.3552249e-01],
[1.5580000e+03, -2.3581529e-01],
[1.5590000e+03, -2.3040066e-01],
[1.5600000e+03, -2.2083303e-01],
[1.5610000e+03, -2.1000843e-01],
[1.5620000e+03, -2.0152109e-01],
[1.5630000e+03, -1.9875476e-01],
[1.5640000e+03, -2.0391784e-01],
[1.5650000e+03, -2.1730331e-01],
[1.5660000e+03, -2.3703885e-01],
[1.5670000e+03, -2.5947617e-01],
[1.5680000e+03, -2.8017345e-01],
[1.5690000e+03, -2.9521430e-01],
[1.5700000e+03, -3.0245986e-01],
[1.5710000e+03, -3.0231036e-01],
[1.5720000e+03, -2.9768188e-01],
[1.5730000e+03, -2.9315020e-01],
[1.5740000e+03, -2.9349517e-01],
[1.5750000e+03, -3.0209807e-01],
[1.5760000e+03, -3.1971824e-01],
[1.5770000e+03, -3.4407112e-01],
[1.5780000e+03, -3.7037762e-01],
[1.5790000e+03, -3.9273750e-01],
[1.5800000e+03, -4.0590449e-01],
[1.5810000e+03, -4.0690109e-01],
[1.5820000e+03, -3.9595482e-01],
[1.5830000e+03, -3.7645004e-01],
[1.5840000e+03, -3.5390179e-01],
[1.5850000e+03, -3.3426945e-01],
[1.5860000e+03, -3.2213862e-01],
[1.5870000e+03, -3.1934450e-01],
[1.5880000e+03, -3.2447303e-01],
[1.5890000e+03, -3.3340110e-01],
[1.5900000e+03, -3.4070795e-01],
[1.5910000e+03, -3.4151012e-01],
[1.5920000e+03, -3.3313127e-01],
[1.5930000e+03, -3.1606334e-01],
[1.5940000e+03, -2.9389781e-01],
[1.5950000e+03, -2.7223554e-01],
[1.5960000e+03, -2.5691813e-01],
[1.5970000e+03, -2.5214984e-01],
[1.5980000e+03, -2.5912210e-01],
[1.5990000e+03, -2.8323358e-01],
[1.6000000e+03, -3.4623440e-01],
[1.6010000e+03, -3.4315443e-01],
[1.6020000e+03, -3.3493306e-01],
[1.6030000e+03, -3.2232755e-01],
[1.6040000e+03, -3.0745837e-01],
[1.6050000e+03, -2.9346798e-01],
[1.6060000e+03, -2.8375591e-01],
[1.6070000e+03, -2.8099925e-01],
[1.6080000e+03, -2.8627120e-01],
[1.6090000e+03, -2.9856904e-01],
[1.6100000e+03, -3.1495092e-01],
[1.6110000e+03, -3.3129007e-01],
[1.6120000e+03, -3.4344761e-01],
[1.6130000e+03, -3.4851264e-01],
[1.6140000e+03, -3.4571627e-01],
[1.6150000e+03, -3.3671401e-01],
[1.6160000e+03, -3.2512444e-01],
[1.6170000e+03, -3.1544872e-01],
[1.6180000e+03, -3.1169796e-01],
[1.6190000e+03, -3.1615348e-01],
[1.6200000e+03, -3.2864631e-01],
[1.6210000e+03, -3.4657764e-01],
[1.6220000e+03, -3.6566629e-01],
[1.6230000e+03, -3.8118134e-01],
[1.6240000e+03, -3.8927278e-01],
[1.6250000e+03, -3.8799685e-01],
[1.6260000e+03, -3.7774624e-01],
[1.6270000e+03, -3.6099696e-01],
[1.6280000e+03, -3.4150124e-01],
[1.6290000e+03, -3.2321764e-01],
[1.6300000e+03, -3.0932412e-01],
[1.6310000e+03, -3.0159827e-01],
[1.6320000e+03, -3.0029939e-01],
[1.6330000e+03, -3.0450868e-01],
[1.6340000e+03, -3.1273809e-01],
[1.6350000e+03, -3.2355263e-01],
[1.6360000e+03, -3.3597994e-01],
[1.6370000e+03, -3.4958735e-01],
[1.6380000e+03, -3.6424729e-01],
[1.6390000e+03, -3.7973423e-01],
[1.6400000e+03, -3.9535822e-01],
[1.6410000e+03, -4.0982083e-01],
[1.6420000e+03, -4.2138699e-01],
[1.6430000e+03, -4.2833597e-01],
[1.6440000e+03, -4.2953445e-01],
[1.6450000e+03, -4.2490966e-01],
[1.6460000e+03, -4.1561845e-01],
[1.6470000e+03, -4.0380627e-01],
[1.6480000e+03, -3.9199613e-01],
[1.6490000e+03, -3.8229068e-01],
[1.6500000e+03, -3.7565614e-01],
[1.6510000e+03, -3.7155064e-01],
[1.6520000e+03, -3.6805777e-01],
[1.6530000e+03, -3.6251938e-01],
[1.6540000e+03, -3.5248722e-01],
[1.6550000e+03, -3.3669077e-01],
[1.6560000e+03, -3.1569445e-01],
[1.6570000e+03, -2.9200245e-01],
[1.6580000e+03, -2.6954032e-01],
[1.6590000e+03, -2.5264259e-01],
[1.6600000e+03, -2.4484230e-01],
[1.6610000e+03, -2.4783346e-01],
[1.6620000e+03, -2.6093623e-01],
[1.6630000e+03, -2.8124523e-01],
[1.6640000e+03, -3.0443004e-01],
[1.6650000e+03, -3.2594913e-01],
[1.6660000e+03, -3.4230182e-01],
[1.6670000e+03, -3.5192560e-01],
[1.6680000e+03, -3.5545657e-01],
[1.6690000e+03, -3.5527868e-01],
[1.6700000e+03, -3.5452503e-01],
[1.6710000e+03, -3.5588072e-01],
[1.6720000e+03, -3.6060604e-01],
[1.6730000e+03, -3.6812002e-01],
[1.6740000e+03, -3.7628302e-01],
[1.6750000e+03, -3.8226102e-01],
[1.6760000e+03, -3.8363789e-01],
[1.6770000e+03, -3.7934830e-01],
[1.6780000e+03, -3.7007182e-01],
[1.6790000e+03, -3.5793695e-01],
[1.6800000e+03, -3.4565489e-01],
[1.6810000e+03, -3.3543125e-01],
[1.6820000e+03, -3.2809833e-01],
[1.6830000e+03, -3.2283002e-01],
[1.6840000e+03, -3.1757260e-01],
[1.6850000e+03, -3.1003713e-01],
[1.6860000e+03, -2.9886464e-01],
[1.6870000e+03, -2.8449023e-01],
[1.6880000e+03, -2.6933238e-01],
[1.6890000e+03, -2.5718551e-01],
[1.6900000e+03, -2.5200013e-01],
[1.6910000e+03, -2.5647941e-01],
[1.6920000e+03, -2.7100725e-01],
[1.6930000e+03, -2.9331624e-01],
[1.6940000e+03, -3.1904147e-01],
[1.6950000e+03, -3.4298611e-01],
[1.6960000e+03, -3.6066502e-01],
[1.6970000e+03, -3.6959190e-01],
[1.6980000e+03, -3.6986972e-01],
[1.6990000e+03, -3.9377165e-01],
[1.7000000e+03, -3.4371760e-01],
[1.7010000e+03, -3.5081159e-01],
[1.7020000e+03, -3.6062015e-01],
[1.7030000e+03, -3.7109730e-01],
[1.7040000e+03, -3.7969097e-01],
[1.7050000e+03, -3.8389479e-01],
[1.7060000e+03, -3.8190651e-01],
[1.7070000e+03, -3.7319637e-01],
[1.7080000e+03, -3.5878387e-01],
[1.7090000e+03, -3.4109389e-01],
[1.7100000e+03, -3.2339076e-01],
[1.7110000e+03, -3.0893029e-01],
[1.7120000e+03, -3.0007149e-01],
[1.7130000e+03, -2.9761535e-01],
[1.7140000e+03, -3.0057553e-01],
[1.7150000e+03, -3.0645524e-01],
[1.7160000e+03, -3.1195158e-01],
[1.7170000e+03, -3.1388237e-01],
[1.7180000e+03, -3.1007051e-01],
[1.7190000e+03, -2.9994244e-01],
[1.7200000e+03, -2.8468617e-01],
[1.7210000e+03, -2.6693962e-01],
[1.7220000e+03, -2.5010357e-01],
[1.7230000e+03, -2.3746222e-01],
[1.7240000e+03, -2.3133343e-01],
[1.7250000e+03, -2.3245623e-01],
[1.7260000e+03, -2.3976536e-01],
[1.7270000e+03, -2.5061636e-01],
[1.7280000e+03, -2.6142461e-01],
[1.7290000e+03, -2.6858546e-01],
[1.7300000e+03, -2.6946608e-01],
[1.7310000e+03, -2.6322171e-01],
[1.7320000e+03, -2.5120454e-01],
[1.7330000e+03, -2.3681034e-01],
[1.7340000e+03, -2.2473881e-01],
[1.7350000e+03, -2.1980240e-01],
[1.7360000e+03, -2.2556446e-01],
[1.7370000e+03, -2.4317331e-01],
[1.7380000e+03, -2.7074665e-01],
[1.7390000e+03, -3.0354036e-01],
[1.7400000e+03, -3.3492836e-01],
[1.7410000e+03, -3.5798391e-01],
[1.7420000e+03, -3.6725829e-01],
[1.7430000e+03, -3.6026785e-01],
[1.7440000e+03, -3.3825900e-01],
[1.7450000e+03, -3.0601168e-01],
[1.7460000e+03, -2.7071188e-01],
[1.7470000e+03, -2.4018864e-01],
[1.7480000e+03, -2.2099135e-01],
[1.7490000e+03, -2.1682333e-01],
[1.7500000e+03, -2.2773922e-01],
[1.7510000e+03, -2.5029224e-01],
[1.7520000e+03, -2.7855308e-01],
[1.7530000e+03, -3.0569238e-01],
[1.7540000e+03, -3.2568685e-01],
[1.7550000e+03, -3.3470514e-01],
[1.7560000e+03, -3.3184442e-01],
[1.7570000e+03, -3.1908173e-01],
[1.7580000e+03, -3.0051645e-01],
[1.7590000e+03, -2.8115450e-01],
[1.7600000e+03, -2.6557950e-01],
[1.7610000e+03, -2.5685489e-01],
[1.7620000e+03, -2.5591373e-01],
[1.7630000e+03, -2.6154893e-01],
[1.7640000e+03, -2.7095648e-01],
[1.7650000e+03, -2.8064774e-01],
[1.7660000e+03, -2.8746451e-01],
[1.7670000e+03, -2.8941920e-01],
[1.7680000e+03, -2.8614191e-01],
[1.7690000e+03, -2.7882987e-01],
[1.7700000e+03, -2.6973567e-01],
[1.7710000e+03, -2.6136140e-01],
[1.7720000e+03, -2.5561240e-01],
[1.7730000e+03, -2.5317920e-01],
[1.7740000e+03, -2.5335021e-01],
[1.7750000e+03, -2.5432420e-01],
[1.7760000e+03, -2.5392795e-01],
[1.7770000e+03, -2.5050009e-01],
[1.7780000e+03, -2.4362936e-01],
[1.7790000e+03, -2.3446587e-01],
[1.7800000e+03, -2.2545659e-01],
[1.7810000e+03, -2.1955538e-01],
[1.7820000e+03, -2.1915476e-01],
[1.7830000e+03, -2.2511111e-01],
[1.7840000e+03, -2.3623193e-01],
[1.7850000e+03, -2.4945360e-01],
[1.7860000e+03, -2.6070225e-01],
[1.7870000e+03, -2.6617803e-01],
[1.7880000e+03, -2.6363045e-01],
[1.7890000e+03, -2.5316855e-01],
[1.7900000e+03, -2.3729284e-01],
[1.7910000e+03, -2.2010277e-01],
[1.7920000e+03, -2.0592820e-01],
[1.7930000e+03, -1.9784930e-01],
[1.7940000e+03, -1.9662314e-01],
[1.7950000e+03, -2.0040463e-01],
[1.7960000e+03, -2.0537844e-01],
[1.7970000e+03, -2.0710328e-01],
[1.7980000e+03, -2.0212299e-01],
[1.7990000e+03, -1.9736767e-01],
[1.8000000e+03, -1.2258176e-01],
[1.8010000e+03, -1.1660714e-01],
[1.8020000e+03, -1.1630954e-01],
[1.8030000e+03, -1.2505191e-01],
[1.8040000e+03, -1.4461801e-01],
[1.8050000e+03, -1.7461807e-01],
[1.8060000e+03, -2.1247652e-01],
[1.8070000e+03, -2.5401453e-01],
[1.8080000e+03, -2.9446853e-01],
[1.8090000e+03, -3.2965964e-01],
[1.8100000e+03, -3.5698297e-01],
[1.8110000e+03, -3.7593603e-01],
[1.8120000e+03, -3.8803640e-01],
[1.8130000e+03, -3.9615637e-01],
[1.8140000e+03, -4.0347402e-01],
[1.8150000e+03, -4.1235657e-01],
[1.8160000e+03, -4.2351656e-01],
[1.8170000e+03, -4.3570383e-01],
[1.8180000e+03, -4.4603740e-01],
[1.8190000e+03, -4.5088743e-01],
[1.8200000e+03, -4.4704671e-01],
[1.8210000e+03, -4.3283851e-01],
[1.8220000e+03, -4.0882135e-01],
[1.8230000e+03, -3.7787037e-01],
[1.8240000e+03, -3.4460182e-01],
[1.8250000e+03, -3.1430321e-01],
[1.8260000e+03, -2.9167703e-01],
[1.8270000e+03, -2.7975440e-01],
[1.8280000e+03, -2.7927559e-01],
[1.8290000e+03, -2.8868714e-01],
[1.8300000e+03, -3.0472083e-01],
[1.8310000e+03, -3.2335531e-01],
[1.8320000e+03, -3.4086707e-01],
[1.8330000e+03, -3.5467669e-01],
[1.8340000e+03, -3.6378297e-01],
[1.8350000e+03, -3.6871648e-01],
[1.8360000e+03, -3.7108834e-01],
[1.8370000e+03, -3.7291415e-01],
[1.8380000e+03, -3.7592965e-01],
[1.8390000e+03, -3.8108081e-01],
[1.8400000e+03, -3.8828890e-01],
[1.8410000e+03, -3.9649449e-01],
[1.8420000e+03, -4.0391047e-01],
[1.8430000e+03, -4.0838273e-01],
[1.8440000e+03, -4.0777094e-01],
[1.8450000e+03, -4.0030103e-01],
[1.8460000e+03, -3.8487907e-01],
[1.8470000e+03, -3.6136964e-01],
[1.8480000e+03, -3.3082305e-01],
[1.8490000e+03, -2.9559761e-01],
[1.8500000e+03, -2.5929061e-01],
[1.8510000e+03, -2.2639265e-01],
[1.8520000e+03, -2.0162939e-01],
[1.8530000e+03, -1.8904724e-01],
[1.8540000e+03, -1.9100774e-01],
[1.8550000e+03, -2.0734139e-01],
[1.8560000e+03, -2.3493555e-01],
[1.8570000e+03, -2.6797102e-01],
[1.8580000e+03, -2.9887881e-01],
[1.8590000e+03, -3.1989317e-01],
[1.8600000e+03, -3.2488069e-01],
[1.8610000e+03, -3.1098997e-01],
[1.8620000e+03, -2.7964477e-01],
[1.8630000e+03, -2.3652176e-01],
[1.8640000e+03, -1.9039901e-01],
[1.8650000e+03, -1.5107638e-01],
[1.8660000e+03, -1.2686583e-01],
[1.8670000e+03, -1.2233092e-01],
[1.8680000e+03, -1.3694695e-01],
[1.8690000e+03, -1.6513363e-01],
[1.8700000e+03, -1.9772893e-01],
[1.8710000e+03, -2.2453328e-01],
[1.8720000e+03, -2.3719990e-01],
[1.8730000e+03, -2.3160385e-01],
[1.8740000e+03, -2.0895629e-01],
[1.8750000e+03, -1.7531126e-01],
[1.8760000e+03, -1.3962552e-01],
[1.8770000e+03, -1.1100402e-01],
[1.8780000e+03, -9.6029812e-02],
[1.8790000e+03, -9.7037328e-02],
[1.8800000e+03, -1.1185272e-01],
[1.8810000e+03, -1.3500947e-01],
[1.8820000e+03, -1.5993800e-01],
[1.8830000e+03, -1.8130781e-01],
[1.8840000e+03, -1.9668330e-01],
[1.8850000e+03, -2.0694116e-01],
[1.8860000e+03, -2.1537539e-01],
[1.8870000e+03, -2.2590461e-01],
[1.8880000e+03, -2.4111374e-01],
[1.8890000e+03, -2.6089636e-01],
[1.8900000e+03, -2.8221086e-01],
[1.8910000e+03, -3.0002811e-01],
[1.8920000e+03, -3.0909914e-01],
[1.8930000e+03, -3.0587768e-01],
[1.8940000e+03, -2.8989673e-01],
[1.8950000e+03, -2.6412309e-01],
[1.8960000e+03, -2.3420046e-01],
[1.8970000e+03, -2.0688846e-01],
[1.8980000e+03, -1.8826127e-01],
[1.8990000e+03, -1.9029747e-01],
[1.9000000e+03, -1.9041777e-01],
[1.9010000e+03, -2.1052187e-01],
[1.9020000e+03, -2.3951486e-01],
[1.9030000e+03, -2.7332065e-01],
[1.9040000e+03, -3.0802729e-01],
[1.9050000e+03, -3.4039285e-01],
[1.9060000e+03, -3.6792859e-01],
[1.9070000e+03, -3.8873466e-01],
[1.9080000e+03, -4.0133995e-01],
[1.9090000e+03, -4.0473654e-01],
[1.9100000e+03, -3.9864224e-01],
[1.9110000e+03, -3.8385706e-01],
[1.9120000e+03, -3.6248353e-01],
[1.9130000e+03, -3.3780340e-01],
[1.9140000e+03, -3.1373280e-01],
[1.9150000e+03, -2.9395672e-01],
[1.9160000e+03, -2.8099220e-01],
[1.9170000e+03, -2.7548705e-01],
[1.9180000e+03, -2.7600271e-01],
[1.9190000e+03, -2.7938060e-01],
[1.9200000e+03, -2.8160676e-01],
[1.9210000e+03, -2.7893362e-01],
[1.9220000e+03, -2.6894038e-01],
[1.9230000e+03, -2.5123339e-01],
[1.9240000e+03, -2.2759250e-01],
[1.9250000e+03, -2.0152357e-01],
[1.9260000e+03, -1.7733456e-01],
[1.9270000e+03, -1.5897455e-01],
[1.9280000e+03, -1.4893296e-01],
[1.9290000e+03, -1.4748200e-01],
[1.9300000e+03, -1.5246539e-01],
[1.9310000e+03, -1.5970922e-01],
[1.9320000e+03, -1.6398292e-01],
[1.9330000e+03, -1.6030041e-01],
[1.9340000e+03, -1.4525353e-01],
[1.9350000e+03, -1.1803903e-01],
[1.9360000e+03, -8.0891873e-02],
[1.9370000e+03, -3.8769614e-02],
[1.9380000e+03, 1.6788054e-03],
[1.9390000e+03, 3.3627749e-02],
[1.9400000e+03, 5.1688229e-02],
[1.9410000e+03, 5.3182029e-02],
[1.9420000e+03, 3.8713634e-02],
[1.9430000e+03, 1.1870389e-02],
[1.9440000e+03, -2.1858392e-02],
[1.9450000e+03, -5.6606614e-02],
[1.9460000e+03, -8.7618196e-02],
[1.9470000e+03, -1.1222553e-01],
[1.9480000e+03, -1.3002758e-01],
[1.9490000e+03, -1.4226376e-01],
[1.9500000e+03, -1.5067687e-01],
[1.9510000e+03, -1.5635109e-01],
[1.9520000e+03, -1.5901857e-01],
[1.9530000e+03, -1.5713763e-01],
[1.9540000e+03, -1.4872360e-01],
[1.9550000e+03, -1.3258472e-01],
[1.9560000e+03, -1.0941716e-01],
[1.9570000e+03, -8.2235388e-02],
[1.9580000e+03, -5.5860905e-02],
[1.9590000e+03, -3.5572835e-02],
[1.9600000e+03, -2.5386655e-02],
[1.9610000e+03, -2.6618324e-02],
[1.9620000e+03, -3.7322455e-02],
[1.9630000e+03, -5.2879559e-02],
[1.9640000e+03, -6.7566389e-02],
[1.9650000e+03, -7.6549427e-02],
[1.9660000e+03, -7.7555859e-02],
[1.9670000e+03, -7.1580184e-02],
[1.9680000e+03, -6.2344351e-02],
[1.9690000e+03, -5.4707384e-02],
[1.9700000e+03, -5.2629747e-02],
[1.9710000e+03, -5.7475926e-02],
[1.9720000e+03, -6.7313716e-02],
[1.9730000e+03, -7.7488079e-02],
[1.9740000e+03, -8.2259284e-02],
[1.9750000e+03, -7.6889578e-02],
[1.9760000e+03, -5.9396482e-02],
[1.9770000e+03, -3.1325416e-02],
[1.9780000e+03, 2.7272224e-03],
[1.9790000e+03, 3.6638228e-02],
[1.9800000e+03, 6.4746570e-02],
[1.9810000e+03, 8.3578693e-02],
[1.9820000e+03, 9.2716461e-02],
[1.9830000e+03, 9.4564894e-02],
[1.9840000e+03, 9.3197400e-02],
[1.9850000e+03, 9.2780389e-02],
[1.9860000e+03, 9.6188522e-02],
[1.9870000e+03, 1.0429013e-01],
[1.9880000e+03, 1.1608014e-01],
[1.9890000e+03, 1.2949761e-01],
[1.9900000e+03, 1.4252325e-01],
[1.9910000e+03, 1.5409344e-01],
[1.9920000e+03, 1.6449549e-01],
[1.9930000e+03, 1.7515198e-01],
[1.9940000e+03, 1.8795112e-01],
[1.9950000e+03, 2.0443603e-01],
[1.9960000e+03, 2.2895750e-01],
[1.9970000e+03, 2.5259346e-01],
[1.9980000e+03, 2.7768653e-01],
[1.9990000e+03, 3.1628220e-01],
[2.0000000e+03, 3.3892452e-01],
[2.0010000e+03, 3.5797668e-01],
[2.0020000e+03, 3.7346120e-01],
[2.0030000e+03, 3.8587267e-01],
[2.0040000e+03, 3.9568192e-01],
[2.0050000e+03, 4.0293797e-01],
[2.0060000e+03, 4.0713867e-01]
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment