diff --git a/circle.yml b/circle.yml new file mode 100644 index 00000000000..56f464fb73e --- /dev/null +++ b/circle.yml @@ -0,0 +1,23 @@ +general: + artifacts: + - "build/test_images/" # relative to the build directory + - "build/test_images_diff/" # relative to the build directory + +machine: + node: + version: 4.2.1 + services: + - docker + + +dependencies: + pre: + - docker pull plotly/imageserver:0.2.1 + post: + - npm run cibuild + - docker run -d --name myimageserver -v $PWD:/var/www/streambed/image_server/plotly.js -p 9010:9010 plotly/imageserver:0.2.1; sleep 20 + +test: + override: + - sudo lxc-attach -n "$(docker inspect --format '{{.Id}}' myimageserver)" -- bash -c "cd /var/www/streambed/image_server/plotly.js && node test/image/compare_pixels_test.js" + - npm run citest-jasmine diff --git a/devtools/image_viewer/index.html b/devtools/image_viewer/index.html index 36e0678c2cc..e4e7fc847fa 100644 --- a/devtools/image_viewer/index.html +++ b/devtools/image_viewer/index.html @@ -2,7 +2,7 @@ -
+
diff --git a/devtools/image_viewer/server.js b/devtools/image_viewer/server.js index ed2d40f2d59..084871ce34a 100644 --- a/devtools/image_viewer/server.js +++ b/devtools/image_viewer/server.js @@ -4,6 +4,7 @@ var path = require('path'); var exec = require('child_process').exec; var browserify = require('browserify'); +var brfs = require('brfs'); var ecstatic = require('ecstatic'); var _open = require('open'); @@ -15,14 +16,22 @@ var PORT = '9090'; console.log('Listening on :' + PORT + '\n'); -var listName = 'list-of-incorrect-images.txt'; +var listPath = constants.pathToTestImagesDiffList; +var listCMD = [ + 'ls', + constants.pathToTestImagesDiff, + '>', + listPath +].join(' '); // build image viewer bundle fs.unlink(constants.pathToImageViewerBundle, function() { - exec('ls ../test-images-diffs/ > ' + listName, function() { - var b = browserify(path.join(__dirname, './viewer.js'), { debug: true }); + exec(listCMD, function() { + var b = browserify(path.join(__dirname, './viewer.js'), { + debug: true, + transform: [brfs] + }); - b.transform('brfs'); b.bundle(function(err) { if(err) throw err; @@ -30,8 +39,8 @@ fs.unlink(constants.pathToImageViewerBundle, function() { }) .pipe(fs.createWriteStream(constants.pathToImageViewerBundle)); - fs.readFile(listName, 'utf8', function(err, data) { - console.log('In ' + listName + ':\n' + data); + fs.readFile(listPath, 'utf8', function(err, data) { + console.log('In ' + listPath + ':\n' + data); }); }); }); diff --git a/devtools/image_viewer/viewer.js b/devtools/image_viewer/viewer.js index 826cc2a1a2d..3a38a5cf36f 100644 --- a/devtools/image_viewer/viewer.js +++ b/devtools/image_viewer/viewer.js @@ -1,17 +1,23 @@ var fs = require('fs'); + var d3 = require('d3'); +var constants = require('../../tasks/util/constants'); + + var $plotlist = document.getElementById('plot-list'), $images = document.getElementById('plot-images'), $mock = document.getElementById('plot-mock'); -var dirBaseline = '../test-images-baseline/', - dirTest = '../test-images/', - dirDiff = '../test-images-diffs/', - dirMocks = '../mocks/'; +var dirBaseline = constants.pathToTestImageBaselines, + dirTest = constants.pathToTestImages, + dirDiff = constants.pathToTestImagesDiff, + dirMocks = constants.pathToTestImageMocks; +// N.B. brfs only understand hard-coded paths var imageNames = fs.readFileSync( - __dirname + '/list-of-incorrect-images.txt', 'utf8' + __dirname + '/../../build/list_of_incorrect_images.txt', + 'utf8' ) .split('\n') .filter(function(x) { return x; }) diff --git a/devtools/test_dashboard/buttons.js b/devtools/test_dashboard/buttons.js index fbb764e83e1..7cf41151a55 100644 --- a/devtools/test_dashboard/buttons.js +++ b/devtools/test_dashboard/buttons.js @@ -109,7 +109,7 @@ function plotButtons(plots, figDir) { plotlist.appendChild(pummelButton); var i = 0; - var mock = require('./testplots-3d/marker-color.json'); + var mock = require('@mocks/gl3d_marker-color.json'); var statusDiv = document.getElementById('status-info'); pummelButton.addEventListener('click', function () { diff --git a/devtools/test_dashboard/server.js b/devtools/test_dashboard/server.js index 39ef40d04b4..5d74bfc45d4 100644 --- a/devtools/test_dashboard/server.js +++ b/devtools/test_dashboard/server.js @@ -17,13 +17,13 @@ var PORT = '8080'; var testFile; switch(process.argv[2]) { case 'geo': - testFile = './test-geo'; + testFile = 'test_geo'; break; - case '2d': - testFile = './test-2d'; + case 'gl3d': + testFile = 'test_gl3d'; break; default: - testFile = './test-3d'; + testFile = 'test_gl2d'; } console.log('Using ' + testFile); diff --git a/devtools/test_dashboard/test-2d.js b/devtools/test_dashboard/test-2d.js deleted file mode 100644 index fc5168607dc..00000000000 --- a/devtools/test_dashboard/test-2d.js +++ /dev/null @@ -1,74 +0,0 @@ -"use strict"; -var plotButtons = require("./buttons"); -var plots={}; -plots["gl2d_10"]=require("./testplots-2d/gl2d_10.json"); -plots["gl2d_14"]=require("./testplots-2d/gl2d_14.json"); -plots["gl2d_12"]=require("./testplots-2d/gl2d_12.json"); -plots["gl2d_15"]=require("./testplots-2d/gl2d_15.json"); -plots["gl2d_17"]=require("./testplots-2d/gl2d_17.json"); -plots["gl2d_19"]=require("./testplots-2d/gl2d_19.json"); -plots["gl2d_18"]=require("./testplots-2d/gl2d_18.json"); -plots["gl2d_20"]=require("./testplots-2d/gl2d_20.json"); -plots["gl2d_22"]=require("./testplots-2d/gl2d_22.json"); -plots["gl2d_23"]=require("./testplots-2d/gl2d_23.json"); -plots["gl2d_24"]=require("./testplots-2d/gl2d_24.json"); -plots["gl2d_28"]=require("./testplots-2d/gl2d_28.json"); -plots["gl2d_27"]=require("./testplots-2d/gl2d_27.json"); -plots["gl2d_29"]=require("./testplots-2d/gl2d_29.json"); -plots["gl2d_26"]=require("./testplots-2d/gl2d_26.json"); -plots["gl2d_30"]=require("./testplots-2d/gl2d_30.json"); -plots["gl2d_2dhistogram_contour_subplots"]=require("./testplots-2d/gl2d_2dhistogram_contour_subplots.json"); -plots["gl2d_32"]=require("./testplots-2d/gl2d_32.json"); -plots["gl2d_5"]=require("./testplots-2d/gl2d_5.json"); -plots["gl2d_axes_booleans"]=require("./testplots-2d/gl2d_axes_booleans.json"); -plots["gl2d_axes_labels"]=require("./testplots-2d/gl2d_axes_labels.json"); -plots["gl2d_axes_lines"]=require("./testplots-2d/gl2d_axes_lines.json"); -plots["gl2d_axes_range_manual"]=require("./testplots-2d/gl2d_axes_range_manual.json"); -plots["gl2d_axes_range_type"]=require("./testplots-2d/gl2d_axes_range_type.json"); -plots["gl2d_axes_range_mode"]=require("./testplots-2d/gl2d_axes_range_mode.json"); -plots["gl2d_axes_reversed"]=require("./testplots-2d/gl2d_axes_reversed.json"); -plots["gl2d_bar_line"]=require("./testplots-2d/gl2d_bar_line.json"); -plots["gl2d_axes-ticks"]=require("./testplots-2d/gl2d_axes-ticks.json"); -plots["gl2d_basic_area"]=require("./testplots-2d/gl2d_basic_area.json"); -plots["gl2d_basic_error_bar"]=require("./testplots-2d/gl2d_basic_error_bar.json"); -plots["gl2d_basic_line"]=require("./testplots-2d/gl2d_basic_line.json"); -plots["gl2d_bubble_markersize0"]=require("./testplots-2d/gl2d_bubble_markersize0.json"); -plots["gl2d_bubble_nonnumeric-sizes"]=require("./testplots-2d/gl2d_bubble_nonnumeric-sizes.json"); -plots["gl2d_bubblechart"]=require("./testplots-2d/gl2d_bubblechart.json"); -plots["gl2d_contour_scatter"]=require("./testplots-2d/gl2d_contour_scatter.json"); -plots["gl2d_date_axes"]=require("./testplots-2d/gl2d_date_axes.json"); -plots["gl2d_custom_size_subplot"]=require("./testplots-2d/gl2d_custom_size_subplot.json"); -plots["gl2d_error_bar_asymmetric_array"]=require("./testplots-2d/gl2d_error_bar_asymmetric_array.json"); -plots["gl2d_error_bar_asymmetric_constant"]=require("./testplots-2d/gl2d_error_bar_asymmetric_constant.json"); -plots["gl2d_error_bar_horizontal"]=require("./testplots-2d/gl2d_error_bar_horizontal.json"); -plots["gl2d_error_bar_style"]=require("./testplots-2d/gl2d_error_bar_style.json"); -plots["gl2d_fonts"]=require("./testplots-2d/gl2d_fonts.json"); -plots["gl2d_global_font"]=require("./testplots-2d/gl2d_global_font.json"); -plots["gl2d_japanese"]=require("./testplots-2d/gl2d_japanese.json"); -plots["gl2d_legend_inside"]=require("./testplots-2d/gl2d_legend_inside.json"); -plots["gl2d_legend_labels"]=require("./testplots-2d/gl2d_legend_labels.json"); -plots["gl2d_legend_outside"]=require("./testplots-2d/gl2d_legend_outside.json"); -plots["gl2d_legend_style"]=require("./testplots-2d/gl2d_legend_style.json"); -plots["gl2d_legendgroup"]=require("./testplots-2d/gl2d_legendgroup.json"); -plots["gl2d_line_scatter"]=require("./testplots-2d/gl2d_line_scatter.json"); -plots["gl2d_line_style"]=require("./testplots-2d/gl2d_line_style.json"); -plots["gl2d_multiple_axes_double"]=require("./testplots-2d/gl2d_multiple_axes_double.json"); -plots["gl2d_multiple_axes_multiple"]=require("./testplots-2d/gl2d_multiple_axes_multiple.json"); -plots["gl2d_multiple_subplots"]=require("./testplots-2d/gl2d_multiple_subplots.json"); -plots["gl2d_percent_error_bar"]=require("./testplots-2d/gl2d_percent_error_bar.json"); -plots["gl2d_scatter-colorscale-colorbar"]=require("./testplots-2d/gl2d_scatter-colorscale-colorbar.json"); -plots["gl2d_scatter-marker-line-colorscales"]=require("./testplots-2d/gl2d_scatter-marker-line-colorscales.json"); -plots["gl2d_shared_axes_subplots"]=require("./testplots-2d/gl2d_shared_axes_subplots.json"); -plots["gl2d_show_legend"]=require("./testplots-2d/gl2d_show_legend.json"); -plots["gl2d_simple_annotation"]=require("./testplots-2d/gl2d_simple_annotation.json"); -plots["gl2d_simple_inset"]=require("./testplots-2d/gl2d_simple_inset.json"); -plots["gl2d_simple_subplot"]=require("./testplots-2d/gl2d_simple_subplot.json"); -plots["gl2d_size_margins"]=require("./testplots-2d/gl2d_size_margins.json"); -plots["gl2d_stacked_coupled_subplots"]=require("./testplots-2d/gl2d_stacked_coupled_subplots.json"); -plots["gl2d_stacked_subplots"]=require("./testplots-2d/gl2d_stacked_subplots.json"); -plots["gl2d_styling_names"]=require("./testplots-2d/gl2d_styling_names.json"); -plots["gl2d_text_chart_arrays"]=require("./testplots-2d/gl2d_text_chart_arrays.json"); -plots["gl2d_text_chart_basic"]=require("./testplots-2d/gl2d_text_chart_basic.json"); -plots["gl2d_text_chart_invalid-arrays"]=require("./testplots-2d/gl2d_text_chart_invalid-arrays.json"); -plots["gl2d_text_chart_styling"]=require("./testplots-2d/gl2d_text_chart_styling.json"); -plotButtons(plots, "./testplots-2d/"); diff --git a/devtools/test_dashboard/test-3d.js b/devtools/test_dashboard/test-3d.js deleted file mode 100644 index 9f6ccf19ce7..00000000000 --- a/devtools/test_dashboard/test-3d.js +++ /dev/null @@ -1,37 +0,0 @@ -'use strict'; - -var plotButtons = require('./buttons'); - -var plots = {}; - -plots['bunny-hull'] = require('./testplots-3d/bunny-hull.json'); -plots['ibm-plot'] = require('./testplots-3d/ibm-plot.json'); -plots['marker-color'] = require('./testplots-3d/marker-color.json'); -plots['log-axis-big'] = require('./testplots-3d/log-axis-big.json'); -plots['delaunay'] = require('./testplots-3d/delaunay.json'); -plots['log-axis'] = require('./testplots-3d/log-axis.json'); -plots['multi-scene'] = require('./testplots-3d/multi-scene.json'); -plots['surface-lighting'] = require('./testplots-3d/surface-lighting.json'); -plots['z-range'] = require('./testplots-3d/z-range.json'); -plots['mirror-ticks'] = require('./testplots-3d/mirror-ticks.json'); -plots['autorange-zero'] = require('./testplots-3d/autorange-zero.json'); -plots['contour-lines'] = require('./testplots-3d/contour-lines.json'); -plots['xy-defined-ticks'] = require('./testplots-3d/xy-defined-ticks.json'); -plots['opacity-surface'] = require('./testplots-3d/opacity-surface.json'); -plots['projection-traces'] = require('./testplots-3d/projection-traces.json'); -plots['opacity-scaling-spikes'] = require('./testplots-3d/opacity-scaling-spikes.json'); -plots['text-weirdness'] = require('./testplots-3d/text-weirdness.json'); -plots['wire-surface'] = require('./testplots-3d/wire-surface.json'); -plots['triangle-mesh3d'] = require('./testplots-3d/triangle.json'); -plots['snowden'] = require('./testplots-3d/snowden.json'); -plots['bunny'] = require('./testplots-3d/bunny.json'); -plots['ribbons'] = require('./testplots-3d/ribbons.json'); -plots['date-time'] = require('./testplots-3d/scatter-date.json'); -plots['cufflinks'] = require('./testplots-3d/cufflinks.json'); -plots['chrisp-nan-1'] = require('./testplots-3d/chrisp-nan-1.json'); -plots['marker-arrays'] = require('./testplots-3d/marker-arrays.json'); -plots['scatter3d-colorscale'] = require('./testplots-3d/scatter3d-colorscale.json'); -plots['autocolorscale'] = require('./testplots-3d/autocolorscale.json'); -plots['nan-holes'] = require('./testplots-3d/nan-holes.json'); - -plotButtons(plots, './testplots-3d/'); diff --git a/devtools/test_dashboard/test-geo.js b/devtools/test_dashboard/test_geo.js similarity index 100% rename from devtools/test_dashboard/test-geo.js rename to devtools/test_dashboard/test_geo.js diff --git a/devtools/test_dashboard/test_gl2d.js b/devtools/test_dashboard/test_gl2d.js new file mode 100644 index 00000000000..c149df842f4 --- /dev/null +++ b/devtools/test_dashboard/test_gl2d.js @@ -0,0 +1,46 @@ +var plotButtons = require('./buttons'); + +var figDir = '../../test/image/baselines/gl2d_'; + +var plots = {}; + +plots['10'] = require('@mocks/gl2d_10.json'); +plots['14'] = require('@mocks/gl2d_14.json'); +plots['12'] = require('@mocks/gl2d_12.json'); +plots['17'] = require('@mocks/gl2d_17.json'); +plots['22'] = require('@mocks/gl2d_22.json'); +plots['24'] = require('@mocks/gl2d_24.json'); +plots['28'] = require('@mocks/gl2d_28.json'); +plots['30'] = require('@mocks/gl2d_30.json'); +plots['32'] = require('@mocks/gl2d_32.json'); +plots['axes_booleans'] = require('@mocks/gl2d_axes_booleans.json'); +plots['axes_labels'] = require('@mocks/gl2d_axes_labels.json'); +plots['axes_lines'] = require('@mocks/gl2d_axes_lines.json'); +plots['axes_range_manual'] = require('@mocks/gl2d_axes_range_manual.json'); +plots['axes_range_type'] = require('@mocks/gl2d_axes_range_type.json'); +plots['axes_range_mode'] = require('@mocks/gl2d_axes_range_mode.json'); +plots['basic_error_bar'] = require('@mocks/gl2d_basic_error_bar.json'); +plots['bubble_markersize0'] = require('@mocks/gl2d_bubble_markersize0.json'); +plots['bubble_nonnumeric-sizes'] = require('@mocks/gl2d_bubble_nonnumeric-sizes.json'); +plots['date_axes'] = require('@mocks/gl2d_date_axes.json'); +plots['error_bar_asymmetric_array'] = require('@mocks/gl2d_error_bar_asymmetric_array.json'); +plots['error_bar_asymmetric_constant'] = require('@mocks/gl2d_error_bar_asymmetric_constant.json'); +plots['error_bar_horizontal'] = require('@mocks/gl2d_error_bar_horizontal.json'); +plots['error_bar_style'] = require('@mocks/gl2d_error_bar_style.json'); +plots['fonts'] = require('@mocks/gl2d_fonts.json'); +plots['global_font'] = require('@mocks/gl2d_global_font.json'); +plots['legend_inside'] = require('@mocks/gl2d_legend_inside.json'); +plots['legend_labels'] = require('@mocks/gl2d_legend_labels.json'); +plots['legend_outside'] = require('@mocks/gl2d_legend_outside.json'); +plots['legend_style'] = require('@mocks/gl2d_legend_style.json'); +plots['line_style'] = require('@mocks/gl2d_line_style.json'); +plots['multiple_subplots'] = require('@mocks/gl2d_multiple_subplots.json'); +plots['scatter-colorscale-colorbar'] = require('@mocks/gl2d_scatter-colorscale-colorbar.json'); +plots['scatter-marker-line-colorscales'] = require('@mocks/gl2d_scatter-marker-line-colorscales.json'); +plots['show_legend'] = require('@mocks/gl2d_show_legend.json'); +plots['simple_inset'] = require('@mocks/gl2d_simple_inset.json'); +plots['size_margins'] = require('@mocks/gl2d_size_margins.json'); +plots['stacked_coupled_subplots'] = require('@mocks/gl2d_stacked_coupled_subplots.json'); +plots['stacked_subplots'] = require('@mocks/gl2d_stacked_subplots.json'); + +plotButtons(plots, figDir); diff --git a/devtools/test_dashboard/test_gl3d.js b/devtools/test_dashboard/test_gl3d.js new file mode 100644 index 00000000000..76ed41e6379 --- /dev/null +++ b/devtools/test_dashboard/test_gl3d.js @@ -0,0 +1,37 @@ +var plotButtons = require('./buttons'); + +var figDir = '../../test/image/baselines/gl3d_'; + +var plots = {}; + +plots['bunny-hull'] = require('@mocks/gl3d_bunny-hull.json'); +plots['ibm-plot'] = require('@mocks/gl3d_ibm-plot.json'); +plots['marker-color'] = require('@mocks/gl3d_marker-color.json'); +plots['log-axis-big'] = require('@mocks/gl3d_log-axis-big.json'); +plots['delaunay'] = require('@mocks/gl3d_delaunay.json'); +plots['log-axis'] = require('@mocks/gl3d_log-axis.json'); +plots['multi-scene'] = require('@mocks/gl3d_multi-scene.json'); +plots['surface-lighting'] = require('@mocks/gl3d_surface-lighting.json'); +plots['z-range'] = require('@mocks/gl3d_z-range.json'); +plots['mirror-ticks'] = require('@mocks/gl3d_mirror-ticks.json'); +plots['autorange-zero'] = require('@mocks/gl3d_autorange-zero.json'); +plots['contour-lines'] = require('@mocks/gl3d_contour-lines.json'); +plots['xy-defined-ticks'] = require('@mocks/gl3d_xy-defined-ticks.json'); +plots['opacity-surface'] = require('@mocks/gl3d_opacity-surface.json'); +plots['projection-traces'] = require('@mocks/gl3d_projection-traces.json'); +plots['opacity-scaling-spikes'] = require('@mocks/gl3d_opacity-scaling-spikes.json'); +plots['text-weirdness'] = require('@mocks/gl3d_text-weirdness.json'); +plots['wire-surface'] = require('@mocks/gl3d_wire-surface.json'); +plots['triangle-mesh3d'] = require('@mocks/gl3d_triangle.json'); +plots['snowden'] = require('@mocks/gl3d_snowden.json'); +plots['bunny'] = require('@mocks/gl3d_bunny.json'); +plots['ribbons'] = require('@mocks/gl3d_ribbons.json'); +plots['date-time'] = require('@mocks/gl3d_scatter-date.json'); +plots['cufflinks'] = require('@mocks/gl3d_cufflinks.json'); +plots['chrisp-nan-1'] = require('@mocks/gl3d_chrisp-nan-1.json'); +plots['marker-arrays'] = require('@mocks/gl3d_marker-arrays.json'); +plots['scatter3d-colorscale'] = require('@mocks/gl3d_scatter3d-colorscale.json'); +plots['autocolorscale'] = require('@mocks/gl3d_autocolorscale.json'); +plots['nan-holes'] = require('@mocks/gl3d_nan-holes.json'); + +plotButtons(plots, figDir); diff --git a/devtools/test_dashboard/testplots-2d/gl2d_10.json b/devtools/test_dashboard/testplots-2d/gl2d_10.json deleted file mode 100644 index 99635d2f651..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_10.json +++ /dev/null @@ -1,116 +0,0 @@ -{ data: - [ { x: [ 'Trial 1', 'Trial 2', 'Trial 3', 'Trial 4', 'Trial 5', 'Trial 6' ], - y: - [ -0.16783142774745008, - 2.100280806922215, - 1.1036506778911788, - 3.1828090399422226, - 5.678521665403006, - 5.805721742660152 ], - mode: 'lines+markers', - name: 'Medians', - marker: - { color: 'rgb(255, 255, 255)', - size: 4, - line: { color: 'rgb(255, 0, 0)', width: 1 } }, - line: { color: 'rgba(255, 0, 0, 0.5)', width: 2 }, - fillcolor: 'rgba(255, 255, 255, 0)', - type: 'scattergl' } ], - layout: - { title: 'Math Score Box Plots', - titlefont: { color: '', family: '', size: 16 }, - font: - { family: 'Arial, sans-serif', - size: 14, - color: 'rgb(67, 67, 67)' }, - showlegend: false, - autosize: false, - width: 600, - height: 440, - xaxis: - { title: '', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.6575, 5.5 ], - domain: [ 0, 1 ], - type: 'category', - rangemode: 'normal', - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: 'rgb(255, 255, 255)', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Score', - titlefont: { color: '', family: '', size: 0 }, - range: [ -1.6340975059013805, 7.166241526218911 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: 'rgb(204, 204, 204)', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 2, - anchor: 'x', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - legend: - { x: 1.1837209302325582, - y: 1.0189344262295081, - traceorder: 'normal', - font: { family: '', size: 0, color: 'rgb(67, 67, 67)' }, - bgcolor: 'rgba(255, 255, 255, 0)', - bordercolor: 'rgba(0, 0, 0, 0)', - borderwidth: 1 }, - margin: { l: 80, r: 40, b: 80, t: 80, pad: 2, autoexpand: true }, - paper_bgcolor: 'rgb(255, 255, 255)', - plot_bgcolor: 'rgb(255, 255, 255)', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_10.png b/devtools/test_dashboard/testplots-2d/gl2d_10.png deleted file mode 100644 index 74bdecfb7a0..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_10.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_12.json b/devtools/test_dashboard/testplots-2d/gl2d_12.json deleted file mode 100644 index f4c7995bd60..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_12.json +++ /dev/null @@ -1,743 +0,0 @@ -{ data: - [ { x: - [ 6223.367465, - 4797.231267, - 1441.284873, - 12569.851770000001, - 1217.032994, - 430.07069160000003, - 2042.0952399999999, - 706.016537, - 1704.0637239999999, - 986.1478792000001, - 277.55185869999997, - 3632.557798, - 1544.750112, - 2082.4815670000003, - 5581.180998, - 12154.08975, - 641.3695236000001, - 690.8055759, - 13206.48452, - 752.7497265, - 1327.60891, - 942.6542111, - 579.2317429999999, - 1463.249282, - 1569.331442, - 414.5073415, - 12057.49928, - 1044.770126, - 759.3499101, - 1042.581557, - 1803.1514960000002, - 10956.99112, - 3820.17523, - 823.6856205, - 4811.060429, - 619.6768923999999, - 2013.9773050000001, - 7670.122558, - 863.0884639000001, - 1598.435089, - 1712.4721359999999, - 862.5407561000001, - 926.1410683, - 9269.657808, - 2602.394995, - 4513.480643, - 1107.482182, - 882.9699437999999, - 7092.923025, - 1056.3801210000001, - 1271.211593, - 469.70929810000007 ], - y: - [ 72.301, - 42.731, - 56.728, - 50.728, - 52.295, - 49.58, - 50.43, - 44.74100000000001, - 50.651, - 65.152, - 46.461999999999996, - 55.321999999999996, - 48.328, - 54.791000000000004, - 71.33800000000001, - 51.57899999999999, - 58.04, - 52.946999999999996, - 56.735, - 59.448, - 60.022, - 56.007, - 46.388000000000005, - 54.11, - 42.592, - 45.678000000000004, - 73.952, - 59.443000000000005, - 48.303000000000004, - 54.467, - 64.164, - 72.801, - 71.164, - 42.082, - 52.906000000000006, - 56.867, - 46.858999999999995, - 76.442, - 46.242, - 65.528, - 63.062, - 42.568000000000005, - 48.159, - 49.339, - 58.556000000000004, - 39.613, - 52.516999999999996, - 58.42, - 73.923, - 51.542, - 42.38399999999999, - 43.486999999999995 ], - mode: 'markers', - name: 'Africa', - text: - [ 'Country: Algeria
Life Expectancy: 72.301
GDP per capita: 6223.367465
Population: 33333216.0
Year: 2007', - 'Country: Angola
Life Expectancy: 42.731
GDP per capita: 4797.231267
Population: 12420476.0
Year: 2007', - 'Country: Benin
Life Expectancy: 56.728
GDP per capita: 1441.284873
Population: 8078314.0
Year: 2007', - 'Country: Botswana
Life Expectancy: 50.728
GDP per capita: 12569.85177
Population: 1639131.0
Year: 2007', - 'Country: Burkina Faso
Life Expectancy: 52.295
GDP per capita: 1217.032994
Population: 14326203.0
Year: 2007', - 'Country: Burundi
Life Expectancy: 49.58
GDP per capita: 430.0706916
Population: 8390505.0
Year: 2007', - 'Country: Cameroon
Life Expectancy: 50.43
GDP per capita: 2042.09524
Population: 17696293.0
Year: 2007', - 'Country: Central African Republic
Life Expectancy: 44.741
GDP per capita: 706.016537
Population: 4369038.0
Year: 2007', - 'Country: Chad
Life Expectancy: 50.651
GDP per capita: 1704.063724
Population: 10238807.0
Year: 2007', - 'Country: Comoros
Life Expectancy: 65.152
GDP per capita: 986.1478792
Population: 710960.0
Year: 2007', - 'Country: Congo, Dem. Rep.
Life Expectancy: 46.462
GDP per capita: 277.5518587
Population: 64606759.0
Year: 2007', - 'Country: Congo, Rep.
Life Expectancy: 55.322
GDP per capita: 3632.557798
Population: 3800610.0
Year: 2007', - 'Country: Cote dIvoire
Life Expectancy: 48.328
GDP per capita: 1544.750112
Population: 18013409.0
Year: 2007', - 'Country: Djibouti
Life Expectancy: 54.791
GDP per capita: 2082.481567
Population: 496374.0
Year: 2007', - 'Country: Egypt
Life Expectancy: 71.338
GDP per capita: 5581.180998
Population: 80264543.0
Year: 2007', - 'Country: Equatorial Guinea
Life Expectancy: 51.579
GDP per capita: 12154.08975
Population: 551201.0
Year: 2007', - 'Country: Eritrea
Life Expectancy: 58.04
GDP per capita: 641.3695236
Population: 4906585.0
Year: 2007', - 'Country: Ethiopia
Life Expectancy: 52.947
GDP per capita: 690.8055759
Population: 76511887.0
Year: 2007', - 'Country: Gabon
Life Expectancy: 56.735
GDP per capita: 13206.48452
Population: 1454867.0
Year: 2007', - 'Country: Gambia
Life Expectancy: 59.448
GDP per capita: 752.7497265
Population: 1688359.0
Year: 2007', - 'Country: Ghana
Life Expectancy: 60.022
GDP per capita: 1327.60891
Population: 22873338.0
Year: 2007', - 'Country: Guinea
Life Expectancy: 56.007
GDP per capita: 942.6542111
Population: 9947814.0
Year: 2007', - 'Country: Guinea-Bissau
Life Expectancy: 46.388
GDP per capita: 579.231743
Population: 1472041.0
Year: 2007', - 'Country: Kenya
Life Expectancy: 54.11
GDP per capita: 1463.249282
Population: 35610177.0
Year: 2007', - 'Country: Lesotho
Life Expectancy: 42.592
GDP per capita: 1569.331442
Population: 2012649.0
Year: 2007', - 'Country: Liberia
Life Expectancy: 45.678
GDP per capita: 414.5073415
Population: 3193942.0
Year: 2007', - 'Country: Libya
Life Expectancy: 73.952
GDP per capita: 12057.49928
Population: 6036914.0
Year: 2007', - 'Country: Madagascar
Life Expectancy: 59.443
GDP per capita: 1044.770126
Population: 19167654.0
Year: 2007', - 'Country: Malawi
Life Expectancy: 48.303
GDP per capita: 759.3499101
Population: 13327079.0
Year: 2007', - 'Country: Mali
Life Expectancy: 54.467
GDP per capita: 1042.581557
Population: 12031795.0
Year: 2007', - 'Country: Mauritania
Life Expectancy: 64.164
GDP per capita: 1803.151496
Population: 3270065.0
Year: 2007', - 'Country: Mauritius
Life Expectancy: 72.801
GDP per capita: 10956.99112
Population: 1250882.0
Year: 2007', - 'Country: Morocco
Life Expectancy: 71.164
GDP per capita: 3820.17523
Population: 33757175.0
Year: 2007', - 'Country: Mozambique
Life Expectancy: 42.082
GDP per capita: 823.6856205
Population: 19951656.0
Year: 2007', - 'Country: Namibia
Life Expectancy: 52.906
GDP per capita: 4811.060429
Population: 2055080.0
Year: 2007', - 'Country: Niger
Life Expectancy: 56.867
GDP per capita: 619.6768924
Population: 12894865.0
Year: 2007', - 'Country: Nigeria
Life Expectancy: 46.859
GDP per capita: 2013.977305
Population: 135031164.0
Year: 2007', - 'Country: Reunion
Life Expectancy: 76.442
GDP per capita: 7670.122558
Population: 798094.0
Year: 2007', - 'Country: Rwanda
Life Expectancy: 46.242
GDP per capita: 863.0884639
Population: 8860588.0
Year: 2007', - 'Country: Sao Tome and Principe
Life Expectancy: 65.528
GDP per capita: 1598.435089
Population: 199579.0
Year: 2007', - 'Country: Senegal
Life Expectancy: 63.062
GDP per capita: 1712.472136
Population: 12267493.0
Year: 2007', - 'Country: Sierra Leone
Life Expectancy: 42.568
GDP per capita: 862.5407561
Population: 6144562.0
Year: 2007', - 'Country: Somalia
Life Expectancy: 48.159
GDP per capita: 926.1410683
Population: 9118773.0
Year: 2007', - 'Country: South Africa
Life Expectancy: 49.339
GDP per capita: 9269.657808
Population: 43997828.0
Year: 2007', - 'Country: Sudan
Life Expectancy: 58.556
GDP per capita: 2602.394995
Population: 42292929.0
Year: 2007', - 'Country: Swaziland
Life Expectancy: 39.613
GDP per capita: 4513.480643
Population: 1133066.0
Year: 2007', - 'Country: Tanzania
Life Expectancy: 52.517
GDP per capita: 1107.482182
Population: 38139640.0
Year: 2007', - 'Country: Togo
Life Expectancy: 58.42
GDP per capita: 882.9699438
Population: 5701579.0
Year: 2007', - 'Country: Tunisia
Life Expectancy: 73.923
GDP per capita: 7092.923025
Population: 10276158.0
Year: 2007', - 'Country: Uganda
Life Expectancy: 51.542
GDP per capita: 1056.380121
Population: 29170398.0
Year: 2007', - 'Country: Zambia
Life Expectancy: 42.384
GDP per capita: 1271.211593
Population: 11746035.0
Year: 2007', - 'Country: Zimbabwe
Life Expectancy: 43.487
GDP per capita: 469.7092981
Population: 12311143.0
Year: 2007' ], - marker: - { color: 'rgb(255, 0, 0)', - size: - [ 29.810746602820924, - 18.197149567147044, - 14.675557544415877, - 6.610603004351287, - 19.543385335458176, - 14.956442130894114, - 21.72077890062975, - 10.792626698654045, - 16.52185943835442, - 4.353683242838546, - 41.50240100063496, - 10.066092062338873, - 21.91453196050797, - 3.6377994860079204, - 46.258986486204044, - 3.8334450569607683, - 11.437310410545528, - 45.16465542353964, - 6.227961099314154, - 6.709136738617642, - 24.694430700391482, - 16.285386604676816, - 6.264612285824508, - 30.812100863425822, - 7.325179403286266, - 9.227791164226492, - 12.68649752933601, - 22.60573984618565, - 18.849582296257626, - 17.910159625556144, - 9.337109185582111, - 5.774872714286052, - 29.999726284159046, - 23.063420581238734, - 7.40199199438875, - 18.54140518159347, - 60, - 4.612764339536968, - 15.369704446995708, - 2.3067029222366395, - 18.084735199216812, - 12.79910818701753, - 15.592022291528775, - 34.24915519732991, - 33.57902844158756, - 5.496191404660524, - 31.887651824471956, - 12.329112567064463, - 16.55196774082315, - 27.887232791984047, - 17.696194784090615, - 18.11688103909921 ], - line: { color: 'rgb(255, 255, 255)', width: 1 }, - opacity: 0.51 }, - opacity: 0.95, - visible: true, - type: 'scattergl' }, - { x: - [ 12779.379640000001, - 3822.1370840000004, - 9065.800825, - 36319.235010000004, - 13171.63885, - 7006.580419, - 9645.06142, - 8948.102923, - 6025.374752000001, - 6873.262326000001, - 5728.353514, - 5186.050003, - 1201.637154, - 3548.3308460000003, - 7320.880262000001, - 11977.57496, - 2749.320965, - 9809.185636, - 4172.838464, - 7408.905561, - 19328.70901, - 18008.50924, - 42951.65309, - 10611.46299, - 11415.805690000001 ], - y: - [ 75.32, - 65.554, - 72.39, - 80.653, - 78.553, - 72.889, - 78.782, - 78.273, - 72.235, - 74.994, - 71.878, - 70.259, - 60.916000000000004, - 70.19800000000001, - 72.567, - 76.195, - 72.899, - 75.53699999999999, - 71.752, - 71.421, - 78.74600000000001, - 69.819, - 78.242, - 76.384, - 73.747 ], - mode: 'markers', - name: 'Americas', - text: - [ 'Country: Argentina
Life Expectancy: 75.32
GDP per capita: 12779.37964
Population: 40301927.0
Year: 2007', - 'Country: Bolivia
Life Expectancy: 65.554
GDP per capita: 3822.137084
Population: 9119152.0
Year: 2007', - 'Country: Brazil
Life Expectancy: 72.39
GDP per capita: 9065.800825
Population: 190010647.0
Year: 2007', - 'Country: Canada
Life Expectancy: 80.653
GDP per capita: 36319.23501
Population: 33390141.0
Year: 2007', - 'Country: Chile
Life Expectancy: 78.553
GDP per capita: 13171.63885
Population: 16284741.0
Year: 2007', - 'Country: Colombia
Life Expectancy: 72.889
GDP per capita: 7006.580419
Population: 44227550.0
Year: 2007', - 'Country: Costa Rica
Life Expectancy: 78.782
GDP per capita: 9645.06142
Population: 4133884.0
Year: 2007', - 'Country: Cuba
Life Expectancy: 78.273
GDP per capita: 8948.102923
Population: 11416987.0
Year: 2007', - 'Country: Dominican Republic
Life Expectancy: 72.235
GDP per capita: 6025.374752
Population: 9319622.0
Year: 2007', - 'Country: Ecuador
Life Expectancy: 74.994
GDP per capita: 6873.262326
Population: 13755680.0
Year: 2007', - 'Country: El Salvador
Life Expectancy: 71.878
GDP per capita: 5728.353514
Population: 6939688.0
Year: 2007', - 'Country: Guatemala
Life Expectancy: 70.259
GDP per capita: 5186.050003
Population: 12572928.0
Year: 2007', - 'Country: Haiti
Life Expectancy: 60.916
GDP per capita: 1201.637154
Population: 8502814.0
Year: 2007', - 'Country: Honduras
Life Expectancy: 70.198
GDP per capita: 3548.330846
Population: 7483763.0
Year: 2007', - 'Country: Jamaica
Life Expectancy: 72.567
GDP per capita: 7320.880262
Population: 2780132.0
Year: 2007', - 'Country: Mexico
Life Expectancy: 76.195
GDP per capita: 11977.57496
Population: 108700891.0
Year: 2007', - 'Country: Nicaragua
Life Expectancy: 72.899
GDP per capita: 2749.320965
Population: 5675356.0
Year: 2007', - 'Country: Panama
Life Expectancy: 75.537
GDP per capita: 9809.185636
Population: 3242173.0
Year: 2007', - 'Country: Paraguay
Life Expectancy: 71.752
GDP per capita: 4172.838464
Population: 6667147.0
Year: 2007', - 'Country: Peru
Life Expectancy: 71.421
GDP per capita: 7408.905561
Population: 28674757.0
Year: 2007', - 'Country: Puerto Rico
Life Expectancy: 78.746
GDP per capita: 19328.70901
Population: 3942491.0
Year: 2007', - 'Country: Trinidad and Tobago
Life Expectancy: 69.819
GDP per capita: 18008.50924
Population: 1056608.0
Year: 2007', - 'Country: United States
Life Expectancy: 78.242
GDP per capita: 42951.65309
Population: 301139947.0
Year: 2007', - 'Country: Uruguay
Life Expectancy: 76.384
GDP per capita: 10611.46299
Population: 3447496.0
Year: 2007', - 'Country: Venezuela
Life Expectancy: 73.747
GDP per capita: 11415.80569
Population: 26084662.0
Year: 2007' ], - marker: - { color: 'rgb(204, 204, 204)', - size: - [ 21.94976988499517, - 10.441052822396196, - 47.66021903725089, - 19.979112486875845, - 13.95267548575408, - 22.993945975228556, - 7.029852430522167, - 11.682689085146487, - 10.555193870118702, - 12.823544926991564, - 9.108293955789053, - 12.259853478972317, - 10.082039742103595, - 9.458604761285072, - 5.765006135966166, - 36.048202790993614, - 8.23689670992972, - 6.22565654446431, - 8.927648460491556, - 18.514711052673302, - 6.865187781408511, - 3.5540539239313094, - 60, - 6.41976234423909, - 17.658738378883186 ], - line: { color: 'rgb(255, 255, 255)', width: 1 }, - opacity: 0.51 }, - opacity: 0.95, - visible: true, - type: 'scattergl' }, - { x: - [ 974.5803384, - 29796.048339999998, - 1391.253792, - 1713.7786859999999, - 4959.1148539999995, - 39724.97867, - 2452.210407, - 3540.6515640000002, - 11605.71449, - 4471.061906, - 25523.2771, - 31656.06806, - 4519.461171, - 1593.06548, - 23348.139730000003, - 10461.05868, - 12451.6558, - 3095.7722710000003, - 944, - 1091.359778, - 22316.19287, - 2605.94758, - 3190.481016, - 21654.83194, - 47143.179639999995, - 3970.0954070000003, - 4184.548089, - 28718.27684, - 7458.3963269999995, - 2441.576404, - 3025.349798, - 2280.769906 ], - y: - [ 43.828, - 75.635, - 64.062, - 59.723, - 72.961, - 82.208, - 64.69800000000001, - 70.65, - 70.964, - 59.545, - 80.745, - 82.603, - 72.535, - 67.297, - 78.623, - 71.993, - 74.241, - 66.803, - 62.068999999999996, - 63.785, - 75.64, - 65.483, - 71.688, - 72.777, - 79.972, - 72.396, - 74.143, - 78.4, - 70.616, - 74.249, - 73.422, - 62.698 ], - mode: 'markers', - name: 'Asia', - text: - [ 'Country: Afghanistan
Life Expectancy: 43.828
GDP per capita: 974.5803384
Population: 31889923.0
Year: 2007', - 'Country: Bahrain
Life Expectancy: 75.635
GDP per capita: 29796.04834
Population: 708573.0
Year: 2007', - 'Country: Bangladesh
Life Expectancy: 64.062
GDP per capita: 1391.253792
Population: 150448339.0
Year: 2007', - 'Country: Cambodia
Life Expectancy: 59.723
GDP per capita: 1713.778686
Population: 14131858.0
Year: 2007', - 'Country: China
Life Expectancy: 72.961
GDP per capita: 4959.114854
Population: 1318683096.0
Year: 2007', - 'Country: Hong Kong, China
Life Expectancy: 82.208
GDP per capita: 39724.97867
Population: 6980412.0
Year: 2007', - 'Country: India
Life Expectancy: 64.698
GDP per capita: 2452.210407
Population: 1110396331.0
Year: 2007', - 'Country: Indonesia
Life Expectancy: 70.65
GDP per capita: 3540.651564
Population: 223547000.0
Year: 2007', - 'Country: Iran
Life Expectancy: 70.964
GDP per capita: 11605.71449
Population: 69453570.0
Year: 2007', - 'Country: Iraq
Life Expectancy: 59.545
GDP per capita: 4471.061906
Population: 27499638.0
Year: 2007', - 'Country: Israel
Life Expectancy: 80.745
GDP per capita: 25523.2771
Population: 6426679.0
Year: 2007', - 'Country: Japan
Life Expectancy: 82.603
GDP per capita: 31656.06806
Population: 127467972.0
Year: 2007', - 'Country: Jordan
Life Expectancy: 72.535
GDP per capita: 4519.461171
Population: 6053193.0
Year: 2007', - 'Country: Korea, Dem. Rep.
Life Expectancy: 67.297
GDP per capita: 1593.06548
Population: 23301725.0
Year: 2007', - 'Country: Korea, Rep.
Life Expectancy: 78.623
GDP per capita: 23348.13973
Population: 49044790.0
Year: 2007', - 'Country: Lebanon
Life Expectancy: 71.993
GDP per capita: 10461.05868
Population: 3921278.0
Year: 2007', - 'Country: Malaysia
Life Expectancy: 74.241
GDP per capita: 12451.6558
Population: 24821286.0
Year: 2007', - 'Country: Mongolia
Life Expectancy: 66.803
GDP per capita: 3095.772271
Population: 2874127.0
Year: 2007', - 'Country: Myanmar
Life Expectancy: 62.069
GDP per capita: 944.0
Population: 47761980.0
Year: 2007', - 'Country: Nepal
Life Expectancy: 63.785
GDP per capita: 1091.359778
Population: 28901790.0
Year: 2007', - 'Country: Oman
Life Expectancy: 75.64
GDP per capita: 22316.19287
Population: 3204897.0
Year: 2007', - 'Country: Pakistan
Life Expectancy: 65.483
GDP per capita: 2605.94758
Population: 169270617.0
Year: 2007', - 'Country: Philippines
Life Expectancy: 71.688
GDP per capita: 3190.481016
Population: 91077287.0
Year: 2007', - 'Country: Saudi Arabia
Life Expectancy: 72.777
GDP per capita: 21654.83194
Population: 27601038.0
Year: 2007', - 'Country: Singapore
Life Expectancy: 79.972
GDP per capita: 47143.17964
Population: 4553009.0
Year: 2007', - 'Country: Sri Lanka
Life Expectancy: 72.396
GDP per capita: 3970.095407
Population: 20378239.0
Year: 2007', - 'Country: Syria
Life Expectancy: 74.143
GDP per capita: 4184.548089
Population: 19314747.0
Year: 2007', - 'Country: Taiwan
Life Expectancy: 78.4
GDP per capita: 28718.27684
Population: 23174294.0
Year: 2007', - 'Country: Thailand
Life Expectancy: 70.616
GDP per capita: 7458.396327
Population: 65068149.0
Year: 2007', - 'Country: Vietnam
Life Expectancy: 74.249
GDP per capita: 2441.576404
Population: 85262356.0
Year: 2007', - 'Country: West Bank and Gaza
Life Expectancy: 73.422
GDP per capita: 3025.349798
Population: 4018332.0
Year: 2007', - 'Country: Yemen, Rep.
Life Expectancy: 62.698
GDP per capita: 2280.769906
Population: 22211743.0
Year: 2007' ], - marker: - { color: 'rgb(204, 204, 204)', - size: - [ 9.330561207739747, - 1.390827697025556, - 20.266312242166443, - 6.211273648937339, - 60, - 4.3653750211924, - 55.05795036085951, - 24.703896200017994, - 13.769821732555231, - 8.664520214956125, - 4.188652530719761, - 18.654412200415056, - 4.0651192623762835, - 7.975814912067495, - 11.57117523159306, - 3.271861016562374, - 8.231768913808876, - 2.8011347940934943, - 11.418845373343052, - 8.882667412223675, - 2.9579312056937046, - 21.49670117903256, - 15.768343552577761, - 8.680479951148044, - 3.525577657243318, - 7.4587209016354095, - 7.261486641287726, - 7.95397619750268, - 13.3280083790662, - 15.256667990032932, - 3.312103798885452, - 7.787039017632765 ], - line: { color: 'rgb(255, 255, 255)', width: 1 }, - opacity: 0.51 }, - opacity: 0.95, - visible: true, - type: 'scattergl' }, - { x: - [ 5937.029525999999, - 36126.4927, - 33692.60508, - 7446.298803, - 10680.79282, - 14619.222719999998, - 22833.30851, - 35278.41874, - 33207.0844, - 30470.0167, - 32170.37442, - 27538.41188, - 18008.94444, - 36180.789189999996, - 40675.99635, - 28569.7197, - 9253.896111, - 36797.93332, - 49357.19017, - 15389.924680000002, - 20509.64777, - 10808.47561, - 9786.534714, - 18678.31435, - 25768.25759, - 28821.0637, - 33859.74835, - 37506.419069999996, - 8458.276384, - 33203.26128 ], - y: - [ 76.423, - 79.829, - 79.441, - 74.852, - 73.005, - 75.748, - 76.486, - 78.332, - 79.313, - 80.657, - 79.406, - 79.483, - 73.33800000000001, - 81.757, - 78.885, - 80.546, - 74.543, - 79.762, - 80.196, - 75.563, - 78.098, - 72.476, - 74.002, - 74.663, - 77.926, - 80.941, - 80.884, - 81.70100000000001, - 71.777, - 79.425 ], - mode: 'markers', - name: 'Europe', - text: - [ 'Country: Albania
Life Expectancy: 76.423
GDP per capita: 5937.029526
Population: 3600523.0
Year: 2007', - 'Country: Austria
Life Expectancy: 79.829
GDP per capita: 36126.4927
Population: 8199783.0
Year: 2007', - 'Country: Belgium
Life Expectancy: 79.441
GDP per capita: 33692.60508
Population: 10392226.0
Year: 2007', - 'Country: Bosnia and Herzegovina
Life Expectancy: 74.852
GDP per capita: 7446.298803
Population: 4552198.0
Year: 2007', - 'Country: Bulgaria
Life Expectancy: 73.005
GDP per capita: 10680.79282
Population: 7322858.0
Year: 2007', - 'Country: Croatia
Life Expectancy: 75.748
GDP per capita: 14619.22272
Population: 4493312.0
Year: 2007', - 'Country: Czech Republic
Life Expectancy: 76.486
GDP per capita: 22833.30851
Population: 10228744.0
Year: 2007', - 'Country: Denmark
Life Expectancy: 78.332
GDP per capita: 35278.41874
Population: 5468120.0
Year: 2007', - 'Country: Finland
Life Expectancy: 79.313
GDP per capita: 33207.0844
Population: 5238460.0
Year: 2007', - 'Country: France
Life Expectancy: 80.657
GDP per capita: 30470.0167
Population: 61083916.0
Year: 2007', - 'Country: Germany
Life Expectancy: 79.406
GDP per capita: 32170.37442
Population: 82400996.0
Year: 2007', - 'Country: Greece
Life Expectancy: 79.483
GDP per capita: 27538.41188
Population: 10706290.0
Year: 2007', - 'Country: Hungary
Life Expectancy: 73.338
GDP per capita: 18008.94444
Population: 9956108.0
Year: 2007', - 'Country: Iceland
Life Expectancy: 81.757
GDP per capita: 36180.78919
Population: 301931.0
Year: 2007', - 'Country: Ireland
Life Expectancy: 78.885
GDP per capita: 40675.99635
Population: 4109086.0
Year: 2007', - 'Country: Italy
Life Expectancy: 80.546
GDP per capita: 28569.7197
Population: 58147733.0
Year: 2007', - 'Country: Montenegro
Life Expectancy: 74.543
GDP per capita: 9253.896111
Population: 684736.0
Year: 2007', - 'Country: Netherlands
Life Expectancy: 79.762
GDP per capita: 36797.93332
Population: 16570613.0
Year: 2007', - 'Country: Norway
Life Expectancy: 80.196
GDP per capita: 49357.19017
Population: 4627926.0
Year: 2007', - 'Country: Poland
Life Expectancy: 75.563
GDP per capita: 15389.92468
Population: 38518241.0
Year: 2007', - 'Country: Portugal
Life Expectancy: 78.098
GDP per capita: 20509.64777
Population: 10642836.0
Year: 2007', - 'Country: Romania
Life Expectancy: 72.476
GDP per capita: 10808.47561
Population: 22276056.0
Year: 2007', - 'Country: Serbia
Life Expectancy: 74.002
GDP per capita: 9786.534714
Population: 10150265.0
Year: 2007', - 'Country: Slovak Republic
Life Expectancy: 74.663
GDP per capita: 18678.31435
Population: 5447502.0
Year: 2007', - 'Country: Slovenia
Life Expectancy: 77.926
GDP per capita: 25768.25759
Population: 2009245.0
Year: 2007', - 'Country: Spain
Life Expectancy: 80.941
GDP per capita: 28821.0637
Population: 40448191.0
Year: 2007', - 'Country: Sweden
Life Expectancy: 80.884
GDP per capita: 33859.74835
Population: 9031088.0
Year: 2007', - 'Country: Switzerland
Life Expectancy: 81.701
GDP per capita: 37506.41907
Population: 7554661.0
Year: 2007', - 'Country: Turkey
Life Expectancy: 71.777
GDP per capita: 8458.276384
Population: 71158647.0
Year: 2007', - 'Country: United Kingdom
Life Expectancy: 79.425
GDP per capita: 33203.26128
Population: 60776238.0
Year: 2007' ], - marker: - { color: 'rgb(204, 204, 204)', - size: - [ 12.542029402681376, - 18.92719251331642, - 21.30783431755826, - 14.102483219452576, - 17.88649832258261, - 14.010973368444008, - 21.139571238812916, - 15.456246600674588, - 15.128185315496781, - 51.65929267153148, - 60, - 21.627410389852702, - 20.855942428523296, - 3.6319417326760695, - 13.398544876923102, - 50.40242285907865, - 5.469487077232467, - 26.90632025621006, - 14.2193001873736, - 41.02213342839891, - 21.56322451638816, - 31.196377737918432, - 21.058319482558733, - 15.427079550618533, - 9.369177525034539, - 42.03727650225595, - 19.863467167731834, - 18.167388787784372, - 55.75693095494465, - 51.529025209914586 ], - line: { color: 'rgb(255, 255, 255)', width: 1 }, - opacity: 0.51 }, - opacity: 0.95, - visible: true, - type: 'scattergl' }, - { x: [ 34435.367439999995, 25185.00911 ], - y: [ 81.235, 80.204 ], - mode: 'markers', - name: 'Oceania', - text: - [ 'Country: Australia
Life Expectancy: 81.235
GDP per capita: 34435.36744
Population: 20434176.0
Year: 2007', - 'Country: New Zealand
Life Expectancy: 80.204
GDP per capita: 25185.00911
Population: 4115771.0
Year: 2007' ], - marker: - { color: 'rgb(204, 204, 204)', - size: [ 60, 26.92763965464884 ], - line: { color: 'rgb(255, 255, 255)', width: 1 }, - opacity: 0.51 }, - opacity: 0.95, - visible: true, - type: 'scattergl' } ], - layout: - { title: 'Life Expectancy vs GDP
Bubble Chart', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#000' }, - showlegend: false, - autosize: false, - width: 600, - height: 496, - xaxis: - { title: 'GDP per capita (2000 dollars)', - titlefont: { color: '', family: '', size: 0 }, - range: [ 2.1277059579936974, 5.024737566733606 ], - domain: [ 0, 1 ], - type: 'log', - rangemode: 'normal', - showgrid: false, - zeroline: false, - showline: true, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 'D2', - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'white', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - yaxis: - { title: 'Life Expectancy (years)', - titlefont: { color: '', family: '', size: 0 }, - range: [ 36.324623672665126, 90.34700250569831 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: false, - zeroline: false, - showline: true, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 10, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'white', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - legend: - { traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#000', - borderwidth: 1 }, - annotations: - [ { x: 0.9750000000000001, - y: 0.06952136075949367, - xref: 'paper', - yref: 'paper', - text: '2007', - font: { family: '', size: 36, color: 'rgb(23, 190, 207)' }, - align: 'center', - showarrow: false, - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -44.515625, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - tag: '' } ], - margin: { l: 80, r: 80, b: 80, t: 100, pad: 2, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'closest', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_12.png b/devtools/test_dashboard/testplots-2d/gl2d_12.png deleted file mode 100644 index 423c610f679..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_12.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_14.json b/devtools/test_dashboard/testplots-2d/gl2d_14.json deleted file mode 100644 index 674b9662a7d..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_14.json +++ /dev/null @@ -1,332 +0,0 @@ -{ data: - [ { x: - [ 0.002, - 0.004, - 0.006, - 0.009, - 0.013, - 0.02, - 0.028, - 0.037, - 0.054, - 0.076, - 0.099, - 0.125, - 0.154, - 0.188, - 0.228, - 0.275, - 0.33, - 0.388, - 0.448, - 0.517, - 0.594, - 0.683, - 0.809, - 0.964, - 1.165, - 1.425, - 1.753, - 2.22, - 2.798, - 3.911, - 5.34, - 6.915, - 9.443, - 15.772, - 23.21, - 40.019, - 69.684 ], - y: - [ 16.25, - 12.5, - 10, - 7.5, - 6.875, - 6.875, - 6.25, - 5.625, - 3.75, - 3.5, - 2.75, - 2.125, - 1.625, - 1.375, - 1.5, - 1.5, - 1.25, - 1, - 0.875, - 0.825, - 0.775, - 0.713, - 0.713, - 0.55, - 0.525, - 0.538, - 0.5, - 0.45, - 0.4, - 0.401, - 0.403, - 0.411, - 0.379, - 0.387, - 0.248, - 0.216, - 0.154 ], - mode: 'lines+markers', - name: 'PV learning curve.txt', - marker: - { color: 'rgb(0, 0, 238)', - size: 12, - line: { color: 'rgb(0, 0, 238)', width: 0 }, - opacity: 0.6 }, - line: { color: 'rgb(0, 0, 238)' }, - type: 'scattergl' } ], - layout: - { title: 'Silicon Photovoltaics Learning Curve', - titlefont: { color: '', family: '', size: 0 }, - font: { family: 'Arial, sans-serif', size: 12, color: '#000' }, - showlegend: false, - autosize: false, - width: 800, - height: 440, - xaxis: - { title: 'Cumulative Production (GW)', - titlefont: { color: '', family: '', size: 0 }, - range: [ -3.011967491973726, 2.1561305597186564 ], - domain: [ 0, 1 ], - type: 'log', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 40, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 'D1', - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Cost ($/WP)', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.9910086301469277, 1.389382716298284 ], - domain: [ 0, 1 ], - type: 'log', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 6, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 'D2', - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - legend: - { x: 0.98, - y: 0.98, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#000', - borderwidth: 1 }, - annotations: - [ { x: 1.197909148063702, - y: -0.41792941349024315, - xref: 'x', - yref: 'y', - text: '2008', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 6, - arrowsize: 1.5, - arrowwidth: 0, - arrowcolor: 'rgb(102, 102, 102)', - ax: 19, - ay: -27.500000476837158, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'log', - yatype: 'log', - tag: '', - ref: 'plot' }, - { x: 0.15585471975544452, - y: -0.2712377967655569, - xref: 'x', - yref: 'y', - text: '2000', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 6, - arrowsize: 1.5, - arrowwidth: 0, - arrowcolor: 'rgb(102, 102, 102)', - ax: 22, - ay: -27.500000476837158, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'log', - yatype: 'log', - tag: '', - ref: 'plot' }, - { x: 1.8420351138192386, - y: -0.812479279163537, - xref: 'x', - yref: 'y', - text: '2011', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 6, - arrowsize: 1.5, - arrowwidth: 0, - arrowcolor: 'rgb(102, 102, 102)', - ax: 12, - ay: -28.500000476837158, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'log', - yatype: 'log', - tag: '', - ref: 'plot' }, - { x: -0.5537301200821234, - y: 0.1728171433343787, - xref: 'x', - yref: 'y', - text: '1990', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 6, - arrowsize: 1.5, - arrowwidth: 0, - arrowcolor: 'rgb(102, 102, 102)', - ax: 19, - ay: -24.500000476837158, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'log', - yatype: 'log', - tag: '', - ref: 'plot' }, - { x: -2.701204903100102, - y: 1.2106274048483296, - xref: 'x', - yref: 'y', - text: '1975', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 6, - arrowsize: 1.5, - arrowwidth: 0, - arrowcolor: 'rgb(102, 102, 102)', - ax: -6, - ay: 29.499999523162842, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'log', - yatype: 'log', - tag: '', - ref: 'plot' }, - { x: -1.6961577824283882, - y: 0.8389367615528911, - xref: 'x', - yref: 'y', - text: '1980', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 6, - arrowsize: 1.5, - arrowwidth: 0, - arrowcolor: 'rgb(102, 102, 102)', - ax: 23, - ay: -36.50000047683716, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'log', - yatype: 'log', - tag: '', - ref: 'plot' } ], - margin: { l: 50, r: 40, b: 60, t: 80, pad: 2, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_14.png b/devtools/test_dashboard/testplots-2d/gl2d_14.png deleted file mode 100644 index 7b1a8f36c7e..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_14.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_15.json b/devtools/test_dashboard/testplots-2d/gl2d_15.json deleted file mode 100644 index f4b8c49a1a1..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_15.json +++ /dev/null @@ -1,458 +0,0 @@ -{ data: - [ { x: - [ 1760, - 1770, - 1780, - 1790, - 1800, - 1810, - 1820, - 1830, - 1840, - 1850, - 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000, - 2005 ], - y: - [ 254, - 259, - 285, - 295, - 294, - 314, - 321, - 342, - 358, - 373, - 381, - 393, - 419, - 455, - 490, - 526, - 566, - 601, - 621, - 632, - 713, - 832, - 1000, - 1190, - 1370, - 1450 ], - mode: 'lines', - name: 'Biomass', - line: { color: 'rgb(51, 152, 0)', width: 0.5 }, - fill: 'tonexty', - fillcolor: 'rgb(51, 152, 0)', - type: 'scattergl' }, - { x: - [ 1760, - 1770, - 1780, - 1790, - 1800, - 1810, - 1820, - 1830, - 1840, - 1850, - 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000, - 2005 ], - y: - [ 255.252615151, - 260.565768938, - 286.957211173, - 297.446513966, - 297.058142457, - 317.822678072, - 325.77834759, - 347.972934487, - 365.466168109, - 382.332710136, - 392.66588767, - 407.58235959, - 437.22794948, - 477.78493686, - 518.48117107, - 561.60146384, - 610.5018298, - 656.62728725, - 690.53410906, - 718.91763632, - 821.6470454, - 967.8088068, - 1195.2886151, - 1439.6691764, - 1677.7344285, - 1787.9762719999999 ], - mode: 'lines', - name: 'Hydro', - line: { color: 'rgb(0, 0, 238)', width: 0.5 }, - fill: 'tonexty', - fillcolor: 'rgb(0, 0, 238)', - type: 'scattergl' }, - { x: - [ 1760, - 1770, - 1780, - 1790, - 1800, - 1810, - 1820, - 1830, - 1840, - 1850, - 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000, - 2005 ], - y: - [ 258.552615151, - 263.86576893800003, - 291.357211173, - 302.946513966, - 305.858142457, - 328.822678072, - 341.17834759, - 374.37293448699995, - 401.76616810900003, - 441.732710136, - 492.76588767, - 568.18235959, - 693.52794948, - 857.28493686, - 1084.98117107, - 1417.40146384, - 1537.8018298, - 1604.8272872500002, - 1809.23410906, - 1895.91763632, - 2372.6470454, - 2680.5088068, - 3349.0886151000004, - 4078.5691764000003, - 4260.5344285, - 5123.176272 ], - mode: 'lines', - name: 'Coal', - line: { color: 'rgb(91, 15, 0)', width: 0.5 }, - fill: 'tonexty', - fillcolor: 'rgb(91, 15, 0)', - type: 'scattergl' }, - { x: - [ 1760, - 1770, - 1780, - 1790, - 1800, - 1810, - 1820, - 1830, - 1840, - 1850, - 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000, - 2005 ], - y: - [ 258.552615151, - 263.86576893800003, - 291.357211173, - 302.946513966, - 305.858142457, - 328.822678072, - 341.17834759, - 374.37293448699995, - 401.76616810900003, - 441.732710136, - 492.76588767, - 569.8923595900001, - 698.65794948, - 870.96493686, - 1112.34117107, - 1475.54146384, - 1671.1818297999998, - 1864.7472872500002, - 2200.82410906, - 2619.24763632, - 3824.4370454, - 5825.1988068, - 7499.2586151000005, - 8425.3891764, - 9113.514428499999, - 10417.336272 ], - mode: 'lines', - name: 'Oil', - line: { color: 'rgb(0, 0, 0)', width: 0.5 }, - fill: 'tonexty', - fillcolor: 'rgb(0, 0, 0)', - type: 'scattergl' }, - { x: - [ 1760, - 1770, - 1780, - 1790, - 1800, - 1810, - 1820, - 1830, - 1840, - 1850, - 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000, - 2005 ], - y: - [ 258.552615151, - 263.86576893800003, - 291.357211173, - 302.946513966, - 305.858142457, - 328.822678072, - 341.17834759, - 374.37293448699995, - 401.76616810900003, - 441.732710136, - 492.76588767, - 569.8923595900001, - 698.65794948, - 877.98493686, - 1119.36117107, - 1491.9214638400001, - 1696.9218297999998, - 1930.2672872500002, - 2299.10410906, - 2846.22763632, - 4374.3370454, - 7032.6388068, - 9230.8586151, - 10826.2291764, - 12134.4544285, - 13889.896272 ], - mode: 'lines', - name: 'Gas', - line: { color: 'rgb(204, 0, 0)', width: 0.5 }, - fill: 'tonexty', - fillcolor: 'rgb(204, 0, 0)', - type: 'scattergl' }, - { x: - [ 1760, - 1770, - 1780, - 1790, - 1800, - 1810, - 1820, - 1830, - 1840, - 1850, - 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000, - 2005 ], - y: - [ 258.552615151, - 263.86576893800003, - 291.357211173, - 302.946513966, - 305.858142457, - 328.822678072, - 341.17834759, - 374.37293448699995, - 401.76616810900003, - 441.732710136, - 492.76588767, - 569.8923595900001, - 698.65794948, - 877.98493686, - 1119.36117107, - 1491.9214638400001, - 1696.9218297999998, - 1930.2672872500002, - 2299.10410906, - 2846.22763632, - 4376.737045399999, - 7059.093290030663, - 9474.321996345721, - 11511.650120958522, - 13018.403778260437, - 14838.150892123203 ], - mode: 'lines', - name: 'Nuclear', - line: { color: 'rgb(153, 0, 255)', width: 0.5 }, - fill: 'tonexty', - fillcolor: 'rgb(153, 0, 255)', - type: 'scattergl' } ], - layout: - { title: 'World Primary Power Consumption', - titlefont: { color: '', family: '', size: 0 }, - font: { family: 'Arial, sans-serif', size: 14, color: '#000' }, - showlegend: true, - autosize: false, - width: 800, - height: 420, - xaxis: - { title: 'Year', - titlefont: { color: '', family: '', size: 0 }, - range: [ 1760, 2005 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: false, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 50, - ticklen: 5, - tickwidth: 1, - tickcolor: 'rgb(0, 0, 0)', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: 'rgb(255, 255, 255)', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: true, - overlaying: false, - autorange: false }, - yaxis: - { title: 'Power (GW)', - titlefont: { color: '', family: '', size: 0 }, - range: [ -554.9084002363447, 15648.311907510548 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: false, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 3000, - ticklen: 5, - tickwidth: 1, - tickcolor: 'rgb(255, 255, 255)', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: 'rgb(255, 255, 255)', - gridwidth: 3, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 0.5037179079816982, - traceorder: 'reversed', - font: { family: '', size: 0, color: '' }, - bgcolor: 'rgba(217, 217, 217, 0)', - bordercolor: 'rgba(204, 204, 204, 0)', - borderwidth: 0.5, - xanchor: 'left', - yanchor: 'auto' }, - margin: { l: 90, r: 10, b: 60, t: 80, pad: 0, autoexpand: true }, - paper_bgcolor: 'rgb(245, 245, 247)', - plot_bgcolor: 'rgb(245, 245, 245)', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_15.png b/devtools/test_dashboard/testplots-2d/gl2d_15.png deleted file mode 100644 index dc8e7cc6b7e..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_15.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_17.json b/devtools/test_dashboard/testplots-2d/gl2d_17.json deleted file mode 100644 index 7d3cd06c4c0..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_17.json +++ /dev/null @@ -1,674 +0,0 @@ -{ data: - [ { x: - [ '0.07511045655375555', - '0.1281296023564065', - '0.18114874815905743', - '0.22533136966126657', - '0.25184094256259204', - '0.2739322533136965', - '0.2960235640648011', - '0.3136966126656848', - '0.33136966126656847', - '0.3490427098674521', - '0.36671575846833576', - '0.38438880706921935', - '0.406480117820324', - '0.4462444771723122', - '0.4872711971386493', - '0.5434462444771723', - '0.5964653902798233', - '0.6494845360824743', - '0.7025036818851251', - '0.7555228276877761', - '0.8085419734904271', - '0.8615611192930782', - '0.914580265095729', - '0.96759941089838', - '1.020618556701031', - '1.0736377025036818', - '1.1266568483063328', - '1.1796759941089838', - '1.2326951399116348', - '1.285714285714286', - '1.3387334315169366', - '1.3917525773195876', - '1.4447717231222386', - '1.4977908689248896', - '1.5508100147275405', - '1.6038291605301915', - '1.6568483063328423', - '1.7098674521354933', - '1.7628865979381445', - '1.7614138438880704', - '1.8159057437407953', - '1.8689248895434465', - '1.9219440353460973', - '1.974963181148748', - '2.0279823269513995', - '2.0810014727540502', - '2.1340206185567006', - '2.1870397643593518', - '2.240058910162003', - '2.2930780559646537', - '2.346097201767305', - '2.3991163475699557', - '2.452135493372607', - '2.5051546391752577', - '2.5581737849779085', - '2.6111929307805597', - '2.6642120765832105', - '2.7172312223858617', - '2.770250368188513', - '2.823269513991163', - '2.8762886597938144', - '2.929307805596465', - '2.9823269513991164', - '3.035346097201767', - '3.0883652430044184', - '3.141384388807069', - '3.1855670103092786', - '3.212076583210604', - '3.2297496318114876', - '3.247422680412371', - '3.2650957290132547', - '3.282768777614138', - '3.300441826215022', - '3.3181148748159055', - '3.3446244477172313', - '3.38880706921944', - '3.441826215022091', - '3.4948453608247423', - '3.547864506627393', - '3.6008836524300443', - '3.653902798232695', - '3.7069219440353467', - '3.759941089837997', - '3.804123711340206', - '3.8350515463917527', - '3.857142857142857', - '3.874815905743741', - '3.8924889543446244', - '3.9101620029455084', - '3.9366715758468334', - '3.949926362297496', - '3.9808541973490428', - '3.9985272459499264', - '4.01620029455081', - '4.033873343151693', - '4.051546391752577', - '4.047128129602356', - '4.060382916053019', - '4.055964653902798', - '4.070692194403534', - '4.06480117820324', - '4.078055964653903', - '4.088365243004418', - '4.082474226804123', - '4.095729013254786', - '4.1060382916053015', - '4.139911634756995', - '4.142562592047128', - '4.166421207658321', - '4.175257731958763', - '4.182621502209131', - '4.191458026509574', - '4.210603829160529', - '4.228276877761414', - '4.250368188512518', - '4.2901325478645065', - '4.343151693667157', - '4.396170839469808', - '4.44918998527246', - '4.5022091310751104', - '4.555228276877761', - '4.608247422680412', - '4.661266568483064', - '4.714285714285714', - '4.767304860088365', - '4.820324005891017', - '4.873343151693667', - '4.926362297496317', - '4.97938144329897', - '5.03240058910162', - '5.085419734904271', - '5.1384388807069215', - '5.191458026509573', - '5.244477172312224', - '5.297496318114875', - '5.350515463917525', - '5.403534609720176', - '5.456553755522828', - '5.509572901325479', - '5.562592047128129', - '5.615611192930779', - '5.668630338733432', - '5.721649484536082', - '5.774668630338733', - '5.827687776141384', - '5.876288659793816' ], - y: - [ 0.06510416666666519, - -0.013020833333332593, - -0.2734375, - -1.0546875, - -1.9140625, - -2.916666666666665, - -4.0625, - -5.234375, - -6.2890625, - -7.3828125, - -8.4765625, - -9.53125, - -10.468750000000004, - -11.640625, - -12.533482142857144, - -12.135416666666668, - -11.679687500000004, - -11.223958333333332, - -10.638020833333343, - -10.10416666666667, - -9.622395833333334, - -9.140625, - -8.6328125, - -8.151041666666664, - -7.565104166666665, - -7.018229166666665, - -6.471354166666668, - -5.976562499999998, - -5.442708333333335, - -4.908854166666666, - -4.3619791666666625, - -3.867187499999999, - -3.372395833333334, - -2.8385416666666643, - -2.304687499999999, - -1.7708333333333326, - -1.263020833333337, - -0.7291666666666663, - -0.1822916666666663, - 1.2500000000000022, - 0.3385416666666696, - 0.8203125000000044, - 1.3541666666666696, - 1.8359375000000022, - 2.304687500000002, - 2.8515624999999956, - 3.320312499999998, - 3.8541666666666674, - 4.335937499999996, - 4.81770833333333, - 5.351562500000002, - 5.820312499999998, - 6.289062499999993, - 6.770833333333335, - 7.3177083333333375, - 7.91666666666667, - 8.3203125, - 8.671875000000002, - 9.088541666666664, - 9.531249999999998, - 10.130208333333336, - 10.71614583333333, - 11.22395833333334, - 11.54947916666667, - 12.05729166666666, - 12.1875, - 11.5234375, - 10.2734375, - 9.179687500000007, - 8.046874999999991, - 6.562500000000002, - 5.078124999999996, - 3.8671874999999933, - 2.7734375000000044, - 1.5039062499999978, - 0.7031249999999978, - 0.4687500000000022, - 0.46875000000000444, - 0.4687499999999978, - 0.5729166666666718, - 0.9114583333333259, - 1.3020833333333393, - 1.4453125000000022, - 0.9570312500000022, - -0.052083333333334814, - -1.250000000000001, - -2.578124999999999, - -3.7500000000000036, - -5.039062499999999, - -6.523437500000004, - -7.265624999999993, - -6.249999999999998, - -5.234375, - -4.023437499999996, - -2.6562500000000067, - 0.07812499999999778, - -1.4062500000000044, - 1.9921875000000067, - 1.1718749999999978, - 4.114583333333329, - 2.890625, - 5.703125000000004, - 7.96875, - 6.796875000000009, - 9.492187500000002, - 10.57291666666666, - 11.575520833333343, - 12.953124999999996, - 9.6875, - 8.281250000000004, - 6.640625, - 4.947916666666671, - 3.7499999999999956, - 2.5390625000000044, - 1.3802083333333304, - 0.390625, - 0.09114583333332815, - 0.07812499999999334, - 0.07812500000000444, - 0.07812499999999556, - 0.07812500000000888, - 0.07812499999999556, - 0.07812500000000888, - 0.14322916666667407, - 0.15625, - 0.10416666666666297, - 0.07812499999999556, - 0.07812499999999778, - 0.10416666666667185, - 0.15625000000000222, - 0.07812500000000888, - 0.07812499999999334, - 0.07812500000000444, - 0.07812500000000444, - 0.07812499999999556, - 0.1432291666666652, - 0.1302083333333326, - 0.07812499999999556, - 0.07812499999999778, - 0.07812500000000222, - 0.07812499999999334, - 0.07812499999999334, - 0.07812500000000222, - 0.07812500000000444, - 0.10416666666667185, - 0.15625000000000666 ], - mode: 'lines+markers', - name: 'Data', - marker: { color: 'rgb(67, 67, 67)' }, - line: { color: 'rgb(255, 217, 102)', width: 4 }, - type: 'scattergl' }, - { x: - [ '0.07511045655375555', - '0.1281296023564065', - '0.18114874815905743', - '0.22533136966126657', - '0.25184094256259204', - '0.2739322533136965', - '0.2960235640648011', - '0.3136966126656848', - '0.33136966126656847', - '0.3490427098674521', - '0.36671575846833576', - '0.38438880706921935', - '0.406480117820324', - '0.4462444771723122', - '0.4872711971386493', - '0.5434462444771723', - '0.5964653902798233', - '0.6494845360824743', - '0.7025036818851251', - '0.7555228276877761', - '0.8085419734904271', - '0.8615611192930782', - '0.914580265095729', - '0.96759941089838', - '1.020618556701031', - '1.0736377025036818', - '1.1266568483063328', - '1.1796759941089838', - '1.2326951399116348', - '1.285714285714286', - '1.3387334315169366', - '1.3917525773195876', - '1.4447717231222386', - '1.4977908689248896', - '1.5508100147275405', - '1.6038291605301915', - '1.6568483063328423', - '1.7098674521354933', - '1.7628865979381445', - '1.7614138438880704', - '1.8159057437407953', - '1.8689248895434465', - '1.9219440353460973', - '1.974963181148748', - '2.0279823269513995', - '2.0810014727540502', - '2.1340206185567006', - '2.1870397643593518', - '2.240058910162003', - '2.2930780559646537', - '2.346097201767305', - '2.3991163475699557', - '2.452135493372607', - '2.5051546391752577', - '2.5581737849779085', - '2.6111929307805597', - '2.6642120765832105', - '2.7172312223858617', - '2.770250368188513', - '2.823269513991163', - '2.8762886597938144', - '2.929307805596465', - '2.9823269513991164', - '3.035346097201767', - '3.0883652430044184', - '3.141384388807069', - '3.1855670103092786', - '3.212076583210604', - '3.2297496318114876', - '3.247422680412371', - '3.2650957290132547', - '3.282768777614138', - '3.300441826215022', - '3.3181148748159055', - '3.3446244477172313', - '3.38880706921944', - '3.441826215022091', - '3.4948453608247423', - '3.547864506627393', - '3.6008836524300443', - '3.653902798232695', - '3.7069219440353467', - '3.759941089837997', - '3.804123711340206', - '3.8350515463917527', - '3.857142857142857', - '3.874815905743741', - '3.8924889543446244', - '3.9101620029455084', - '3.9366715758468334', - '3.949926362297496', - '3.9808541973490428', - '3.9985272459499264', - '4.01620029455081', - '4.033873343151693', - '4.051546391752577', - '4.047128129602356', - '4.060382916053019', - '4.055964653902798', - '4.070692194403534', - '4.06480117820324', - '4.078055964653903', - '4.088365243004418', - '4.082474226804123', - '4.095729013254786', - '4.1060382916053015', - '4.139911634756995', - '4.142562592047128', - '4.166421207658321', - '4.175257731958763', - '4.182621502209131', - '4.191458026509574', - '4.210603829160529', - '4.228276877761414', - '4.250368188512518', - '4.2901325478645065', - '4.343151693667157', - '4.396170839469808', - '4.44918998527246', - '4.5022091310751104', - '4.555228276877761', - '4.608247422680412', - '4.661266568483064', - '4.714285714285714', - '4.767304860088365', - '4.820324005891017', - '4.873343151693667', - '4.926362297496317', - '4.97938144329897', - '5.03240058910162', - '5.085419734904271', - '5.1384388807069215', - '5.191458026509573', - '5.244477172312224', - '5.297496318114875', - '5.350515463917525', - '5.403534609720176', - '5.456553755522828', - '5.509572901325479', - '5.562592047128129', - '5.615611192930779', - '5.668630338733432', - '5.721649484536082', - '5.774668630338733', - '5.827687776141384', - '5.876288659793816' ], - y: - [ '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - -12.04780095816053, - -11.537710972359221, - -11.027620986557913, - -10.517531000756605, - -10.007441014955297, - -9.49735102915399, - -8.98726104335268, - -8.477171057551374, - -7.967081071750066, - -7.456991085948756, - -6.94690110014745, - -6.436811114346142, - -5.926721128544834, - -5.416631142743526, - -4.906541156942216, - -4.396451171140912, - -3.886361185339604, - -3.376271199538296, - -2.866181213736988, - -2.3560912279356785, - -1.8460012421343706, - -1.3359112563330644, - -0.8258212705317582, - -0.31573128473044676, - -0.32990045100271104, - 0.19435870107085762, - 0.7044486868721691, - 1.214538672673477, - 1.7246286584747814, - 2.234718644276093, - 2.744808630077401, - 3.2548986158787017, - 3.764988601680013, - 4.275078587481321, - 4.785168573282629, - 5.295258559083937, - 5.805348544885245, - 6.315438530686556, - 6.825528516487861, - 7.335618502289169, - 7.845708488090477, - 8.355798473891785, - 8.865888459693092, - 9.375978445494404, - 9.886068431295705, - 10.396158417097016, - 10.90624840289832, - 11.416338388699632, - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '', - '' ], - mode: 'lines', - name: 'Fit', - line: { color: 'rgb(0, 204, 0)', width: 4 }, - opacity: 0.55, - type: 'scattergl' } ], - layout: - { title: 'Extracting the Acceleration of Gravity
from Velocity Data', - titlefont: { color: '', family: '', size: 18 }, - font: { family: 'Times New Roman', size: 12, color: '#000' }, - showlegend: true, - autosize: false, - width: 800, - height: 440, - xaxis: - { title: 'Time (s)', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.01, 6 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: false }, - yaxis: - { title: 'Velocity (m/s)', - titlefont: { color: '', family: '', size: 0 }, - range: [ -14.271205357142858, 14.69084821428571 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { x: 0.9652176738141652, - y: 0.834367816091954, - traceorder: 'normal', - font: { family: '', size: 0, color: 'rgb(0, 0, 0)' }, - bgcolor: 'rgba(217, 217, 217, 0.31)', - bordercolor: 'rgba(217, 217, 217, 0.32)', - borderwidth: 1, - xanchor: 'auto', - yanchor: 'auto' }, - annotations: - [ { x: 1.6837075525359047, - y: -3.372244829235576, - xref: 'x', - yref: 'y', - text: 'R2 = 0.99
m = 9.62 m/s/s
y-int = -17.28', - font: { family: '', size: 16, color: '' }, - align: 'center', - showarrow: true, - arrowhead: 1, - arrowsize: 1, - arrowwidth: 2.5, - arrowcolor: 'rgb(0, 204, 0)', - ax: 49, - ay: 56.2890625, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'linear', - yatype: 'linear', - tag: '', - ref: 'plot' } ], - margin: { l: 70, r: 40, b: 60, t: 80, pad: 2, autoexpand: true }, - paper_bgcolor: 'rgba(217, 217, 217, 0.37)', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_17.png b/devtools/test_dashboard/testplots-2d/gl2d_17.png deleted file mode 100644 index ed2fed6d5ca..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_17.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_18.json b/devtools/test_dashboard/testplots-2d/gl2d_18.json deleted file mode 100644 index 53aca0e163a..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_18.json +++ /dev/null @@ -1,5414 +0,0 @@ -{ data: - [ { x: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - y: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - y: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - y: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - y: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - y: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - y: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - y: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - y: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - y: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - y: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - y: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - y: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - y: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - y: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - y: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - y: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - y: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - y: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - y: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - y: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - y: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - y: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - y: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - y: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - y: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - y: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - y: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - y: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - y: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - y: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - y: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - y: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - y: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - y: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - y: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - y: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x2', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - y: - [ 1.4, - 1.4, - 1.3, - 1.5, - 1.4, - 1.7, - 1.4, - 1.5, - 1.4, - 1.5, - 1.5, - 1.6, - 1.4, - 1.1, - 1.2, - 1.5, - 1.3, - 1.4, - 1.7, - 1.5, - 1.7, - 1.5, - 1, - 1.7, - 1.9, - 1.6, - 1.6, - 1.5, - 1.4, - 1.6, - 1.6, - 1.5, - 1.5, - 1.4, - 1.5, - 1.2, - 1.3, - 1.4, - 1.3, - 1.5, - 1.3, - 1.3, - 1.3, - 1.6, - 1.9, - 1.4, - 1.6, - 1.4, - 1.5, - 1.4 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - y: - [ 4.7, - 4.5, - 4.9, - 4, - 4.6, - 4.5, - 4.7, - 3.3, - 4.6, - 3.9, - 3.5, - 4.2, - 4, - 4.7, - 3.6, - 4.4, - 4.5, - 4.1, - 4.5, - 3.9, - 4.8, - 4, - 4.9, - 4.7, - 4.3, - 4.4, - 4.8, - 5, - 4.5, - 3.5, - 3.8, - 3.7, - 3.9, - 5.1, - 4.5, - 4.5, - 4.7, - 4.4, - 4.1, - 4, - 4.4, - 4.6, - 4, - 3.3, - 4.2, - 4.2, - 4.2, - 4.3, - 3, - 4.1 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - y: - [ 6, - 5.1, - 5.9, - 5.6, - 5.8, - 6.6, - 4.5, - 6.3, - 5.8, - 6.1, - 5.1, - 5.3, - 5.5, - 5, - 5.1, - 5.3, - 5.5, - 6.7, - 6.9, - 5, - 5.7, - 4.9, - 6.7, - 4.9, - 5.7, - 6, - 4.8, - 4.9, - 5.6, - 5.8, - 6.1, - 6.4, - 5.6, - 5.1, - 5.6, - 6.1, - 5.6, - 5.5, - 4.8, - 5.4, - 5.6, - 5.1, - 5.1, - 5.9, - 5.7, - 5.2, - 5, - 5.2, - 5.4, - 5.1 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - y: - [ 0.2, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.3, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.1, - 0.1, - 0.2, - 0.4, - 0.4, - 0.3, - 0.3, - 0.3, - 0.2, - 0.4, - 0.2, - 0.5, - 0.2, - 0.2, - 0.4, - 0.2, - 0.2, - 0.2, - 0.2, - 0.4, - 0.1, - 0.2, - 0.2, - 0.2, - 0.2, - 0.1, - 0.2, - 0.2, - 0.3, - 0.3, - 0.2, - 0.6, - 0.4, - 0.3, - 0.2, - 0.2, - 0.2, - 0.2 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - y: - [ 1.4, - 1.5, - 1.5, - 1.3, - 1.5, - 1.3, - 1.6, - 1, - 1.3, - 1.4, - 1, - 1.5, - 1, - 1.4, - 1.3, - 1.4, - 1.5, - 1, - 1.5, - 1.1, - 1.8, - 1.3, - 1.5, - 1.2, - 1.3, - 1.4, - 1.4, - 1.7, - 1.5, - 1, - 1.1, - 1, - 1.2, - 1.6, - 1.5, - 1.6, - 1.5, - 1.3, - 1.3, - 1.3, - 1.2, - 1.4, - 1.2, - 1, - 1.3, - 1.2, - 1.3, - 1.3, - 1.1, - 1.3 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - y: - [ 2.5, - 1.9, - 2.1, - 1.8, - 2.2, - 2.1, - 1.7, - 1.8, - 1.8, - 2.5, - 2, - 1.9, - 2.1, - 2, - 2.4, - 2.3, - 1.8, - 2.2, - 2.3, - 1.5, - 2.3, - 2, - 2, - 1.8, - 2.1, - 1.8, - 1.8, - 1.8, - 2.1, - 1.6, - 1.9, - 2, - 2.2, - 1.5, - 1.4, - 2.3, - 2.4, - 1.8, - 1.8, - 2.1, - 2.4, - 2.3, - 1.9, - 2.3, - 2.5, - 2.3, - 1.9, - 2, - 2.3, - 1.8 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y', - type: 'scattergl' }, - { x: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - y: - [ 3.5, - 3, - 3.2, - 3.1, - 3.6, - 3.9, - 3.4, - 3.4, - 2.9, - 3.1, - 3.7, - 3.4, - 3, - 3, - 4, - 4.4, - 3.9, - 3.5, - 3.8, - 3.8, - 3.4, - 3.7, - 3.6, - 3.3, - 3.4, - 3, - 3.4, - 3.5, - 3.4, - 3.2, - 3.1, - 3.4, - 4.1, - 4.2, - 3.1, - 3.2, - 3.5, - 3.6, - 3, - 3.4, - 3.5, - 2.3, - 3.2, - 3.5, - 3.8, - 3, - 3.8, - 3.2, - 3.7, - 3.3 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - y: - [ 3.2, - 3.2, - 3.1, - 2.3, - 2.8, - 2.8, - 3.3, - 2.4, - 2.9, - 2.7, - 2, - 3, - 2.2, - 2.9, - 2.9, - 3.1, - 3, - 2.7, - 2.2, - 2.5, - 3.2, - 2.8, - 2.5, - 2.8, - 2.9, - 3, - 2.8, - 3, - 2.9, - 2.6, - 2.4, - 2.4, - 2.7, - 2.7, - 3, - 3.4, - 3.1, - 2.3, - 3, - 2.5, - 2.6, - 3, - 2.6, - 2.3, - 2.7, - 3, - 2.9, - 2.9, - 2.5, - 2.8 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - y: - [ 3.3, - 2.7, - 3, - 2.9, - 3, - 3, - 2.5, - 2.9, - 2.5, - 3.6, - 3.2, - 2.7, - 3, - 2.5, - 2.8, - 3.2, - 3, - 3.8, - 2.6, - 2.2, - 3.2, - 2.8, - 2.8, - 2.7, - 3.3, - 3.2, - 2.8, - 3, - 2.8, - 3, - 2.8, - 3.8, - 2.8, - 2.8, - 2.6, - 3, - 3.4, - 3.1, - 3, - 3.1, - 3.1, - 3.1, - 2.7, - 3.2, - 3.3, - 3, - 2.5, - 3, - 3.4, - 3 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y2', - type: 'scattergl' }, - { x: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - y: - [ 5.1, - 4.9, - 4.7, - 4.6, - 5, - 5.4, - 4.6, - 5, - 4.4, - 4.9, - 5.4, - 4.8, - 4.8, - 4.3, - 5.8, - 5.7, - 5.4, - 5.1, - 5.7, - 5.1, - 5.4, - 5.1, - 4.6, - 5.1, - 4.8, - 5, - 5, - 5.2, - 5.2, - 4.7, - 4.8, - 5.4, - 5.2, - 5.5, - 4.9, - 5, - 5.5, - 4.9, - 4.4, - 5.1, - 5, - 4.5, - 4.4, - 5, - 5.1, - 4.8, - 5.1, - 4.6, - 5.3, - 5 ], - mode: 'markers', - name: 'setosa', - marker: { color: 'rgb(31, 119, 180)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - y: - [ 7, - 6.4, - 6.9, - 5.5, - 6.5, - 5.7, - 6.3, - 4.9, - 6.6, - 5.2, - 5, - 5.9, - 6, - 6.1, - 5.6, - 6.7, - 5.6, - 5.8, - 6.2, - 5.6, - 5.9, - 6.1, - 6.3, - 6.1, - 6.4, - 6.6, - 6.8, - 6.7, - 6, - 5.7, - 5.5, - 5.5, - 5.8, - 6, - 5.4, - 6, - 6.7, - 6.3, - 5.6, - 5.5, - 5.5, - 6.1, - 5.8, - 5, - 5.6, - 5.7, - 5.7, - 6.2, - 5.1, - 5.7 ], - mode: 'markers', - name: 'versicolor', - marker: { color: 'rgb(255, 127, 14)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y3', - type: 'scattergl' }, - { x: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - y: - [ 6.3, - 5.8, - 7.1, - 6.3, - 6.5, - 7.6, - 4.9, - 7.3, - 6.7, - 7.2, - 6.5, - 6.4, - 6.8, - 5.7, - 5.8, - 6.4, - 6.5, - 7.7, - 7.7, - 6, - 6.9, - 5.6, - 7.7, - 6.3, - 6.7, - 7.2, - 6.2, - 6.1, - 6.4, - 7.2, - 7.4, - 7.9, - 6.4, - 6.3, - 6.1, - 7.7, - 6.3, - 6.4, - 6, - 6.9, - 6.7, - 6.9, - 5.8, - 6.8, - 6.7, - 6.7, - 6.3, - 6.5, - 6.2, - 5.9 ], - mode: 'markers', - name: 'virginica', - marker: { color: 'rgb(44, 160, 44)', opacity: 0.7 }, - xaxis: 'x3', - yaxis: 'y3', - type: 'scattergl' } ], - layout: - { title: 'iris', - titlefont: { color: 'rgb(67,67,67)', family: '', size: 0 }, - font: { family: 'Arial, sans-serif', size: 12, color: '#000' }, - showlegend: false, - autosize: true, - width: 1152, - height: 539, - xaxis: - { title: 'petal width', - titlefont: { color: 'rgb(67, 67, 67)', family: '', size: 0 }, - range: [ -0.3968153936643981, 7.396815393664398 ], - domain: [ 0.26, 0.48 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: 'rgb(102,102,102)' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - yaxis: - { title: 'petal width', - titlefont: { color: 'rgb(67, 67, 67)', family: '', size: 0 }, - range: [ -0.6060803568842155, 7.606080356884216 ], - domain: [ 0.26, 0.48 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: 'rgb(102,102,102)' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - legend: - { traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#000', - borderwidth: 1 }, - margin: { l: 80, r: 80, b: 80, t: 80, pad: 2, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false, - yaxis2: - { title: 'sepal width', - titlefont: { color: 'rgb(67, 67, 67)', family: '', size: 0 }, - range: [ 1.750795168158512, 4.649204831841488 ], - domain: [ 0.52, 0.74 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: 'rgb(102,102,102)' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - yaxis3: - { title: 'sepal length', - titlefont: { color: 'rgb(67, 67, 67)', family: '', size: 0 }, - range: [ 3.926192752237768, 8.273807247762232 ], - domain: [ 0.78, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: 'rgb(102,102,102)' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - xaxis3: - { title: 'sepal length', - titlefont: { color: 'rgb(67, 67, 67)', family: '', size: 0 }, - range: [ 4.036980085707083, 8.163019914292917 ], - domain: [ 0.78, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: 'rgb(102,102,102)' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true }, - xaxis2: - { title: 'sepal width', - titlefont: { color: 'rgb(67, 67, 67)', family: '', size: 0 }, - range: [ 1.8246533904713889, 4.575346609528611 ], - domain: [ 0.52, 0.74 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: 'rgb(102,102,102)' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: 'all', - overlaying: false, - autorange: true } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_18.png b/devtools/test_dashboard/testplots-2d/gl2d_18.png deleted file mode 100644 index a77e0541096..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_18.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_19.json b/devtools/test_dashboard/testplots-2d/gl2d_19.json deleted file mode 100644 index ca533834eeb..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_19.json +++ /dev/null @@ -1,179 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], - y: [ 4, 3, 2 ], - name: 'trace 0', - type: 'scattergl' }, - { x: [ 20, 30, 40 ], - y: [ 30, 40, 50 ], - name: 'trace 1', - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' } ], - layout: - { title: 'Click to enter Plot title', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#444' }, - showlegend: true, - autosize: true, - width: 1152, - height: 481, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 0.8888888888888888, 3.111111111111111 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 0.5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 1.8888888888888888, 4.111111111111111 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 0.5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false, - yaxis2: - { title: 'Click to enter Y2 axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 28.88888888888889, 51.111111111111114 ], - domain: [ 0.6, 0.95 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x2', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - xaxis2: - { title: 'Click to enter X2 axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 18.88888888888889, 41.111111111111114 ], - domain: [ 0.6, 0.95 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y2', - position: 0, - mirror: false, - overlaying: false, - autorange: true } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_19.png b/devtools/test_dashboard/testplots-2d/gl2d_19.png deleted file mode 100644 index ec92cd296c9..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_19.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_20.json b/devtools/test_dashboard/testplots-2d/gl2d_20.json deleted file mode 100644 index e055101ca5a..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_20.json +++ /dev/null @@ -1,106 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], - y: [ 4, 5, 6 ], - name: 'yaxis1 data', - type: 'scattergl' }, - { x: [ 2, 3, 4 ], - y: [ 40, 50, 60 ], - name: 'yaxis2 data', - yaxis: 'y2', - type: 'scattergl' }, - { x: [ 3, 4, 5 ], - y: [ 400, 500, 600 ], - name: 'yaxis3 data', - yaxis: 'y3', - type: 'scattergl' }, - { x: [ 4, 5, 6 ], - y: [ 40000, 50000, 60000 ], - name: 'yaxis4 data', - yaxis: 'y4', - type: 'scattergl' }, - { x: [ 5, 6, 7 ], - y: [ 400000, 500000, 600000 ], - name: 'yaxis5 data', - yaxis: 'y5', - type: 'scattergl' }, - { x: [ 6, 7, 8 ], - y: [ 4000000, 5000000, 6000000 ], - name: 'yaxis6 data', - yaxis: 'y6', - type: 'scattergl' } ], - layout: - { title: 'multiple y-axes example', - xaxis: - { domain: [ 0.3, 0.7 ], - showline: true, - ticks: 'outside', - mirror: true }, - yaxis: - { title: 'yaxis title', - titlefont: { color: '#1f77b4' }, - showline: true, - ticks: 'outside', - tickcolor: '#1f77b4', - tickfont: { color: '#1f77b4' }, - linecolor: '#1f77b4' }, - legend: { x: 1.1, y: 1, bordercolor: '#000', borderwidth: 1 }, - yaxis2: - { title: 'yaxis2 title', - titlefont: { color: '#ff7f0e' }, - showline: true, - ticks: 'outside', - tickcolor: '#ff7f0e', - tickfont: { color: '#ff7f0e' }, - linecolor: '#ff7f0e', - anchor: 'free', - position: 0.15, - overlaying: 'y' }, - yaxis3: - { title: 'yaxis3 title', - titlefont: { color: '#2ca02c' }, - showline: true, - ticks: 'outside', - tickcolor: '#2ca02c', - tickfont: { color: '#2ca02c' }, - linecolor: '#2ca02c', - anchor: 'free', - position: 0, - overlaying: 'y' }, - yaxis4: - { title: 'yaxis4 title', - titlefont: { color: '#d62728' }, - showline: true, - ticks: 'outside', - tickcolor: '#d62728', - tickfont: { color: '#d62728' }, - showexponent: 'last', - linecolor: '#d62728', - side: 'right', - overlaying: 'y' }, - yaxis5: - { title: 'yaxis5 title', - titlefont: { color: '#9467bd' }, - showline: true, - ticks: 'outside', - tickcolor: '#9467bd', - tickfont: { color: '#9467bd' }, - exponentformat: 'power', - showexponent: 'first', - linecolor: '#9467bd', - anchor: 'free', - side: 'right', - position: 0.85, - overlaying: 'y' }, - yaxis6: - { title: 'yaxis6 title', - titlefont: { color: '#8c564b' }, - showline: true, - ticks: 'outside', - tickcolor: '#8c564b', - tickfont: { color: '#8c564b' }, - exponentformat: 'SI', - linecolor: '#8c564b', - anchor: 'free', - side: 'right', - position: 1, - overlaying: 'y' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_20.png b/devtools/test_dashboard/testplots-2d/gl2d_20.png deleted file mode 100644 index 9f785e01808..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_20.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_22.json b/devtools/test_dashboard/testplots-2d/gl2d_22.json deleted file mode 100644 index b06ab89ddec..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_22.json +++ /dev/null @@ -1,473 +0,0 @@ -{ data: - [ { x: - [ 0.2745828, - 0.6084574, - 0.5096348, - 0.490573, - 0.672185, - 0.9162287, - 0.6925859, - 0.43304, - 0.5602263, - 0.688225, - 0.5140796, - 0.7946838, - 0.7472041, - 0.6198329, - 0.1887226, - 0.2607859, - 0.298212, - 0.7095244, - 0.4948149, - 0.8802233, - 0.4759243, - 0.4978922, - 0.4551817, - 0.7567841, - 0.7107642, - 0.5373174, - 0.3999479, - 0.4249229, - 0.427395, - 0.6362453, - 0.7027798, - 0.8290062, - 0.7076494, - 0.2844114, - 0.7012079, - 0.5252903, - 0.3581651, - 0.4598303, - 0.4711324, - 0.5003926, - 0.5283441, - 0.4728993, - 0.41107, - 0.7465006, - 0.789414, - 0.6090213, - 0.5139681, - 0.784434, - 0.4262406, - 0.4397267, - 0.5113551, - 0.699221, - 0.4796254, - 0.6098452, - 0.4799747, - 0.5446012, - 0.1043925, - 0.7793422, - 0.7013112, - 0.2879599, - 0.005029248, - 0.831367, - 0.5118151, - 0.6867737, - 0.6185848, - 0.58273, - 0.7347273, - 0.5951995, - 0.1590054, - 0.6359341, - 0.431932, - 0.5387853, - 0.5439176, - 0.5686434, - 0.3884589, - 0.3857122, - 0.2851632, - 0.7194068, - 0.5187861, - 0.5906434, - 0.7069666, - 0.2687934, - 0.2730462, - 0.4647461, - 0.6381235, - 0.326215, - 0.3496917, - 0.6068356, - 0.5628589, - 0.6114233, - 0.6385066, - 0.7089051, - 0.1526521, - 0.5289359, - 0.5736565, - 0.1597208, - 0.518642, - 0.7134883, - 0.1958373, - 0.5084522 ], - y: - [ 0.3847886, - 0.641391, - 0.2755387, - 0.2738926, - 0.7589399, - 0.5964455, - 0.7739985, - 0.6734166, - 0.6230824, - 0.5240229, - 0.2356472, - 0.4986382, - 0.5412443, - 0.6013276, - 0.3175206, - 0.518264, - 0.8436307, - 0.3897152, - 0.5212212, - 0.5355197, - 0.3164944, - 0.5724257, - 0.5423177, - 0.02458256, - 0.9431606, - 0.7750537, - 0.7421726, - 0.6715111, - 0.4315454, - 0.2601702, - 0.4060387, - 0.6005118, - 0.8821356, - 0.2995901, - 0.8735208, - 0.2895402, - 0.6607297, - 0.4854665, - 0.1095986, - 0.9999312, - 0.2586879, - 0.3585169, - 0.4098131, - 0.4249161, - 0.5425741, - 0.5658551, - 0.9184134, - 0.784355, - 0.6926447, - 0.3685198, - 0.7148519, - 0.4602255, - 0.4422565, - 0.6091762, - 0.2609293, - 0.01898207, - 0.4172908, - 0.3313285, - 0.6706704, - 0.4474902, - 0.7879197, - 0.3950439, - 0.6252603, - 0.5980748, - 0.5784267, - 0.306143, - 0.5120303, - 0.4746844, - 0.3845672, - 0.4389648, - 0.4033444, - 0.4379424, - 0.3276909, - 0.2559954, - 0.3709007, - 0.4421715, - 0.7000844, - 0.3823873, - 0.8114967, - 0.2277254, - 0.8800163, - 0.5355718, - 0.06667808, - 0.6413784, - 0.05493311, - 0.5682398, - 0.9502476, - 0.4667727, - 0.5974046, - 0.6345938, - 0.4250089, - 0.6640978, - 0.4250252, - 0.6756984, - 0.3003977, - 0.5140921, - 0.4418917, - 0.3443315, - 0.5177113, - 0.2052651 ], - mode: 'markers', - name: 'trace 0', - marker: { symbol: 'circle' }, - type: 'scattergl' }, - { x: - [ -0.1342564, - -0.1076115, - -0.01476789, - 0.2203682, - 0.1071203, - 0.27828, - 0.2410137, - 0.03126907, - -0.09439932, - 0.1039596, - 0.05031307, - 0.274875, - -0.004807051, - 0.3256502, - 0.1363225, - 0.1663417, - -0.002147718, - -0.04512038, - 0.07485314, - 0.1030421, - -0.1087005, - 0.1157779, - -0.009807975, - 0.160193, - 0.239466, - -0.1701312, - -0.003660461, - 0.06127632, - -0.2216532, - -0.2705924, - -0.1419323, - 0.2279143, - 0.3312297, - 0.008872781, - 0.03549226, - 0.1253899, - 0.2163528, - 0.2256911, - 0.4579942, - 0.1675411, - -0.06685452, - 0.4312355, - -0.04255102, - -0.0007124913, - 0.2295949, - 0.1250768, - 0.1097492, - 0.1008452, - -0.09136819, - -0.08363584, - -0.1395033, - 0.2079811, - -0.02796698, - -0.1478058, - 0.1680786, - 0.06371863, - -0.08616526, - 0.1414658, - 0.1628091, - 0.1719133, - 0.01284859, - 0.04943766, - 0.03827147, - 0.123497, - 0.1729281, - 0.3346802, - 0.01212485, - 0.01018981, - 0.07477744, - 0.2658934, - 0.04307599, - 0.2326222, - -0.005089467, - -0.02228495, - 0.3590158, - 0.2229071, - 0.1811178, - 0.1009488, - 0.01431616, - 0.2678902 ], - y: - [ 1.241407, - 0.8797606, - 0.9560205, - 1.053963, - 1.285517, - 1.148887, - 1.263457, - 1.027853, - 1.159638, - 1.02231, - 0.865607, - 1.138473, - 1.104881, - 1.004787, - 1.031261, - 1.00257, - 1.165058, - 0.9698999, - 1.173983, - 1.063549, - 1.070477, - 0.9904026, - 0.995398, - 1.015882, - 0.9850381, - 1.011697, - 1.019743, - 0.9100328, - 0.8818258, - 0.7088867, - 1.168211, - 0.978159, - 1.127626, - 1.050722, - 1.20473, - 1.147426, - 1.28495, - 1.129772, - 1.167373, - 1.052659, - 0.9856654, - 0.8844718, - 0.9285932, - 1.320093, - 0.9377192, - 1.164003, - 1.108532, - 1.186178, - 1.072027, - 1.065784, - 1.178757, - 1.060408, - 1.130207, - 1.277109, - 1.177386, - 1.025656, - 1.065474, - 1.277075, - 0.8769456, - 1.139783, - 1.293347, - 1.101423, - 1.124847, - 1.220764, - 1.388462, - 1.219396, - 1.029278, - 1.100705, - 1.014257, - 1.101355, - 0.7951187, - 0.9742185, - 1.169975, - 1.159754, - 0.9336378, - 1.164015, - 1.125098, - 1.230621, - 1.124994, - 0.9821758 ], - mode: 'markers', - name: 'trace 1', - marker: { symbol: 'cross' }, - type: 'scattergl' } ], - layout: - { title: 'Click to enter Plot title', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#444' }, - showlegend: false, - autosize: true, - width: 1152, - height: 481, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.4, 0.9999999999999998 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.07433281386749718, 1.4817768838674972 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_22.png b/devtools/test_dashboard/testplots-2d/gl2d_22.png deleted file mode 100644 index 43bfa1de87f..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_22.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_23.json b/devtools/test_dashboard/testplots-2d/gl2d_23.json deleted file mode 100644 index 17b428aeb05..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_23.json +++ /dev/null @@ -1,135 +0,0 @@ -{ data: - [ { x: - [ 0, - 0.3571429, - 0.7142857, - 1.071429, - 1.428571, - 1.785714, - 2.142857, - 2.5, - 2.857143, - 3.214286, - 3.571429, - 3.928571, - 4.285714, - 4.642857, - 5 ], - y: - [ 0.869693, - 1.088434, - 0.758308, - 1.849319, - 1.728616, - 0.9908515, - 1.519909, - 1.083975, - 0.3153477, - 0.04181056, - -0.3400965, - -0.1003989, - -0.6768811, - -0.8555722, - -0.4287511 ], - name: 'trace 0', - type: 'scattergl' } ], - layout: - { title: 'Click to enter Plot title', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#444' }, - showlegend: true, - autosize: true, - width: 1152, - height: 481, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.5, 5.5 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 1, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -1.3694066111111112, 2.018725611111111 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 0.5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_23.png b/devtools/test_dashboard/testplots-2d/gl2d_23.png deleted file mode 100644 index b605270233d..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_23.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_24.json b/devtools/test_dashboard/testplots-2d/gl2d_24.json deleted file mode 100644 index 84444c5e1de..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_24.json +++ /dev/null @@ -1,123 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], - y: [ 4, 5, 6 ], - name: 'Experiment', - marker: - { color: 'rgb(54,144,192)', - size: 12, - symbol: 'square', - line: { color: 'darkblue', width: 3 }, - opacity: 1 }, - line: { color: 'rgb(3,78,123)', width: 6, dash: 'dot' }, - type: 'scattergl' }, - { x: [ 1, 2, 3 ], - y: [ 2, 10, 12 ], - name: 'Control', - marker: - { color: 'fuchsia', - size: 16, - symbol: 'cross', - line: { color: '', width: 0 }, - opacity: 0.9 }, - line: { color: 'purple', width: 4, dash: 'dashdot' }, - type: 'scattergl' } ], - layout: - { title: 'Click to enter Plot title', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#444' }, - showlegend: true, - autosize: true, - width: 1276, - height: 506, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 0.8886587260486795, 3.1113412739513207 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 0.5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 1.4444444444444444, 12.555555555555555 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_24.png b/devtools/test_dashboard/testplots-2d/gl2d_24.png deleted file mode 100644 index 960464c8098..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_24.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_26.json b/devtools/test_dashboard/testplots-2d/gl2d_26.json deleted file mode 100644 index 96cdc9b0362..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_26.json +++ /dev/null @@ -1,14153 +0,0 @@ -{ data: - [ { x: [ 2004.7449496677464 ], - y: [ 242.84457898323254 ], - name: '', - text: [ '4179 Toutatis
Radius: 2188 meters
Velocity: 11.0 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 220.77616239495518, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2079.2679907394736 ], - y: [ 279.6571383427504 ], - name: '', - text: [ '52768 1998 OR2
Radius: 1738 meters
Velocity: 8.17 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 175.78008287493748, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2073.30556125785 ], - y: [ 269.23559863262216 ], - name: '', - text: [ '164121 2003 YT1
Radius: 1445 meters
Velocity: 23.83 km/s' ], - marker: - { color: 'rgb(255,151,0)', - size: 146.5439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2076.571951553305 ], - y: [ 253.48302415127242 ], - name: '', - text: [ '385343 2002 LV
Radius: 1202 meters
Velocity: 20.01 km/s' ], - marker: - { color: 'rgb(255,86,0)', - size: 122.22644346174121, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2028.8114973465322 ], - y: [ 145.21541820872923 ], - name: '', - text: [ '35396 1997 XF11
Radius: 1047 meters
Velocity: 13.92 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 106.71285480509003, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2130.0353827380136 ], - y: [ 251.49676396955005 ], - name: '', - text: [ '85182 1991 AQ
Radius: 955 meters
Velocity: 24.73 km/s' ], - marker: - { color: 'rgb(255,167,0)', - size: 97.49925860214353, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2186.4866490275685 ], - y: [ 200.27765102510574 ], - name: '', - text: [ '314082 Dryope
Radius: 794 meters
Velocity: 13.98 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 81.43282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2071.8080455575323 ], - y: [ 208.89464192916287 ], - name: '', - text: [ '154276 2002 SY50
Radius: 759 meters
Velocity: 21.41 km/s' ], - marker: - { color: 'rgb(255,110,0)', - size: 77.85775750291832, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2198.285350425011 ], - y: [ 116.63233555827603 ], - name: '', - text: [ '290772 2005 VC
Radius: 724 meters
Velocity: 14.81 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 74.44359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2027.5908014384988 ], - y: [ 60.77752159620918 ], - name: '', - text: [ '137108 1999 AN10
Radius: 661 meters
Velocity: 26.28 km/s' ], - marker: - { color: 'rgb(255,196,0)', - size: 68.06934480075964, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2099.9343608868207 ], - y: [ 296.6604112621319 ], - name: '', - text: [ '33342 1998 WT24
Radius: 661 meters
Velocity: 9.01 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 68.06934480075964, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.9576737679242 ], - y: [ 296.99310409689184 ], - name: '', - text: [ '33342 1998 WT24
Radius: 661 meters
Velocity: 8.88 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 68.06934480075964, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2192.584793120752 ], - y: [ 307.4356831473995 ], - name: '', - text: [ '137126 1999 CF9
Radius: 631 meters
Velocity: 17.37 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 65.09573444801933, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2060.104798670985 ], - y: [ 190.98414183698262 ], - name: '', - text: [ '4660 Nereus
Radius: 575 meters
Velocity: 6.33 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 59.5439937337157, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2028.4774170126059 ], - y: [ 39.6952454802193 ], - name: '', - text: [ '153814 2001 WN5
Radius: 550 meters
Velocity: 10.24 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 56.95408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2169.5936601888598 ], - y: [ 266.7230028825372 ], - name: '', - text: [ '3362 Khufu
Radius: 550 meters
Velocity: 15.12 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 56.95408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2080.6432758542037 ], - y: [ 104.20485559349598 ], - name: '', - text: [ '163132 2002 CU11
Radius: 550 meters
Velocity: 26.36 km/s' ], - marker: - { color: 'rgb(255,196,0)', - size: 56.95408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.8023223545156 ], - y: [ 196.98788235590635 ], - name: '', - text: [ '2004 FU4
Radius: 550 meters
Velocity: 13.64 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 56.95408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2163.90454358834 ], - y: [ 264.9034673110986 ], - name: '', - text: [ '162474 2000 LB16
Radius: 525 meters
Velocity: 28.12 km/s' ], - marker: - { color: 'rgb(255,228,0)', - size: 54.480746024977286, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2096.1371515898 ], - y: [ 148.19074322852606 ], - name: '', - text: [ '269690 1996 RG3
Radius: 501 meters
Velocity: 14.15 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 52.11872336272722, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2086.7834173471406 ], - y: [ 181.27485535031002 ], - name: '', - text: [ '171576 1999 VP11
Radius: 501 meters
Velocity: 20.62 km/s' ], - marker: - { color: 'rgb(255,96,0)', - size: 52.11872336272722, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.1570240864924 ], - y: [ 230.49257708676592 ], - name: '', - text: [ '2001 EC
Radius: 479 meters
Velocity: 22.49 km/s' ], - marker: - { color: 'rgb(255,131,0)', - size: 49.863009232263806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2172.0556715022126 ], - y: [ 110.9297622010966 ], - name: '', - text: [ '276033 2002 AJ129
Radius: 457 meters
Velocity: 34.88 km/s' ], - marker: - { color: 'rgb(255,255,136)', - size: 47.708818961487516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2168.786641044356 ], - y: [ 195.4961727815103 ], - name: '', - text: [ '374158 2004 UL
Radius: 437 meters
Velocity: 35.75 km/s' ], - marker: - { color: 'rgb(255,255,156)', - size: 45.65158322401658, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2049.9685784559706 ], - y: [ 275.0524620375738 ], - name: '', - text: [ '2004 LV3
Radius: 437 meters
Velocity: 20.06 km/s' ], - marker: - { color: 'rgb(255,89,0)', - size: 45.65158322401658, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2015.0668708088135 ], - y: [ 192.65313008684595 ], - name: '', - text: [ '357439 2004 BL86
Radius: 417 meters
Velocity: 15.67 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 43.68693834703356, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.6285069111811 ], - y: [ 87.10472693520656 ], - name: '', - text: [ '2002 NY40
Radius: 398 meters
Velocity: 20.9 km/s' ], - marker: - { color: 'rgb(255,102,0)', - size: 41.81071705534972, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2038.1034339218102 ], - y: [ 172.20341407587594 ], - name: '', - text: [ '2002 NY40
Radius: 398 meters
Velocity: 20.55 km/s' ], - marker: - { color: 'rgb(255,96,0)', - size: 41.81071705534972, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2153.677801347262 ], - y: [ 121.03345051128942 ], - name: '', - text: [ '1997 GL3
Radius: 380 meters
Velocity: 24.99 km/s' ], - marker: - { color: 'rgb(255,172,0)', - size: 40.01893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2083.312048568344 ], - y: [ 219.9945916545704 ], - name: '', - text: [ '2006 JF42
Radius: 380 meters
Velocity: 12.45 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 40.01893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2159.2928413393547 ], - y: [ 180.81018325712714 ], - name: '', - text: [ '2006 JF42
Radius: 380 meters
Velocity: 12.36 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 40.01893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2101.568298283229 ], - y: [ 144.84514448898375 ], - name: '', - text: [ '2002 PD43
Radius: 380 meters
Velocity: 39.55 km/s' ], - marker: - { color: 'rgb(255,255,255)', - size: 40.01893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2076.9104625701384 ], - y: [ 251.7713190895516 ], - name: '', - text: [ '162173 1999 JU3
Radius: 363 meters
Velocity: 4.47 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 38.30780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2095.2431686510654 ], - y: [ 202.96089724255052 ], - name: '', - text: [ '297300 1998 SC15
Radius: 363 meters
Velocity: 14.06 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 38.30780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2140.878134361267 ], - y: [ 39.098877744260484 ], - name: '', - text: [ '153201 2000 WO107
Radius: 347 meters
Velocity: 26.02 km/s' ], - marker: - { color: 'rgb(255,191,0)', - size: 36.67368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2093.8906623025105 ], - y: [ 198.55273474877245 ], - name: '', - text: [ '153201 2000 WO107
Radius: 347 meters
Velocity: 26.18 km/s' ], - marker: - { color: 'rgb(255,193,0)', - size: 36.67368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2116.8714303635784 ], - y: [ 70.66080340352838 ], - name: '', - text: [ '152685 1998 MZ
Radius: 347 meters
Velocity: 17.55 km/s' ], - marker: - { color: 'rgb(255,44,0)', - size: 36.67368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.979986846707 ], - y: [ 299.75387644540876 ], - name: '', - text: [ '184266 2004 VW14
Radius: 331 meters
Velocity: 12.92 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 35.11311214825913, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2052.1997209677174 ], - y: [ 181.2015586556112 ], - name: '', - text: [ '221455 2006 BC10
Radius: 331 meters
Velocity: 18.48 km/s' ], - marker: - { color: 'rgb(255,60,0)', - size: 35.11311214825913, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2108.469614372824 ], - y: [ 263.1350483627057 ], - name: '', - text: [ '2011 UW158
Radius: 331 meters
Velocity: 6.4 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 35.11311214825913, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.501121451272 ], - y: [ 70.13564709938875 ], - name: '', - text: [ '2004 XP14
Radius: 331 meters
Velocity: 17.41 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 35.11311214825913, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2029.0685168711889 ], - y: [ 197.43688161911285 ], - name: '', - text: [ '292220 2006 SU49
Radius: 316 meters
Velocity: 4.9 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 33.622776601683796, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2122.8787711174978 ], - y: [ 131.99607710521659 ], - name: '', - text: [ '2005 GC120
Radius: 302 meters
Velocity: 17.78 km/s' ], - marker: - { color: 'rgb(255,47,0)', - size: 32.19951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2072.775787676961 ], - y: [ 111.79484630627688 ], - name: '', - text: [ '2011 SM68
Radius: 302 meters
Velocity: 22.93 km/s' ], - marker: - { color: 'rgb(255,138,0)', - size: 32.19951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4751665070023 ], - y: [ 273.967005350134 ], - name: '', - text: [ '1999 XL136
Radius: 302 meters
Velocity: 19.55 km/s' ], - marker: - { color: 'rgb(255,78,0)', - size: 32.19951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2029.2757819746666 ], - y: [ 9.51642303441163 ], - name: '', - text: [ '99942 Apophis
Radius: 288 meters
Velocity: 7.41 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 30.840315031266062, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2182.9787152350104 ], - y: [ 219.6939957795712 ], - name: '', - text: [ '332446 2008 AF4
Radius: 288 meters
Velocity: 11.92 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 30.840315031266062, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2073.302333759105 ], - y: [ 194.41140512142036 ], - name: '', - text: [ '2010 HQ80
Radius: 288 meters
Velocity: 19.94 km/s' ], - marker: - { color: 'rgb(255,86,0)', - size: 30.840315031266062, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2150.218272432827 ], - y: [ 289.66118621472856 ], - name: '', - text: [ '267221 2001 AD2
Radius: 275 meters
Velocity: 21.36 km/s' ], - marker: - { color: 'rgb(255,110,0)', - size: 29.54228703338165, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2149.889576965771 ], - y: [ 212.32292938332822 ], - name: '', - text: [ '279744 1998 KM3
Radius: 275 meters
Velocity: 18.18 km/s' ], - marker: - { color: 'rgb(255,54,0)', - size: 29.54228703338165, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2133.221937107492 ], - y: [ 208.3390756799714 ], - name: '', - text: [ '267221 2001 AD2
Radius: 275 meters
Velocity: 21.53 km/s' ], - marker: - { color: 'rgb(255,112,0)', - size: 29.54228703338165, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.5968344661892 ], - y: [ 259.7314120400353 ], - name: '', - text: [ '2004 QB
Radius: 275 meters
Velocity: 18.09 km/s' ], - marker: - { color: 'rgb(255,54,0)', - size: 29.54228703338165, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2185.537663655855 ], - y: [ 190.17105473015798 ], - name: '', - text: [ '2011 EL11
Radius: 275 meters
Velocity: 19.78 km/s' ], - marker: - { color: 'rgb(255,83,0)', - size: 29.54228703338165, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2046.242856925627 ], - y: [ 270.2738468506286 ], - name: '', - text: [ '267221 2001 AD2
Radius: 275 meters
Velocity: 21.94 km/s' ], - marker: - { color: 'rgb(255,120,0)', - size: 29.54228703338165, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2041.7485383118167 ], - y: [ 220.19675417646192 ], - name: '', - text: [ '2008 QS11
Radius: 263 meters
Velocity: 10.7 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 28.302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2086.7816344296943 ], - y: [ 139.55610573458395 ], - name: '', - text: [ '2340 Hathor
Radius: 251 meters
Velocity: 13.23 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2194.820505071241 ], - y: [ 138.85260596869048 ], - name: '', - text: [ '374855 2006 VQ13
Radius: 251 meters
Velocity: 16.44 km/s' ], - marker: - { color: 'rgb(255,26,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2130.3949770387603 ], - y: [ 166.5443698583311 ], - name: '', - text: [ '163348 2002 NN4
Radius: 251 meters
Velocity: 12.25 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2130.7701195961254 ], - y: [ 144.71445907748515 ], - name: '', - text: [ '2340 Hathor
Radius: 251 meters
Velocity: 13.4 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2048.145758253121 ], - y: [ 155.1245180337067 ], - name: '', - text: [ '162162 1999 DB7
Radius: 251 meters
Velocity: 7.0 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2069.786099326369 ], - y: [ 158.3877130486779 ], - name: '', - text: [ '2340 Hathor
Radius: 251 meters
Velocity: 13.2 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2070.4108788376443 ], - y: [ 242.226385898058 ], - name: '', - text: [ '163348 2002 NN4
Radius: 251 meters
Velocity: 12.32 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2160.1790178367773 ], - y: [ 246.00906377720838 ], - name: '', - text: [ '2006 FX
Radius: 251 meters
Velocity: 17.08 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 27.118864315095795, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2078.5865095114273 ], - y: [ 301.7493287067417 ], - name: '', - text: [ '277475 2005 WK4
Radius: 240 meters
Velocity: 9.19 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 25.988329190194886, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2100.2920715295836 ], - y: [ 82.65911823568861 ], - name: '', - text: [ '363116 2001 GQ2
Radius: 240 meters
Velocity: 19.45 km/s' ], - marker: - { color: 'rgb(255,78,0)', - size: 25.988329190194886, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2141.635121572921 ], - y: [ 194.30960220485184 ], - name: '', - text: [ '196625 2003 RM10
Radius: 229 meters
Velocity: 17.68 km/s' ], - marker: - { color: 'rgb(255,47,0)', - size: 24.908676527677734, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2054.516772349193 ], - y: [ 194.62032860184158 ], - name: '', - text: [ '2013 LM31
Radius: 229 meters
Velocity: 15.66 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 24.908676527677734, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2170.0992503383363 ], - y: [ 280.37069344514504 ], - name: '', - text: [ '2007 RV9
Radius: 229 meters
Velocity: 13.04 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 24.908676527677734, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2181.056570563995 ], - y: [ 255.1451638623617 ], - name: '', - text: [ '2005 CJ
Radius: 229 meters
Velocity: 12.09 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 24.908676527677734, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2192.0682963824643 ], - y: [ 144.36303702928228 ], - name: '', - text: [ '2007 PV27
Radius: 229 meters
Velocity: 16.37 km/s' ], - marker: - { color: 'rgb(255,23,0)', - size: 24.908676527677734, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2179.937936225537 ], - y: [ 245.4640466665211 ], - name: '', - text: [ '1995 YR1
Radius: 229 meters
Velocity: 29.06 km/s' ], - marker: - { color: 'rgb(255,243,0)', - size: 24.908676527677734, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.0754280522483 ], - y: [ 89.15305640400283 ], - name: '', - text: [ '2007 TU24
Radius: 219 meters
Velocity: 9.25 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2081.1994320514577 ], - y: [ 239.2422048539637 ], - name: '', - text: [ '2006 GB
Radius: 219 meters
Velocity: 7.1 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2037.2118364429846 ], - y: [ 249.62771604834242 ], - name: '', - text: [ '2006 GB
Radius: 219 meters
Velocity: 6.93 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2168.0338602253546 ], - y: [ 272.439149979968 ], - name: '', - text: [ '2007 TU24
Radius: 219 meters
Velocity: 9.05 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2136.027152426136 ], - y: [ 296.4701602446613 ], - name: '', - text: [ '2000 YF29
Radius: 219 meters
Velocity: 7.5 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2193.006413180664 ], - y: [ 158.55316523001198 ], - name: '', - text: [ '2000 YF29
Radius: 219 meters
Velocity: 7.76 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7634935297963 ], - y: [ 303.4977767290281 ], - name: '', - text: [ '2006 RZ
Radius: 219 meters
Velocity: 13.5 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 23.877616239495516, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1327361130118 ], - y: [ 266.64168140285415 ], - name: '', - text: [ '208023 1999 AQ10
Radius: 209 meters
Velocity: 8.27 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 22.892961308540407, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.674596657695 ], - y: [ 231.80186187154268 ], - name: '', - text: [ '2002 SZ
Radius: 209 meters
Velocity: 17.82 km/s' ], - marker: - { color: 'rgb(255,49,0)', - size: 22.892961308540407, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2150.6499646457733 ], - y: [ 262.16756154430385 ], - name: '', - text: [ '2002 SZ
Radius: 209 meters
Velocity: 17.42 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 22.892961308540407, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2059.878221796451 ], - y: [ 110.73945925229582 ], - name: '', - text: [ '2009 WM1
Radius: 209 meters
Velocity: 14.24 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 22.892961308540407, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2088.3458973891093 ], - y: [ 290.6568464816115 ], - name: '', - text: [ '2012 HZ33
Radius: 209 meters
Velocity: 13.84 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 22.892961308540407, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2042.4447200553502 ], - y: [ 234.2223387424332 ], - name: '', - text: [ '2004 MD6
Radius: 200 meters
Velocity: 21.57 km/s' ], - marker: - { color: 'rgb(255,115,0)', - size: 21.95262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2057.765683210924 ], - y: [ 274.49363949696 ], - name: '', - text: [ '162120 1998 SH36
Radius: 200 meters
Velocity: 17.61 km/s' ], - marker: - { color: 'rgb(255,44,0)', - size: 21.95262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.5945687544668 ], - y: [ 294.1521360980591 ], - name: '', - text: [ '162422 2000 EV70
Radius: 200 meters
Velocity: 16.12 km/s' ], - marker: - { color: 'rgb(255,18,0)', - size: 21.95262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2189.702843924395 ], - y: [ 286.12526104604416 ], - name: '', - text: [ '360191 1988 TA
Radius: 191 meters
Velocity: 13.26 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 21.05460717963246, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2120.2803229019355 ], - y: [ 226.78840274849495 ], - name: '', - text: [ '2011 DV
Radius: 191 meters
Velocity: 5.51 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 21.05460717963246, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2053.7343776135517 ], - y: [ 137.2696893785205 ], - name: '', - text: [ '360191 1988 TA
Radius: 191 meters
Velocity: 12.99 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 21.05460717963246, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.1579136444507 ], - y: [ 287.40565611204664 ], - name: '', - text: [ '2008 RG1
Radius: 182 meters
Velocity: 14.93 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2065.3867524291777 ], - y: [ 59.977242621714375 ], - name: '', - text: [ '2005 WY55
Radius: 182 meters
Velocity: 18.6 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2047.0222617581314 ], - y: [ 252.12763430774342 ], - name: '', - text: [ '2010 WZ8
Radius: 182 meters
Velocity: 7.21 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.21211585542 ], - y: [ 294.3444667931309 ], - name: '', - text: [ '4581 Asclepius
Radius: 182 meters
Velocity: 11.05 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2066.710123853839 ], - y: [ 73.43584577081073 ], - name: '', - text: [ '2011 SR5
Radius: 182 meters
Velocity: 26.36 km/s' ], - marker: - { color: 'rgb(255,196,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2082.927734820492 ], - y: [ 165.42792744222396 ], - name: '', - text: [ '2010 MU112
Radius: 182 meters
Velocity: 29.25 km/s' ], - marker: - { color: 'rgb(255,246,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8674178489425 ], - y: [ 261.4144048615441 ], - name: '', - text: [ '2010 RF181
Radius: 182 meters
Velocity: 7.87 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2194.1245495187263 ], - y: [ 199.76152774512818 ], - name: '', - text: [ '1999 FA
Radius: 182 meters
Velocity: 7.18 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2143.13607005459 ], - y: [ 284.1035802863662 ], - name: '', - text: [ '1999 FA
Radius: 182 meters
Velocity: 6.95 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2193.162865136931 ], - y: [ 97.60154138774682 ], - name: '', - text: [ '354182 2002 DU3
Radius: 182 meters
Velocity: 8.37 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 20.197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2087.794175676292 ], - y: [ 66.34187605009713 ], - name: '', - text: [ '2011 WL2
Radius: 174 meters
Velocity: 11.61 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 19.378008287493746, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2093.735898225446 ], - y: [ 254.85299391697595 ], - name: '', - text: [ '350751 2002 AW
Radius: 174 meters
Velocity: 8.48 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 19.378008287493746, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2077.796378662774 ], - y: [ 160.52185613936103 ], - name: '', - text: [ '2011 WL2
Radius: 174 meters
Velocity: 11.47 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 19.378008287493746, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2083.3943288779406 ], - y: [ 207.68940871557717 ], - name: '', - text: [ '2005 ED318
Radius: 174 meters
Velocity: 6.38 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 19.378008287493746, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2166.4033974271247 ], - y: [ 267.89909693873244 ], - name: '', - text: [ '2005 ED318
Radius: 174 meters
Velocity: 6.63 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 19.378008287493746, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2038.2924915986193 ], - y: [ 284.1571480732129 ], - name: '', - text: [ '2011 WL2
Radius: 174 meters
Velocity: 11.61 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 19.378008287493746, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2135.693486458951 ], - y: [ 93.67132044811923 ], - name: '', - text: [ '101955 Bennu
Radius: 166 meters
Velocity: 6.02 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 18.595869074375614, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.01811428919 ], - y: [ 136.34893409773488 ], - name: '', - text: [ '2001 YB5
Radius: 166 meters
Velocity: 30.59 km/s' ], - marker: - { color: 'rgb(255,255,22)', - size: 18.595869074375614, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2089.1795728601187 ], - y: [ 213.27736293545385 ], - name: '', - text: [ '216985 2000 QK130
Radius: 166 meters
Velocity: 7.62 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 18.595869074375614, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2036.194334200082 ], - y: [ 267.291685032573 ], - name: '', - text: [ '216985 2000 QK130
Radius: 166 meters
Velocity: 7.56 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 18.595869074375614, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2060.711714794033 ], - y: [ 115.79286117186356 ], - name: '', - text: [ '101955 Bennu
Radius: 166 meters
Velocity: 6.19 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 18.595869074375614, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2100.9749365144535 ], - y: [ 36.892687731615965 ], - name: '', - text: [ '2007 YV56
Radius: 158 meters
Velocity: 19.27 km/s' ], - marker: - { color: 'rgb(255,73,0)', - size: 17.848931924611136, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2073.7339385368673 ], - y: [ 300.79096170283856 ], - name: '', - text: [ '2012 GV17
Radius: 151 meters
Velocity: 12.44 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 17.13561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2172.132506120463 ], - y: [ 268.7286673046504 ], - name: '', - text: [ '2007 ED125
Radius: 151 meters
Velocity: 13.56 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 17.13561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2148.014620683363 ], - y: [ 53.34533570174979 ], - name: '', - text: [ '85640 1998 OX4
Radius: 151 meters
Velocity: 12.3 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 17.13561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2125.8164830527803 ], - y: [ 256.17097668292905 ], - name: '', - text: [ '2005 GL
Radius: 145 meters
Velocity: 12.6 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 16.45439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2058.83438635707 ], - y: [ 253.34208114381656 ], - name: '', - text: [ '2005 GL
Radius: 145 meters
Velocity: 12.57 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 16.45439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2039.1507420586045 ], - y: [ 272.65594695594893 ], - name: '', - text: [ '369057 2008 DK5
Radius: 138 meters
Velocity: 18.6 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 15.80384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.311345285343 ], - y: [ 101.04189321444147 ], - name: '', - text: [ '2011 JA
Radius: 138 meters
Velocity: 22.72 km/s' ], - marker: - { color: 'rgb(255,133,0)', - size: 15.80384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2023.785479677022 ], - y: [ 189.72962457907522 ], - name: '', - text: [ '1998 HH49
Radius: 138 meters
Velocity: 14.79 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 15.80384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2022.9827847725926 ], - y: [ 125.44515904787092 ], - name: '', - text: [ '2010 XC15
Radius: 132 meters
Velocity: 10.1 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 15.182567385564079, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2137.3840647476545 ], - y: [ 130.28813217917153 ], - name: '', - text: [ '1999 MN
Radius: 132 meters
Velocity: 15.21 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 15.182567385564079, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2148.380491309703 ], - y: [ 206.47707805175347 ], - name: '', - text: [ '1999 MN
Radius: 132 meters
Velocity: 15.46 km/s' ], - marker: - { color: 'rgb(255,7,0)', - size: 15.182567385564079, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2110.391221127382 ], - y: [ 160.5593445351745 ], - name: '', - text: [ '1999 MN
Radius: 132 meters
Velocity: 15.14 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 15.182567385564079, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2064.9678504630265 ], - y: [ 220.7884595747251 ], - name: '', - text: [ '2010 XC15
Radius: 132 meters
Velocity: 9.72 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 15.182567385564079, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2028.5595490625428 ], - y: [ 231.8562739168102 ], - name: '', - text: [ '2011 LJ19
Radius: 132 meters
Velocity: 9.76 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 15.182567385564079, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.450040296215 ], - y: [ 282.979599788406 ], - name: '', - text: [ '2011 LT17
Radius: 120 meters
Velocity: 13.56 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 14.022644346174118, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2156.913123640953 ], - y: [ 66.0379011948337 ], - name: '', - text: [ '2011 LT17
Radius: 120 meters
Velocity: 14.1 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 14.022644346174118, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2155.4100139896295 ], - y: [ 111.10306754036324 ], - name: '', - text: [ '2011 LT17
Radius: 120 meters
Velocity: 13.88 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 14.022644346174118, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2046.4373127746605 ], - y: [ 166.4126490354283 ], - name: '', - text: [ '2000 LF3
Radius: 120 meters
Velocity: 15.26 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 14.022644346174118, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2167.423273725347 ], - y: [ 220.47015879069914 ], - name: '', - text: [ '162416 2000 EH26
Radius: 115 meters
Velocity: 8.68 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 13.481536214968829, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2103.114258777732 ], - y: [ 261.77301182364425 ], - name: '', - text: [ '1995 CR
Radius: 115 meters
Velocity: 29.86 km/s' ], - marker: - { color: 'rgb(255,255,2)', - size: 13.481536214968829, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2106.2725240636832 ], - y: [ 219.1861873000545 ], - name: '', - text: [ '162416 2000 EH26
Radius: 115 meters
Velocity: 8.15 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 13.481536214968829, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2101.9887607773367 ], - y: [ 205.96115327094938 ], - name: '', - text: [ '2011 BT15
Radius: 110 meters
Velocity: 7.21 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 12.964781961431845, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2040.0831147453735 ], - y: [ 169.02101218648934 ], - name: '', - text: [ '367789 2011 AG5
Radius: 110 meters
Velocity: 9.8 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 12.964781961431845, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2023.085722594772 ], - y: [ 284.39916778809544 ], - name: '', - text: [ '367789 2011 AG5
Radius: 110 meters
Velocity: 9.92 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 12.964781961431845, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2072.2346532244574 ], - y: [ 293.22959301769083 ], - name: '', - text: [ '2007 SQ6
Radius: 105 meters
Velocity: 6.03 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 12.471285480509001, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2075.8321814698234 ], - y: [ 36.5807701541299 ], - name: '', - text: [ '308635 2005 YU55
Radius: 105 meters
Velocity: 13.76 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 12.471285480509001, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.885452306008 ], - y: [ 168.98109672045643 ], - name: '', - text: [ '2013 NJ
Radius: 105 meters
Velocity: 6.82 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 12.471285480509001, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8993583017807 ], - y: [ 151.60043223551233 ], - name: '', - text: [ '2013 NJ
Radius: 105 meters
Velocity: 6.82 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 12.471285480509001, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8515901798885 ], - y: [ 48.59787057910025 ], - name: '', - text: [ '308635 2005 YU55
Radius: 105 meters
Velocity: 13.72 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 12.471285480509001, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2029.3592046439487 ], - y: [ 264.6100205927815 ], - name: '', - text: [ '2000 SL10
Radius: 105 meters
Velocity: 8.4 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 12.471285480509001, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.2537445067896 ], - y: [ 207.23639312753195 ], - name: '', - text: [ '2003 GG21
Radius: 100 meters
Velocity: 20.9 km/s' ], - marker: - { color: 'rgb(255,102,0)', - size: 12, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2073.26265149096 ], - y: [ 298.9190954287212 ], - name: '', - text: [ '2005 GR33
Radius: 100 meters
Velocity: 15.61 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 12, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2046.8875925672492 ], - y: [ 229.04387322845056 ], - name: '', - text: [ '1994 WR12
Radius: 100 meters
Velocity: 9.6 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 12, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2141.3109100101883 ], - y: [ 115.90984148597967 ], - name: '', - text: [ '2005 GE60
Radius: 95 meters
Velocity: 8.2 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2032.351236637623 ], - y: [ 263.14286927161436 ], - name: '', - text: [ '2011 HJ7
Radius: 95 meters
Velocity: 16.53 km/s' ], - marker: - { color: 'rgb(255,26,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2185.1877879658773 ], - y: [ 225.4084341054481 ], - name: '', - text: [ '2009 FD
Radius: 95 meters
Velocity: 16.17 km/s' ], - marker: - { color: 'rgb(255,20,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2340221705215 ], - y: [ 99.96309461989343 ], - name: '', - text: [ '2009 FD
Radius: 95 meters
Velocity: 16.02 km/s' ], - marker: - { color: 'rgb(255,18,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2165.7572533187354 ], - y: [ 263.3860668167115 ], - name: '', - text: [ '2007 US12
Radius: 95 meters
Velocity: 16.39 km/s' ], - marker: - { color: 'rgb(255,23,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2188.7288748992596 ], - y: [ 202.65675720233548 ], - name: '', - text: [ '2005 UO
Radius: 95 meters
Velocity: 18.79 km/s' ], - marker: - { color: 'rgb(255,65,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2096.753980201633 ], - y: [ 83.31156396327462 ], - name: '', - text: [ '2005 UO
Radius: 95 meters
Velocity: 19.16 km/s' ], - marker: - { color: 'rgb(255,73,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2190.1884912488786 ], - y: [ 155.30357323255816 ], - name: '', - text: [ '2009 FD
Radius: 95 meters
Velocity: 15.71 km/s' ], - marker: - { color: 'rgb(255,12,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2032.809170810334 ], - y: [ 302.547405303882 ], - name: '', - text: [ '2004 TD10
Radius: 95 meters
Velocity: 9.92 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 11.549925860214355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2103.016013944011 ], - y: [ 216.66784090861822 ], - name: '', - text: [ '2012 BV13
Radius: 91 meters
Velocity: 7.05 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 11.1201083935591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2061.8523637911894 ], - y: [ 141.21487372750045 ], - name: '', - text: [ '2000 WC1
Radius: 87 meters
Velocity: 11.45 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 10.709635899560801, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2065.7773938232745 ], - y: [ 170.5429898327779 ], - name: '', - text: [ '2013 UG1
Radius: 87 meters
Velocity: 14.36 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 10.709635899560801, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.2253546827244 ], - y: [ 268.9939884274731 ], - name: '', - text: [ '2001 EC16
Radius: 87 meters
Velocity: 10.09 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 10.709635899560801, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.791016605082 ], - y: [ 276.6647230238113 ], - name: '', - text: [ '2013 UG1
Radius: 87 meters
Velocity: 14.48 km/s' ], - marker: - { color: 'rgb(246,0,0)', - size: 10.709635899560801, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.2612734364309 ], - y: [ 198.99282433046497 ], - name: '', - text: [ '2002 FD6
Radius: 87 meters
Velocity: 11.57 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 10.709635899560801, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2161.2217603363592 ], - y: [ 213.56458425513836 ], - name: '', - text: [ '2002 FD6
Radius: 87 meters
Velocity: 11.32 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 10.709635899560801, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2066.271377902468 ], - y: [ 145.27422604038148 ], - name: '', - text: [ '2004 RQ252
Radius: 83 meters
Velocity: 12.15 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 10.317637711026713, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.219810151605 ], - y: [ 218.03670686704908 ], - name: '', - text: [ '2003 FY6
Radius: 83 meters
Velocity: 14.42 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 10.317637711026713, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2043.2771942429633 ], - y: [ 87.99342550340602 ], - name: '', - text: [ '2004 RQ252
Radius: 83 meters
Velocity: 12.13 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 10.317637711026713, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2121.8436392804465 ], - y: [ 297.91850375736004 ], - name: '', - text: [ '2000 WP19
Radius: 76 meters
Velocity: 8.48 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 9.58577575029183, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2086.3748764502834 ], - y: [ 152.66915162908424 ], - name: '', - text: [ '2013 YD48
Radius: 76 meters
Velocity: 15.09 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 9.58577575029183, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2085.301050742819 ], - y: [ 227.49155855559914 ], - name: '', - text: [ '2001 BF10
Radius: 76 meters
Velocity: 9.01 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 9.58577575029183, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.5642743640042 ], - y: [ 275.2725513838252 ], - name: '', - text: [ '54509 YORP
Radius: 72 meters
Velocity: 7.02 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2103.97211197786 ], - y: [ 125.5061273384125 ], - name: '', - text: [ '54509 YORP
Radius: 72 meters
Velocity: 7.23 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2023.1157660842723 ], - y: [ 218.34353958841444 ], - name: '', - text: [ '2009 QH6
Radius: 72 meters
Velocity: 9.18 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2192.7184377993703 ], - y: [ 205.267655084282 ], - name: '', - text: [ '2004 SC56
Radius: 72 meters
Velocity: 10.21 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.5639398293874 ], - y: [ 273.0824762155471 ], - name: '', - text: [ '54509 YORP
Radius: 72 meters
Velocity: 7.03 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.5650745860135 ], - y: [ 288.18456399774107 ], - name: '', - text: [ '54509 YORP
Radius: 72 meters
Velocity: 7.13 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2129.7609312987547 ], - y: [ 18.650393733886084 ], - name: '', - text: [ '2007 UW1
Radius: 72 meters
Velocity: 5.47 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2172.7409010385777 ], - y: [ 272.57683421928306 ], - name: '', - text: [ '2007 UW1
Radius: 72 meters
Velocity: 4.75 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.5639189209737 ], - y: [ 305.2411330367689 ], - name: '', - text: [ '54509 YORP
Radius: 72 meters
Velocity: 7.21 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 9.244359600749902, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2146.181452716573 ], - y: [ 52.068717369830324 ], - name: '', - text: [ '2009 DO111
Radius: 69 meters
Velocity: 9.14 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 8.918309709189362, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2135661390143 ], - y: [ 78.20558775527945 ], - name: '', - text: [ '2009 DO111
Radius: 69 meters
Velocity: 9.1 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 8.918309709189362, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2089.890470325259 ], - y: [ 235.75800779973605 ], - name: '', - text: [ '2006 WB
Radius: 69 meters
Velocity: 4.41 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 8.918309709189362, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.3766460623756 ], - y: [ 185.47312135515892 ], - name: '', - text: [ '2004 JP1
Radius: 69 meters
Velocity: 12.59 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 8.918309709189362, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2024.8987272478446 ], - y: [ 142.53954391366412 ], - name: '', - text: [ '2006 WB
Radius: 69 meters
Velocity: 4.2 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 8.918309709189362, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2068.359430834968 ], - y: [ 187.6529980256484 ], - name: '', - text: [ '2004 JP1
Radius: 69 meters
Velocity: 12.61 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 8.918309709189362, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2098.977888402293 ], - y: [ 143.79487948233935 ], - name: '', - text: [ '2004 XM29
Radius: 66 meters
Velocity: 14.79 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 8.606934480075964, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2123.7148909721273 ], - y: [ 229.30406122207984 ], - name: '', - text: [ '2007 UY1
Radius: 66 meters
Velocity: 5.59 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 8.606934480075964, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2165.786500387756 ], - y: [ 163.38605025128254 ], - name: '', - text: [ '2005 VN
Radius: 66 meters
Velocity: 11.84 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 8.606934480075964, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.4790896856896 ], - y: [ 306.12973765500976 ], - name: '', - text: [ '2002 LZ45
Radius: 63 meters
Velocity: 15.27 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 8.30957344480193, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2138.357832291714 ], - y: [ 265.5725928167288 ], - name: '', - text: [ '2013 HO11
Radius: 63 meters
Velocity: 6.9 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 8.30957344480193, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2077.3746635646185 ], - y: [ 213.49737848701974 ], - name: '', - text: [ '2013 HO11
Radius: 63 meters
Velocity: 6.82 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 8.30957344480193, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.5751372352236 ], - y: [ 216.35308024208015 ], - name: '', - text: [ '2011 PE2
Radius: 60 meters
Velocity: 9.5 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 8.025595860743572, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.183266046257 ], - y: [ 154.45959021273808 ], - name: '', - text: [ '2013 ET
Radius: 60 meters
Velocity: 11.88 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 8.025595860743572, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9190882411083 ], - y: [ 58.67410281020476 ], - name: '', - text: [ '2011 XC2
Radius: 60 meters
Velocity: 20.93 km/s' ], - marker: - { color: 'rgb(255,102,0)', - size: 8.025595860743572, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2068.224295956693 ], - y: [ 150.8004880915584 ], - name: '', - text: [ '2005 EU2
Radius: 60 meters
Velocity: 6.92 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 8.025595860743572, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0030982467345 ], - y: [ 218.13747048052323 ], - name: '', - text: [ '2013 YL2
Radius: 60 meters
Velocity: 22.01 km/s' ], - marker: - { color: 'rgb(255,120,0)', - size: 8.025595860743572, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2089.843044341043 ], - y: [ 140.91652721939658 ], - name: '', - text: [ '2011 UT91
Radius: 60 meters
Velocity: 12.76 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 8.025595860743572, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2102.193687940027 ], - y: [ 143.4621244543303 ], - name: '', - text: [ '2002 GR
Radius: 58 meters
Velocity: 5.68 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 7.7543993733715695, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6596965618965 ], - y: [ 261.1709880850357 ], - name: '', - text: [ '2009 QK9
Radius: 58 meters
Velocity: 14.87 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 7.7543993733715695, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2153.243362529082 ], - y: [ 248.47090616211835 ], - name: '', - text: [ '2004 HM
Radius: 58 meters
Velocity: 12.2 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 7.7543993733715695, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2041.256641272448 ], - y: [ 23.985368905847242 ], - name: '', - text: [ '2012 UE34
Radius: 55 meters
Velocity: 6.13 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 7.495408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2026.2173486611011 ], - y: [ 282.6874402409777 ], - name: '', - text: [ '2010 RA91
Radius: 55 meters
Velocity: 10.55 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 7.495408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.234733056582 ], - y: [ 150.23279038126182 ], - name: '', - text: [ '2013 GD55
Radius: 55 meters
Velocity: 8.5 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 7.495408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.4929671699892 ], - y: [ 225.25301116553564 ], - name: '', - text: [ '2004 MC
Radius: 55 meters
Velocity: 8.69 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 7.495408738576243, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1035688761158 ], - y: [ 146.8839379612865 ], - name: '', - text: [ '2007 CT26
Radius: 52 meters
Velocity: 10.88 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8272394811672 ], - y: [ 224.98480927519338 ], - name: '', - text: [ '2008 VU3
Radius: 52 meters
Velocity: 10.62 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2071.5834910968174 ], - y: [ 107.78685606830483 ], - name: '', - text: [ '2013 PR43
Radius: 52 meters
Velocity: 6.64 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6056654197648 ], - y: [ 158.99927267943727 ], - name: '', - text: [ '2013 PR43
Radius: 52 meters
Velocity: 6.79 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.999064823685 ], - y: [ 79.33068362317171 ], - name: '', - text: [ '2010 VB1
Radius: 52 meters
Velocity: 7.79 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2028.9911937563675 ], - y: [ 136.38334956748622 ], - name: '', - text: [ '2012 XE133
Radius: 52 meters
Velocity: 9.8 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2103.278021075681 ], - y: [ 217.004248614495 ], - name: '', - text: [ '2009 UY19
Radius: 52 meters
Velocity: 4.75 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.0409158645439 ], - y: [ 243.24487192337 ], - name: '', - text: [ '2008 CE6
Radius: 52 meters
Velocity: 6.19 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 7.248074602497729, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.861400027371 ], - y: [ 297.5275395109452 ], - name: '', - text: [ '2007 WP3
Radius: 50 meters
Velocity: 13.36 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 7.011872336272722, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.4499395556772 ], - y: [ 21.090867437968416 ], - name: '', - text: [ '2002 MN
Radius: 48 meters
Velocity: 10.57 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2142.1017707525507 ], - y: [ 259.8287461669028 ], - name: '', - text: [ '2007 DB61
Radius: 48 meters
Velocity: 9.22 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2055.4523915423565 ], - y: [ 295.2587818921493 ], - name: '', - text: [ '2003 ME1
Radius: 48 meters
Velocity: 14.05 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2060.948114821404 ], - y: [ 246.7216137533234 ], - name: '', - text: [ '2013 YD
Radius: 48 meters
Velocity: 14.19 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2115.9326958167967 ], - y: [ 155.36982729790125 ], - name: '', - text: [ '2013 YD
Radius: 48 meters
Velocity: 13.81 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8080265498836 ], - y: [ 217.61931948543733 ], - name: '', - text: [ '2008 TT26
Radius: 48 meters
Velocity: 5.87 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.4659173851558 ], - y: [ 220.14346832430397 ], - name: '', - text: [ '2003 ME1
Radius: 48 meters
Velocity: 13.98 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.9052126575734 ], - y: [ 307.5562487996758 ], - name: '', - text: [ '2007 VE191
Radius: 48 meters
Velocity: 16.41 km/s' ], - marker: - { color: 'rgb(255,23,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.6505063637608 ], - y: [ 269.6696454392124 ], - name: '', - text: [ '2004 RC11
Radius: 48 meters
Velocity: 7.91 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.879483904323 ], - y: [ 275.41216865449496 ], - name: '', - text: [ '2001 WJ15
Radius: 48 meters
Velocity: 17.74 km/s' ], - marker: - { color: 'rgb(255,47,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9596239526786 ], - y: [ 144.29826417731792 ], - name: '', - text: [ '2013 YD
Radius: 48 meters
Velocity: 13.99 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 6.7863009232263805, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2092.5734436537264 ], - y: [ 281.7205162808096 ], - name: '', - text: [ '2008 PF2
Radius: 46 meters
Velocity: 8.84 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.748734090598 ], - y: [ 132.6069659023714 ], - name: '', - text: [ '2002 TX55
Radius: 46 meters
Velocity: 10.21 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9679797150372 ], - y: [ 257.4907496241174 ], - name: '', - text: [ '2013 YQ2
Radius: 46 meters
Velocity: 11.22 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2094.849309262047 ], - y: [ 158.61918668749948 ], - name: '', - text: [ '2010 VK139
Radius: 46 meters
Velocity: 13.87 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8716394477137 ], - y: [ 169.55983711462403 ], - name: '', - text: [ '2010 VK139
Radius: 46 meters
Velocity: 13.86 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.0859487857915 ], - y: [ 235.0477275346181 ], - name: '', - text: [ '2004 CA2
Radius: 46 meters
Velocity: 14.21 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2089.0774029469458 ], - y: [ 271.07361973656106 ], - name: '', - text: [ '2012 PK24
Radius: 46 meters
Velocity: 11.33 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2018.934058665207 ], - y: [ 251.29934047812878 ], - name: '', - text: [ '2013 VX4
Radius: 46 meters
Velocity: 6.61 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.9469268433618 ], - y: [ 248.60205707157508 ], - name: '', - text: [ '2008 XC1
Radius: 46 meters
Velocity: 12.51 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2072.9630890470326 ], - y: [ 257.96467476086326 ], - name: '', - text: [ '2013 YA14
Radius: 46 meters
Velocity: 10.58 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.138527743564 ], - y: [ 295.8072083429764 ], - name: '', - text: [ '2001 CP36
Radius: 46 meters
Velocity: 8.92 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2000.9751950184755 ], - y: [ 115.05851557450896 ], - name: '', - text: [ '2000 YA
Radius: 46 meters
Velocity: 14.19 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9809334276113 ], - y: [ 176.84551127582648 ], - name: '', - text: [ '2000 YA
Radius: 46 meters
Velocity: 13.62 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 6.570881896148752, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8807859282576 ], - y: [ 248.1457050892538 ], - name: '', - text: [ '2013 WM
Radius: 44 meters
Velocity: 35.7 km/s' ], - marker: - { color: 'rgb(255,255,156)', - size: 6.365158322401657, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2043.8007865365023 ], - y: [ 296.6216093936469 ], - name: '', - text: [ '2000 UR16
Radius: 42 meters
Velocity: 14.33 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8050575551601 ], - y: [ 72.06301383269142 ], - name: '', - text: [ '2010 TG19
Radius: 42 meters
Velocity: 10.68 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1876340039232 ], - y: [ 86.66858418494336 ], - name: '', - text: [ '2008 ED8
Radius: 42 meters
Velocity: 8.54 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.752385459909 ], - y: [ 72.86854273970236 ], - name: '', - text: [ '2006 SO198
Radius: 42 meters
Velocity: 30.82 km/s' ], - marker: - { color: 'rgb(255,255,30)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1363247570823 ], - y: [ 266.5421129274421 ], - name: '', - text: [ '2014 BR57
Radius: 42 meters
Velocity: 11.01 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8245670057631 ], - y: [ 283.2943045885601 ], - name: '', - text: [ '2013 VJ13
Radius: 42 meters
Velocity: 16.33 km/s' ], - marker: - { color: 'rgb(255,23,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2128.1556289250793 ], - y: [ 69.49413340416629 ], - name: '', - text: [ '2008 ED8
Radius: 42 meters
Velocity: 8.72 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2068.8473476727036 ], - y: [ 268.4922934353825 ], - name: '', - text: [ '2005 WA
Radius: 42 meters
Velocity: 7.79 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8658402141023 ], - y: [ 189.0977678161134 ], - name: '', - text: [ '2005 WA
Radius: 42 meters
Velocity: 8.01 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 6.168693834703355, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2087.101367790399 ], - y: [ 271.63111207335174 ], - name: '', - text: [ '367943 Duende
Radius: 40 meters
Velocity: 6.22 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2188.0876005504615 ], - y: [ 142.24067334412723 ], - name: '', - text: [ '2014 CE13
Radius: 40 meters
Velocity: 17.15 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.1832869546706 ], - y: [ 292.4875841139334 ], - name: '', - text: [ '2002 FW1
Radius: 40 meters
Velocity: 9.18 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9153665434972 ], - y: [ 176.67329683943996 ], - name: '', - text: [ '2009 WV25
Radius: 40 meters
Velocity: 10.9 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1238804494928 ], - y: [ 9.70457925089073 ], - name: '', - text: [ '367943 Duende
Radius: 40 meters
Velocity: 7.82 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2053.281440551678 ], - y: [ 155.14600872746772 ], - name: '', - text: [ '2009 WV25
Radius: 40 meters
Velocity: 11.08 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.9609316789076 ], - y: [ 294.4381547363899 ], - name: '', - text: [ '2006 XY
Radius: 40 meters
Velocity: 4.9 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.6324719066952 ], - y: [ 198.11367862582236 ], - name: '', - text: [ '367943 Duende
Radius: 40 meters
Velocity: 6.09 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2793592141477 ], - y: [ 284.94264828461274 ], - name: '', - text: [ '2007 HD15
Radius: 40 meters
Velocity: 9.84 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1490028587505 ], - y: [ 299.5261355641468 ], - name: '', - text: [ '2012 DX13
Radius: 40 meters
Velocity: 24.44 km/s' ], - marker: - { color: 'rgb(255,165,0)', - size: 5.981071705534971, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2000.7458981494153 ], - y: [ 262.2275054315008 ], - name: '', - text: [ '2000 SM10
Radius: 38 meters
Velocity: 13.61 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8672296732204 ], - y: [ 294.2545461740754 ], - name: '', - text: [ '2010 WB
Radius: 38 meters
Velocity: 6.39 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2152.4366646138405 ], - y: [ 96.64182850275887 ], - name: '', - text: [ '2013 ND15
Radius: 38 meters
Velocity: 14.9 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2119.3461387862476 ], - y: [ 83.00875019335359 ], - name: '', - text: [ '2004 KG1
Radius: 38 meters
Velocity: 10.18 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.6835169472195 ], - y: [ 144.80586700685456 ], - name: '', - text: [ '2008 ST7
Radius: 38 meters
Velocity: 9.9 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2022.363513677904 ], - y: [ 202.36535363214225 ], - name: '', - text: [ '2012 UX68
Radius: 38 meters
Velocity: 8.12 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.320845308152 ], - y: [ 89.92679115824652 ], - name: '', - text: [ '2012 HM
Radius: 38 meters
Velocity: 6.45 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.0501326733877 ], - y: [ 253.89936528625066 ], - name: '', - text: [ '2007 BU7
Radius: 38 meters
Velocity: 14.44 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 5.801893963205609, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.027874716786 ], - y: [ 242.37461346242887 ], - name: '', - text: [ '2008 BC
Radius: 36 meters
Velocity: 12.11 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9026770372398 ], - y: [ 144.81313629113222 ], - name: '', - text: [ '2012 XP2
Radius: 36 meters
Velocity: 11.09 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2173.617391238234 ], - y: [ 209.5058136504538 ], - name: '', - text: [ '1998 SD9
Radius: 36 meters
Velocity: 10.36 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1908272889011 ], - y: [ 250.16509686791844 ], - name: '', - text: [ '2010 FS
Radius: 36 meters
Velocity: 7.81 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2018.6541957483691 ], - y: [ 259.1870803667083 ], - name: '', - text: [ '1998 SD9
Radius: 36 meters
Velocity: 10.7 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2163.619810911911 ], - y: [ 213.39137710139806 ], - name: '', - text: [ '1998 SD9
Radius: 36 meters
Velocity: 10.38 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3176900384715 ], - y: [ 124.67123826107566 ], - name: '', - text: [ '2012 HP13
Radius: 36 meters
Velocity: 12.94 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7585078235481 ], - y: [ 263.3369697781209 ], - name: '', - text: [ '2011 UQ63
Radius: 36 meters
Velocity: 13.34 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2200.606355397412 ], - y: [ 108.27758325968901 ], - name: '', - text: [ '1998 SD9
Radius: 36 meters
Velocity: 10.69 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.7634060946125 ], - y: [ 163.44076551258567 ], - name: '', - text: [ '2004 TE10
Radius: 36 meters
Velocity: 14.59 km/s' ], - marker: - { color: 'rgb(246,0,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.771476742241 ], - y: [ 187.07982107139097 ], - name: '', - text: [ '2007 TH72
Radius: 36 meters
Velocity: 17.57 km/s' ], - marker: - { color: 'rgb(255,44,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8580280704955 ], - y: [ 218.39791169195362 ], - name: '', - text: [ '2007 WT3
Radius: 36 meters
Velocity: 20.28 km/s' ], - marker: - { color: 'rgb(255,91,0)', - size: 5.630780547701014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8295888265438 ], - y: [ 167.51988644645175 ], - name: '', - text: [ '2012 VB20
Radius: 35 meters
Velocity: 13.1 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0685929017836 ], - y: [ 133.9983725259536 ], - name: '', - text: [ '2011 AL37
Radius: 35 meters
Velocity: 14.63 km/s' ], - marker: - { color: 'rgb(249,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.246880844852 ], - y: [ 36.36898476759497 ], - name: '', - text: [ '2012 EG5
Radius: 35 meters
Velocity: 8.54 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2066.103694326597 ], - y: [ 209.68612163100724 ], - name: '', - text: [ '2013 BV15
Radius: 35 meters
Velocity: 8.21 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2098.6904319298087 ], - y: [ 229.18249722144174 ], - name: '', - text: [ '2010 SE
Radius: 35 meters
Velocity: 13.18 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2176451804205 ], - y: [ 218.78165988853604 ], - name: '', - text: [ '2012 EO8
Radius: 35 meters
Velocity: 12.5 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.741264084668 ], - y: [ 212.553362813432 ], - name: '', - text: [ '1999 SF10
Radius: 35 meters
Velocity: 5.09 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2133.7994027796785 ], - y: [ 295.0380622072226 ], - name: '', - text: [ '2002 VX91
Radius: 35 meters
Velocity: 6.31 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2845178899988 ], - y: [ 85.20705404511898 ], - name: '', - text: [ '2011 GP59
Radius: 35 meters
Velocity: 8.05 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2030.1773109499263 ], - y: [ 241.8414394583294 ], - name: '', - text: [ '2005 CD69
Radius: 35 meters
Velocity: 5.93 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1470469717015 ], - y: [ 294.50648393047317 ], - name: '', - text: [ '2009 CV
Radius: 35 meters
Velocity: 3.89 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.8358290376048 ], - y: [ 263.5671802229726 ], - name: '', - text: [ '2002 VX91
Radius: 35 meters
Velocity: 6.96 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.765755439989 ], - y: [ 253.53116685236967 ], - name: '', - text: [ '1999 SF10
Radius: 35 meters
Velocity: 4.51 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.670844547846 ], - y: [ 279.15875096699796 ], - name: '', - text: [ '2010 QG2
Radius: 35 meters
Velocity: 13.23 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.117007283731 ], - y: [ 224.9654261090949 ], - name: '', - text: [ '2013 BV15
Radius: 35 meters
Velocity: 8.21 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.707460882259 ], - y: [ 268.3050920964595 ], - name: '', - text: [ '2012 SR56
Radius: 35 meters
Velocity: 9.91 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 5.467368504525315, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2039.407060201025 ], - y: [ 161.9798759556663 ], - name: '', - text: [ '2008 LH2
Radius: 33 meters
Velocity: 8.25 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.7699447257576 ], - y: [ 151.44056143525088 ], - name: '', - text: [ '2001 TB
Radius: 33 meters
Velocity: 12.48 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.4143116189955 ], - y: [ 266.9180155677677 ], - name: '', - text: [ '2008 KO
Radius: 33 meters
Velocity: 23.64 km/s' ], - marker: - { color: 'rgb(255,149,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.621679363776 ], - y: [ 217.18076935912453 ], - name: '', - text: [ '2001 QE71
Radius: 33 meters
Velocity: 5.33 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2077.601584477594 ], - y: [ 188.2145115267923 ], - name: '', - text: [ '2001 QE71
Radius: 33 meters
Velocity: 5.33 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2054.713997612639 ], - y: [ 127.8298211007699 ], - name: '', - text: [ '2007 TD
Radius: 33 meters
Velocity: 11.75 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.3745780301992 ], - y: [ 176.34081967405137 ], - name: '', - text: [ '2006 KB1
Radius: 33 meters
Velocity: 16.51 km/s' ], - marker: - { color: 'rgb(255,26,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.1815819685842 ], - y: [ 73.68912439864242 ], - name: '', - text: [ '2002 EM7
Radius: 33 meters
Velocity: 10.28 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8794306829068 ], - y: [ 114.01388936596 ], - name: '', - text: [ '2004 XK3
Radius: 33 meters
Velocity: 6.75 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2170.8420293326035 ], - y: [ 154.54902029556453 ], - name: '', - text: [ '2004 XK3
Radius: 33 meters
Velocity: 6.79 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.2935636300047 ], - y: [ 115.67808617200063 ], - name: '', - text: [ '2006 HF6
Radius: 33 meters
Velocity: 16.29 km/s' ], - marker: - { color: 'rgb(255,23,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.6058478931923 ], - y: [ 242.32764122986129 ], - name: '', - text: [ '2007 PF2
Radius: 33 meters
Velocity: 18.47 km/s' ], - marker: - { color: 'rgb(255,60,0)', - size: 5.3113112148259125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.9182043854446 ], - y: [ 239.97390833516238 ], - name: '', - text: [ '2005 XN27
Radius: 32 meters
Velocity: 13.01 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.307819366513 ], - y: [ 181.19249095893082 ], - name: '', - text: [ '2008 GD110
Radius: 32 meters
Velocity: 8.37 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8573076806106 ], - y: [ 237.2013133604818 ], - name: '', - text: [ '2005 VG7
Radius: 32 meters
Velocity: 11.01 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.1779382023326 ], - y: [ 255.53606456857392 ], - name: '', - text: [ '2003 EM1
Radius: 32 meters
Velocity: 7.94 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.5285703967277 ], - y: [ 277.653994482137 ], - name: '', - text: [ '2004 OW10
Radius: 32 meters
Velocity: 6.11 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.9937065675228 ], - y: [ 187.122858530648 ], - name: '', - text: [ '2003 YH111
Radius: 32 meters
Velocity: 13.82 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1022060277055 ], - y: [ 295.25670663459266 ], - name: '', - text: [ '2010 CB19
Radius: 32 meters
Velocity: 10.05 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.611572996974 ], - y: [ 97.77995769212396 ], - name: '', - text: [ '2004 PZ19
Radius: 32 meters
Velocity: 11.38 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2052.683549260222 ], - y: [ 225.92809487393774 ], - name: '', - text: [ '2012 RM15
Radius: 32 meters
Velocity: 9.04 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 5.162277660168379, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2029.855319480559 ], - y: [ 48.862322005318696 ], - name: '', - text: [ '2001 AV43
Radius: 30 meters
Velocity: 4.0 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.587233702842 ], - y: [ 65.95648361211147 ], - name: '', - text: [ '2013 PJ10
Radius: 30 meters
Velocity: 6.94 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9809296260814 ], - y: [ 123.32329266252562 ], - name: '', - text: [ '2010 YO
Radius: 30 meters
Velocity: 14.86 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2052845064854 ], - y: [ 170.38295247984937 ], - name: '', - text: [ '2009 FW4
Radius: 30 meters
Velocity: 13.41 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2000.9945162933564 ], - y: [ 213.49657907085742 ], - name: '', - text: [ '2001 AV43
Radius: 30 meters
Velocity: 4.02 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1364026884419 ], - y: [ 275.1676359804703 ], - name: '', - text: [ '2014 DE23
Radius: 30 meters
Velocity: 8.77 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.9667727293463 ], - y: [ 305.93963501815426 ], - name: '', - text: [ '2005 XO66
Radius: 30 meters
Velocity: 8.4 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.4777610510469 ], - y: [ 141.61852034479938 ], - name: '', - text: [ '2009 MU
Radius: 30 meters
Velocity: 13.02 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.667626552925 ], - y: [ 136.85453796079457 ], - name: '', - text: [ '2013 RE32
Radius: 30 meters
Velocity: 9.81 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6938666119247 ], - y: [ 119.00047767741357 ], - name: '', - text: [ '2009 RY3
Radius: 30 meters
Velocity: 20.23 km/s' ], - marker: - { color: 'rgb(255,91,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8795675379772 ], - y: [ 181.75499577903946 ], - name: '', - text: [ '2001 AV43
Radius: 30 meters
Velocity: 3.6 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2017.1631920684883 ], - y: [ 165.30154517268898 ], - name: '', - text: [ '2012 DR32
Radius: 30 meters
Velocity: 16.9 km/s' ], - marker: - { color: 'rgb(255,33,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2078.897212338245 ], - y: [ 192.9002524229354 ], - name: '', - text: [ '2001 AV43
Radius: 30 meters
Velocity: 3.58 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.129039125344 ], - y: [ 278.50875810854365 ], - name: '', - text: [ '2013 CE82
Radius: 30 meters
Velocity: 13.17 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0100968629777 ], - y: [ 218.5634209089726 ], - name: '', - text: [ '2008 YG30
Radius: 30 meters
Velocity: 11.66 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2056.8400031172546 ], - y: [ 97.9756116440043 ], - name: '', - text: [ '2004 VZ
Radius: 30 meters
Velocity: 10.7 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 5.0199517204020125, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2055.347839970804 ], - y: [ 77.2668057068223 ], - name: '', - text: [ '2011 AX22
Radius: 29 meters
Velocity: 10.48 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2803019935222 ], - y: [ 239.33653405550444 ], - name: '', - text: [ '2010 GM23
Radius: 29 meters
Velocity: 13.14 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.756770524459 ], - y: [ 147.7942591462025 ], - name: '', - text: [ '2011 SE97
Radius: 29 meters
Velocity: 14.83 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1128997308517 ], - y: [ 284.0541127238219 ], - name: '', - text: [ '2009 BL58
Radius: 29 meters
Velocity: 10.65 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8225236835303 ], - y: [ 208.7604377613607 ], - name: '', - text: [ '2008 UW99
Radius: 29 meters
Velocity: 10.43 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0869599927012 ], - y: [ 77.46853664726557 ], - name: '', - text: [ '2013 CL22
Radius: 29 meters
Velocity: 9.65 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2780933047459 ], - y: [ 205.32617774345826 ], - name: '', - text: [ '2010 GM23
Radius: 29 meters
Velocity: 13.68 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.3380016118485 ], - y: [ 229.51837453232943 ], - name: '', - text: [ '2006 HU50
Radius: 29 meters
Velocity: 6.4 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.789043611149 ], - y: [ 269.8043988361304 ], - name: '', - text: [ '2008 UB95
Radius: 29 meters
Velocity: 9.08 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.3707669966395 ], - y: [ 189.53620539241595 ], - name: '', - text: [ '2005 JZ93
Radius: 29 meters
Velocity: 10.41 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.810495643447 ], - y: [ 214.7141156037043 ], - name: '', - text: [ '2009 UU1
Radius: 29 meters
Velocity: 10.68 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.3628712193786 ], - y: [ 259.96113989391273 ], - name: '', - text: [ '2005 KA
Radius: 29 meters
Velocity: 3.8 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2026.4559269650108 ], - y: [ 223.56566696953934 ], - name: '', - text: [ '2003 LN6
Radius: 29 meters
Velocity: 3.91 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 4.8840315031266055, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3582257500418 ], - y: [ 192.56634362525867 ], - name: '', - text: [ '2008 HR3
Radius: 28 meters
Velocity: 15.52 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6030651734259 ], - y: [ 174.34682181520347 ], - name: '', - text: [ '2010 PJ9
Radius: 28 meters
Velocity: 13.16 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2036.308984535377 ], - y: [ 280.7479472022978 ], - name: '', - text: [ '2007 VC3
Radius: 28 meters
Velocity: 11.72 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.9273869805209 ], - y: [ 294.8656747410099 ], - name: '', - text: [ '2008 WG14
Radius: 28 meters
Velocity: 11.35 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.0818526375015 ], - y: [ 285.252853152804 ], - name: '', - text: [ '2002 CC14
Radius: 28 meters
Velocity: 12.36 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6985881118562 ], - y: [ 291.55626702603274 ], - name: '', - text: [ '2010 SP3
Radius: 28 meters
Velocity: 16.94 km/s' ], - marker: - { color: 'rgb(255,33,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2052.0657132430088 ], - y: [ 208.69468512643957 ], - name: '', - text: [ '2002 PN
Radius: 28 meters
Velocity: 5.28 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.0954336024815 ], - y: [ 287.85009656509754 ], - name: '', - text: [ '2002 CC14
Radius: 28 meters
Velocity: 11.99 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8054110974256 ], - y: [ 172.02612849715555 ], - name: '', - text: [ '2012 UF34
Radius: 28 meters
Velocity: 10.32 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2077.6145705031704 ], - y: [ 295.118905076647 ], - name: '', - text: [ '2005 TG50
Radius: 28 meters
Velocity: 3.7 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2000.1750205282606 ], - y: [ 257.12162699715924 ], - name: '', - text: [ '2000 DO8
Radius: 28 meters
Velocity: 10.08 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8141204020499 ], - y: [ 239.69393851630207 ], - name: '', - text: [ '2007 VC3
Radius: 28 meters
Velocity: 11.8 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.2243738880525 ], - y: [ 265.30116610032195 ], - name: '', - text: [ '2001 FR85
Radius: 28 meters
Velocity: 2.85 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.1834200082112 ], - y: [ 183.94834352863012 ], - name: '', - text: [ '2005 EM169
Radius: 28 meters
Velocity: 18.61 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 4.754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.121015996837 ], - y: [ 60.549913115418335 ], - name: '', - text: [ '2008 CK70
Radius: 26 meters
Velocity: 15.44 km/s' ], - marker: - { color: 'rgb(255,7,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.2620109331995 ], - y: [ 110.36962181678332 ], - name: '', - text: [ '2005 GA120
Radius: 26 meters
Velocity: 12.14 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.797283426851 ], - y: [ 272.71158202379723 ], - name: '', - text: [ '2009 TH8
Radius: 26 meters
Velocity: 13.11 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2025.1043310828277 ], - y: [ 218.12250633946283 ], - name: '', - text: [ '2012 PB20
Radius: 26 meters
Velocity: 4.27 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6614699755182 ], - y: [ 266.224911859357 ], - name: '', - text: [ '2009 QH34
Radius: 26 meters
Velocity: 7.86 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.241172847954 ], - y: [ 257.0612049793043 ], - name: '', - text: [ '2013 FB8
Radius: 26 meters
Velocity: 7.86 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7456491492176 ], - y: [ 171.92936147196005 ], - name: '', - text: [ '2009 SH2
Radius: 26 meters
Velocity: 4.4 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8212121557715 ], - y: [ 295.07231191887433 ], - name: '', - text: [ '2007 VJ3
Radius: 26 meters
Velocity: 16.11 km/s' ], - marker: - { color: 'rgb(255,18,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2090.718384577954 ], - y: [ 122.53971367541072 ], - name: '', - text: [ '2009 SH2
Radius: 26 meters
Velocity: 4.23 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2027431838571 ], - y: [ 300.8325573068674 ], - name: '', - text: [ '2009 FJ
Radius: 26 meters
Velocity: 9.4 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 4.6302679918953835, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0058809665009 ], - y: [ 226.43274525255242 ], - name: '', - text: [ '2011 YL28
Radius: 25 meters
Velocity: 7.65 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2862361814393 ], - y: [ 129.5653063201809 ], - name: '', - text: [ '2007 GU1
Radius: 25 meters
Velocity: 16.93 km/s' ], - marker: - { color: 'rgb(255,33,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.0543504706293 ], - y: [ 140.55640216010733 ], - name: '', - text: [ '2010 AF40
Radius: 25 meters
Velocity: 14.23 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8722020741145 ], - y: [ 292.75100090869256 ], - name: '', - text: [ '2009 WU25
Radius: 25 meters
Velocity: 9.67 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.5582622447273 ], - y: [ 59.03361678702242 ], - name: '', - text: [ '2011 PU1
Radius: 25 meters
Velocity: 5.6 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2095.9183374389854 ], - y: [ 55.42187639803978 ], - name: '', - text: [ '2013 XY8
Radius: 25 meters
Velocity: 9.33 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2035548104557 ], - y: [ 288.52839417001644 ], - name: '', - text: [ '2007 EV
Radius: 25 meters
Velocity: 10.34 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.359115308 ], - y: [ 220.90095175463426 ], - name: '', - text: [ '2010 JO33
Radius: 25 meters
Velocity: 8.1 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.3437780362817 ], - y: [ 144.2678877113307 ], - name: '', - text: [ '2013 JD34
Radius: 25 meters
Velocity: 20.3 km/s' ], - marker: - { color: 'rgb(255,91,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.911399647218 ], - y: [ 116.07618274174563 ], - name: '', - text: [ '2001 WM15
Radius: 25 meters
Velocity: 15.23 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.3714531727567 ], - y: [ 244.7190319180532 ], - name: '', - text: [ '2010 JO33
Radius: 25 meters
Velocity: 8.19 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7273942034274 ], - y: [ 147.71592105905793 ], - name: '', - text: [ '2008 SA
Radius: 25 meters
Velocity: 7.79 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0556600976233 ], - y: [ 259.87893071536257 ], - name: '', - text: [ '2014 BT8
Radius: 25 meters
Velocity: 7.25 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.941344296945 ], - y: [ 122.68906241845438 ], - name: '', - text: [ '2013 XY8
Radius: 25 meters
Velocity: 9.05 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.431338670681 ], - y: [ 227.0667808373181 ], - name: '', - text: [ '2006 LM
Radius: 25 meters
Velocity: 8.91 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1850109484055 ], - y: [ 112.194919535942 ], - name: '', - text: [ '2007 EK26
Radius: 25 meters
Velocity: 18.6 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.9513480224443 ], - y: [ 60.51957028908629 ], - name: '', - text: [ '2007 YN1
Radius: 25 meters
Velocity: 17.64 km/s' ], - marker: - { color: 'rgb(255,47,0)', - size: 4.511886431509579, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7680800754224 ], - y: [ 265.96529546365525 ], - name: '', - text: [ '2011 UK10
Radius: 24 meters
Velocity: 7.25 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.013542949683 ], - y: [ 276.49894672423125 ], - name: '', - text: [ '2011 AF3
Radius: 24 meters
Velocity: 33.26 km/s' ], - marker: - { color: 'rgb(255,255,93)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.3544622356037 ], - y: [ 162.34183006513464 ], - name: '', - text: [ '2011 KB
Radius: 24 meters
Velocity: 9.27 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.057904900932 ], - y: [ 284.05431020952597 ], - name: '', - text: [ '2006 BC8
Radius: 24 meters
Velocity: 12.87 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.800459604945 ], - y: [ 216.23861684512923 ], - name: '', - text: [ '2011 UL10
Radius: 24 meters
Velocity: 15.1 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.3431507838754 ], - y: [ 295.4390332841652 ], - name: '', - text: [ '2006 JO
Radius: 24 meters
Velocity: 17.17 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1910325715069 ], - y: [ 255.07682962725602 ], - name: '', - text: [ '2008 EJ85
Radius: 24 meters
Velocity: 7.4 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.757203898849 ], - y: [ 184.1421469402787 ], - name: '', - text: [ '2006 TR7
Radius: 24 meters
Velocity: 10.63 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9576661648648 ], - y: [ 106.96541877928018 ], - name: '', - text: [ '2010 XM56
Radius: 24 meters
Velocity: 15.34 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 4.398832919019489, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.403021075681 ], - y: [ 235.96581311346407 ], - name: '', - text: [ '2003 LH
Radius: 23 meters
Velocity: 6.81 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1979228441526 ], - y: [ 260.96878656965896 ], - name: '', - text: [ '2014 EM
Radius: 23 meters
Velocity: 11.7 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0398913522802 ], - y: [ 296.0468585955967 ], - name: '', - text: [ '2012 BV61
Radius: 23 meters
Velocity: 4.65 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.2121234584797 ], - y: [ 143.53897764059934 ], - name: '', - text: [ '2005 FA
Radius: 23 meters
Velocity: 15.03 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8831409759287 ], - y: [ 160.7132112552354 ], - name: '', - text: [ '2011 WJ15
Radius: 23 meters
Velocity: 26.33 km/s' ], - marker: - { color: 'rgb(255,196,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7073487371317 ], - y: [ 299.91044499490823 ], - name: '', - text: [ '2007 SN6
Radius: 23 meters
Velocity: 18.07 km/s' ], - marker: - { color: 'rgb(255,52,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.3503394766053 ], - y: [ 156.72315460934553 ], - name: '', - text: [ '2006 JV26
Radius: 23 meters
Velocity: 26.68 km/s' ], - marker: - { color: 'rgb(255,201,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.3140424706903 ], - y: [ 289.6772289758637 ], - name: '', - text: [ '2007 HC
Radius: 23 meters
Velocity: 5.75 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.6994510591062 ], - y: [ 123.03731467529113 ], - name: '', - text: [ '2006 SC
Radius: 23 meters
Velocity: 12.1 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7648240652038 ], - y: [ 42.65060619136274 ], - name: '', - text: [ '2012 TV
Radius: 23 meters
Velocity: 16.79 km/s' ], - marker: - { color: 'rgb(255,31,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7065561181819 ], - y: [ 155.8211950590524 ], - name: '', - text: [ '2007 RJ1
Radius: 23 meters
Velocity: 9.82 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2069.384714809239 ], - y: [ 244.16633024328058 ], - name: '', - text: [ '2003 LH
Radius: 23 meters
Velocity: 6.83 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.3435214330248 ], - y: [ 184.04122214295393 ], - name: '', - text: [ '2006 HX57
Radius: 23 meters
Velocity: 10.72 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.5572776485258 ], - y: [ 139.1184985831028 ], - name: '', - text: [ '2008 OO8
Radius: 23 meters
Velocity: 8.28 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 4.290867652767774, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2838868360627 ], - y: [ 193.58752547309714 ], - name: '', - text: [ '2008 GP3
Radius: 22 meters
Velocity: 12.39 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.8323582409562 ], - y: [ 277.18803850911735 ], - name: '', - text: [ '2004 VZ14
Radius: 22 meters
Velocity: 14.95 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6052073354317 ], - y: [ 236.75941649901955 ], - name: '', - text: [ '2009 PA3
Radius: 22 meters
Velocity: 12.81 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.1470108571689 ], - y: [ 140.55613202847556 ], - name: '', - text: [ '2001 DZ76
Radius: 22 meters
Velocity: 11.7 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7890721226222 ], - y: [ 265.63508430569453 ], - name: '', - text: [ '2010 TK
Radius: 22 meters
Velocity: 10.19 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2000.8347627085138 ], - y: [ 263.165123633059 ], - name: '', - text: [ '2000 UK11
Radius: 22 meters
Velocity: 6.01 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9456077125435 ], - y: [ 92.35194263008393 ], - name: '', - text: [ '2009 YS
Radius: 22 meters
Velocity: 4.81 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8806129586546 ], - y: [ 157.86605697333357 ], - name: '', - text: [ '2011 WF44
Radius: 22 meters
Velocity: 14.83 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0023778568495 ], - y: [ 206.19049536034203 ], - name: '', - text: [ '2008 YC29
Radius: 22 meters
Velocity: 11.89 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.086602648906 ], - y: [ 197.86677228732222 ], - name: '', - text: [ '2014 BM62
Radius: 22 meters
Velocity: 8.6 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2078.8104728342687 ], - y: [ 285.3510038213513 ], - name: '', - text: [ '2000 UK11
Radius: 22 meters
Velocity: 5.97 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3319058589177 ], - y: [ 178.28687023494456 ], - name: '', - text: [ '2012 HA34
Radius: 22 meters
Velocity: 11.87 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0532461262412 ], - y: [ 134.13365031087923 ], - name: '', - text: [ '2006 BM8
Radius: 22 meters
Velocity: 14.96 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 4.187761623949552, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8337457993096 ], - y: [ 46.081768806049766 ], - name: '', - text: [ '2010 UJ7
Radius: 21 meters
Velocity: 9.38 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6827167252102 ], - y: [ 95.01369863059405 ], - name: '', - text: [ '2013 RR43
Radius: 21 meters
Velocity: 19.06 km/s' ], - marker: - { color: 'rgb(255,70,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7692414427565 ], - y: [ 73.4497986431671 ], - name: '', - text: [ '2010 FV9
Radius: 21 meters
Velocity: 7.82 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2054.3358024268964 ], - y: [ 144.28719050740176 ], - name: '', - text: [ '2007 JB21
Radius: 21 meters
Velocity: 7.4 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.349124887855 ], - y: [ 100.34369961297713 ], - name: '', - text: [ '2007 JB21
Radius: 21 meters
Velocity: 7.44 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2056.0260537840427 ], - y: [ 190.00422168872655 ], - name: '', - text: [ '2007 BD
Radius: 21 meters
Velocity: 7.49 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.07885323054 ], - y: [ 298.90477538848256 ], - name: '', - text: [ '2008 CQ
Radius: 21 meters
Velocity: 10.78 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.651755166279 ], - y: [ 205.60677753419634 ], - name: '', - text: [ '2011 QF48
Radius: 21 meters
Velocity: 20.08 km/s' ], - marker: - { color: 'rgb(255,89,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.2077954168758 ], - y: [ 128.01334895553933 ], - name: '', - text: [ '2004 FY3
Radius: 21 meters
Velocity: 11.75 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2057.7566640816262 ], - y: [ 91.72606212984877 ], - name: '', - text: [ '2010 FV9
Radius: 21 meters
Velocity: 7.91 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7980532366223 ], - y: [ 142.95441396850046 ], - name: '', - text: [ '2009 UE
Radius: 21 meters
Velocity: 7.38 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.942165427368 ], - y: [ 41.136805059169795 ], - name: '', - text: [ '2012 XE54
Radius: 21 meters
Velocity: 13.27 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8736865714764 ], - y: [ 116.79256772451104 ], - name: '', - text: [ '2012 WQ3
Radius: 21 meters
Velocity: 23.56 km/s' ], - marker: - { color: 'rgb(255,149,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.9547085747304 ], - y: [ 213.48160817618327 ], - name: '', - text: [ '2001 YN2
Radius: 21 meters
Velocity: 18.86 km/s' ], - marker: - { color: 'rgb(255,68,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6687670118456 ], - y: [ 177.57317039340504 ], - name: '', - text: [ '2009 QC35
Radius: 21 meters
Velocity: 10.15 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6788942870612 ], - y: [ 177.64272733850154 ], - name: '', - text: [ '2009 SD
Radius: 21 meters
Velocity: 15.38 km/s' ], - marker: - { color: 'rgb(255,7,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.0456259598864 ], - y: [ 48.35401786159899 ], - name: '', - text: [ '2007 BD
Radius: 21 meters
Velocity: 7.6 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.086387862476 ], - y: [ 110.6835275514732 ], - name: '', - text: [ '2004 BK86
Radius: 21 meters
Velocity: 15.66 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.4877761811354 ], - y: [ 106.8158758379778 ], - name: '', - text: [ '2006 MB14
Radius: 21 meters
Velocity: 10.56 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.7159801103965 ], - y: [ 291.043090369724 ], - name: '', - text: [ '2005 SO1
Radius: 21 meters
Velocity: 12.12 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2059.818902726457 ], - y: [ 243.20653204133646 ], - name: '', - text: [ '2010 UJ7
Radius: 21 meters
Velocity: 9.1 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.2650483554582 ], - y: [ 164.4024403753519 ], - name: '', - text: [ '2005 GB34
Radius: 21 meters
Velocity: 11.96 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 4.089296130854041, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.7510017030854 ], - y: [ 122.6223470293131 ], - name: '', - text: [ '2002 TY59
Radius: 20 meters
Velocity: 8.42 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1665963383666 ], - y: [ 297.71220921134363 ], - name: '', - text: [ '2013 EQ41
Radius: 20 meters
Velocity: 7.68 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.9368660949167 ], - y: [ 296.56080573270896 ], - name: '', - text: [ '2007 XN16
Radius: 20 meters
Velocity: 8.89 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.097942612107 ], - y: [ 273.617125141959 ], - name: '', - text: [ '2013 BA74
Radius: 20 meters
Velocity: 7.18 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2080.5922441190337 ], - y: [ 171.71959421426823 ], - name: '', - text: [ '2011 CU46
Radius: 20 meters
Velocity: 15.91 km/s' ], - marker: - { color: 'rgb(255,15,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.3718713410276 ], - y: [ 300.8431247638076 ], - name: '', - text: [ '2004 KZ
Radius: 20 meters
Velocity: 11.89 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8911507990815 ], - y: [ 263.73800326691986 ], - name: '', - text: [ '2009 WG106
Radius: 20 meters
Velocity: 5.12 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2092.830755896173 ], - y: [ 281.4936819896959 ], - name: '', - text: [ '2012 UV136
Radius: 20 meters
Velocity: 3.94 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1020615695757 ], - y: [ 275.92250128796263 ], - name: '', - text: [ '2011 CU46
Radius: 20 meters
Velocity: 16.44 km/s' ], - marker: - { color: 'rgb(255,26,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.9433401000563 ], - y: [ 20.95044618695263 ], - name: '', - text: [ '2002 XV90
Radius: 20 meters
Velocity: 8.02 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.703895047367 ], - y: [ 62.79309072373877 ], - name: '', - text: [ '2009 RR
Radius: 20 meters
Velocity: 13.06 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7066682633092 ], - y: [ 172.82510806957475 ], - name: '', - text: [ '2009 RR
Radius: 20 meters
Velocity: 12.79 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.7526496662256 ], - y: [ 267.4945803748478 ], - name: '', - text: [ '2005 SK26
Radius: 20 meters
Velocity: 7.93 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2095.015692714748 ], - y: [ 240.58563314345034 ], - name: '', - text: [ '2009 BG
Radius: 20 meters
Velocity: 8.23 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1694855009655 ], - y: [ 238.40165170711632 ], - name: '', - text: [ '2007 EZ25
Radius: 20 meters
Velocity: 21.13 km/s' ], - marker: - { color: 'rgb(255,107,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2140242233475 ], - y: [ 207.92220853329147 ], - name: '', - text: [ '2007 FC3
Radius: 20 meters
Velocity: 15.46 km/s' ], - marker: - { color: 'rgb(255,7,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2168.996806715022 ], - y: [ 164.0268811415135 ], - name: '', - text: [ '2009 BG
Radius: 20 meters
Velocity: 8.43 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7088047230206 ], - y: [ 223.61702529754683 ], - name: '', - text: [ '2003 RU11
Radius: 20 meters
Velocity: 4.43 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2034.7026234356706 ], - y: [ 229.30274637906004 ], - name: '', - text: [ '2003 RU11
Radius: 20 meters
Velocity: 4.66 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 3.995262314968879, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.223820765476 ], - y: [ 234.45927769603864 ], - name: '', - text: [ '2013 FG
Radius: 19 meters
Velocity: 9.21 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.2356340191293 ], - y: [ 233.41363063499753 ], - name: '', - text: [ '2006 FU
Radius: 19 meters
Velocity: 12.31 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.0766445417637 ], - y: [ 292.32957180963683 ], - name: '', - text: [ '2005 BG28
Radius: 19 meters
Velocity: 7.58 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.949082310722 ], - y: [ 63.10003983590052 ], - name: '', - text: [ '2011 YQ1
Radius: 19 meters
Velocity: 11.79 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8246924562443 ], - y: [ 181.7657170329006 ], - name: '', - text: [ '2012 UU169
Radius: 19 meters
Velocity: 11.36 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2059.935316971549 ], - y: [ 76.60464846790072 ], - name: '', - text: [ '2004 YC
Radius: 19 meters
Velocity: 9.42 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2037.8338256314341 ], - y: [ 202.4093977791948 ], - name: '', - text: [ '2012 UX136
Radius: 19 meters
Velocity: 5.42 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9470998129648 ], - y: [ 179.29414754858456 ], - name: '', - text: [ '2010 WA9
Radius: 19 meters
Velocity: 8.08 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.124555221021 ], - y: [ 305.63767074821646 ], - name: '', - text: [ '2013 DB
Radius: 19 meters
Velocity: 6.04 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.83503451789 ], - y: [ 110.97095401778644 ], - name: '', - text: [ '2010 VZ11
Radius: 19 meters
Velocity: 4.99 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4395252649667 ], - y: [ 97.90105668230137 ], - name: '', - text: [ '2012 LJ
Radius: 19 meters
Velocity: 18.84 km/s' ], - marker: - { color: 'rgb(255,65,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8550438696532 ], - y: [ 305.57474294699875 ], - name: '', - text: [ '2010 VB
Radius: 19 meters
Velocity: 9.53 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.472035947265 ], - y: [ 91.69636613873205 ], - name: '', - text: [ '2004 MR1
Radius: 19 meters
Velocity: 7.58 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1872538509497 ], - y: [ 307.4394531494581 ], - name: '', - text: [ '2007 EE126
Radius: 19 meters
Velocity: 30.13 km/s' ], - marker: - { color: 'rgb(255,255,10)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8610806988731 ], - y: [ 267.05832977739374 ], - name: '', - text: [ '2012 VV76
Radius: 19 meters
Velocity: 13.77 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8422384167388 ], - y: [ 166.8435470174338 ], - name: '', - text: [ '2012 UX136
Radius: 19 meters
Velocity: 5.35 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.9500098839774 ], - y: [ 137.82115502913257 ], - name: '', - text: [ '2004 YC
Radius: 19 meters
Velocity: 9.57 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.9267920411173 ], - y: [ 198.70165453092616 ], - name: '', - text: [ '2008 WY94
Radius: 19 meters
Velocity: 4.48 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.913197770783 ], - y: [ 126.97884849424467 ], - name: '', - text: [ '2008 XU2
Radius: 19 meters
Velocity: 10.96 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.749049617566 ], - y: [ 155.16818832619697 ], - name: '', - text: [ '2009 SU104
Radius: 19 meters
Velocity: 17.23 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 3.905460717963245, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3260305947113 ], - y: [ 200.6278885832635 ], - name: '', - text: [ '2009 JS
Radius: 18 meters
Velocity: 9.41 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7165104237945 ], - y: [ 306.6608683260696 ], - name: '', - text: [ '2006 SS131
Radius: 18 meters
Velocity: 6.29 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0203933062664 ], - y: [ 207.04364222429692 ], - name: '', - text: [ '2012 AW10
Radius: 18 meters
Velocity: 10.92 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.9271018657907 ], - y: [ 40.855009255026744 ], - name: '', - text: [ '2005 XA8
Radius: 18 meters
Velocity: 12.22 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.011786642945 ], - y: [ 197.5774616442292 ], - name: '', - text: [ '2013 AH53
Radius: 18 meters
Velocity: 11.71 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.114505877165 ], - y: [ 252.72160546403796 ], - name: '', - text: [ '2008 DB
Radius: 18 meters
Velocity: 6.73 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.2121880844852 ], - y: [ 11.07666544271987 ], - name: '', - text: [ '2004 FH
Radius: 18 meters
Velocity: 8.0 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0606724145796 ], - y: [ 125.6461065480845 ], - name: '', - text: [ '2012 BY1
Radius: 18 meters
Velocity: 18.45 km/s' ], - marker: - { color: 'rgb(255,60,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2044.1978848288552 ], - y: [ 280.01093080686195 ], - name: '', - text: [ '2004 FH
Radius: 18 meters
Velocity: 6.64 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.8047268220732 ], - y: [ 146.28740463534226 ], - name: '', - text: [ '2001 UP
Radius: 18 meters
Velocity: 8.35 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0952796405275 ], - y: [ 273.78047192821793 ], - name: '', - text: [ '2012 CL17
Radius: 18 meters
Velocity: 21.8 km/s' ], - marker: - { color: 'rgb(255,117,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0554510134878 ], - y: [ 295.5123097857403 ], - name: '', - text: [ '2011 BZ11
Radius: 18 meters
Velocity: 13.01 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.17236896127 ], - y: [ 57.774328527232775 ], - name: '', - text: [ '2014 DX110
Radius: 18 meters
Velocity: 14.84 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7710148563783 ], - y: [ 224.49047616246946 ], - name: '', - text: [ '2010 TS19
Radius: 18 meters
Velocity: 18.16 km/s' ], - marker: - { color: 'rgb(255,54,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.3914777306388 ], - y: [ 197.51808727830038 ], - name: '', - text: [ '2011 KG13
Radius: 18 meters
Velocity: 13.04 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1704358833995 ], - y: [ 82.16095426349149 ], - name: '', - text: [ '2010 ES12
Radius: 18 meters
Velocity: 13.96 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.86529659535 ], - y: [ 132.23169113523198 ], - name: '', - text: [ '2004 VM24
Radius: 18 meters
Velocity: 12.75 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.4914674665085 ], - y: [ 157.53588016537404 ], - name: '', - text: [ '2010 NH
Radius: 18 meters
Velocity: 10.27 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2191.449137432903 ], - y: [ 180.56996104860255 ], - name: '', - text: [ '2010 NH
Radius: 18 meters
Velocity: 10.51 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.3825080212277 ], - y: [ 122.79563201658351 ], - name: '', - text: [ '2010 KK37
Radius: 18 meters
Velocity: 11.26 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.244940163922 ], - y: [ 231.86463447219361 ], - name: '', - text: [ '2009 FO32
Radius: 18 meters
Velocity: 15.88 km/s' ], - marker: - { color: 'rgb(255,15,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.980418320332 ], - y: [ 70.96199464010996 ], - name: '', - text: [ '2007 YS56
Radius: 18 meters
Velocity: 9.25 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3783833614646 ], - y: [ 142.24731148283874 ], - name: '', - text: [ '2010 KK37
Radius: 18 meters
Velocity: 10.94 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.8197008586099837, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0497164058818 ], - y: [ 259.0039687778702 ], - name: '', - text: [ '2006 BB9
Radius: 17 meters
Velocity: 13.64 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.7170730501955 ], - y: [ 300.2479085491676 ], - name: '', - text: [ '2004 SE26
Radius: 17 meters
Velocity: 11.15 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2027.710192281374 ], - y: [ 288.10886743097205 ], - name: '', - text: [ '2006 SB
Radius: 17 meters
Velocity: 9.64 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.5081903958153 ], - y: [ 260.5249774002289 ], - name: '', - text: [ '2013 NH4
Radius: 17 meters
Velocity: 13.55 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2102.1213714398673 ], - y: [ 227.36855100689468 ], - name: '', - text: [ '2014 DH6
Radius: 17 meters
Velocity: 16.94 km/s' ], - marker: - { color: 'rgb(255,33,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1191000258505 ], - y: [ 243.67351884651825 ], - name: '', - text: [ '2007 DD
Radius: 17 meters
Velocity: 3.28 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0888987728663 ], - y: [ 107.84542209863632 ], - name: '', - text: [ '2009 BK58
Radius: 17 meters
Velocity: 9.52 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7148567583595 ], - y: [ 234.87898397210364 ], - name: '', - text: [ '2006 SB
Radius: 17 meters
Velocity: 9.73 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.180306555358 ], - y: [ 200.72137195244383 ], - name: '', - text: [ '2011 EC12
Radius: 17 meters
Velocity: 15.26 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.151886319055 ], - y: [ 192.8640346427385 ], - name: '', - text: [ '2009 DD45
Radius: 17 meters
Velocity: 8.17 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8669464592551 ], - y: [ 182.7425039136082 ], - name: '', - text: [ '2007 VE138
Radius: 17 meters
Velocity: 15.09 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.894737542387 ], - y: [ 100.91011989744555 ], - name: '', - text: [ '2013 WZ44
Radius: 17 meters
Velocity: 12.62 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3257378769217 ], - y: [ 173.31055165400926 ], - name: '', - text: [ '2008 HJ
Radius: 17 meters
Velocity: 7.79 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1653836503808 ], - y: [ 13.089172650149333 ], - name: '', - text: [ '2009 DD45
Radius: 17 meters
Velocity: 8.82 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.223877788422 ], - y: [ 227.50348637848958 ], - name: '', - text: [ '2012 FX35
Radius: 17 meters
Velocity: 5.81 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7385935100285 ], - y: [ 161.17613838848956 ], - name: '', - text: [ '2012 SY49
Radius: 17 meters
Velocity: 15.85 km/s' ], - marker: - { color: 'rgb(255,15,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1431960220793 ], - y: [ 123.13554492376535 ], - name: '', - text: [ '2014 DH6
Radius: 17 meters
Velocity: 17.14 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.104986846707 ], - y: [ 134.45124978277852 ], - name: '', - text: [ '2014 CR13
Radius: 17 meters
Velocity: 12.21 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9885592962607 ], - y: [ 266.0941843975443 ], - name: '', - text: [ '2010 AR1
Radius: 17 meters
Velocity: 6.29 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1307175007223 ], - y: [ 111.2359260094749 ], - name: '', - text: [ '2007 DS7
Radius: 17 meters
Velocity: 12.6 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.9860426835758 ], - y: [ 32.57241244352544 ], - name: '', - text: [ '2007 YP56
Radius: 17 meters
Velocity: 21.34 km/s' ], - marker: - { color: 'rgb(255,110,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3261161291305 ], - y: [ 164.5995574288395 ], - name: '', - text: [ '2012 HE31
Radius: 17 meters
Velocity: 10.46 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2531172543831 ], - y: [ 204.10194991213115 ], - name: '', - text: [ '2008 GE128
Radius: 17 meters
Velocity: 7.2 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.7378008287493745, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.113601113088 ], - y: [ 295.88467900638824 ], - name: '', - text: [ '2013 BS45
Radius: 17 meters
Velocity: 3.08 km/s' ], - marker: - { color: 'rgb(47,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2661089822545 ], - y: [ 160.42186988171758 ], - name: '', - text: [ '2008 GB21
Radius: 17 meters
Velocity: 9.92 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2055.896146009154 ], - y: [ 291.35557805339255 ], - name: '', - text: [ '2006 WV1
Radius: 17 meters
Velocity: 7.23 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7617790398856 ], - y: [ 176.05384942023505 ], - name: '', - text: [ '2010 TW149
Radius: 17 meters
Velocity: 17.3 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.760366771589 ], - y: [ 161.94974520516266 ], - name: '', - text: [ '2002 TZ66
Radius: 17 meters
Velocity: 5.65 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1371135745023 ], - y: [ 209.85252130658907 ], - name: '', - text: [ '2012 DF4
Radius: 17 meters
Velocity: 16.17 km/s' ], - marker: - { color: 'rgb(255,20,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9570541185774 ], - y: [ 188.79507267023988 ], - name: '', - text: [ '2012 XM16
Radius: 17 meters
Velocity: 13.0 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2667286316014 ], - y: [ 174.12734651792033 ], - name: '', - text: [ '2010 GF7
Radius: 17 meters
Velocity: 9.7 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.9116220367075 ], - y: [ 261.9743679834275 ], - name: '', - text: [ '2003 XK
Radius: 17 meters
Velocity: 19.6 km/s' ], - marker: - { color: 'rgb(255,78,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0339362559494 ], - y: [ 83.73158447341268 ], - name: '', - text: [ '2013 BL18
Radius: 17 meters
Velocity: 14.33 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2074.7414655657435 ], - y: [ 244.98981550309057 ], - name: '', - text: [ '2002 TZ66
Radius: 17 meters
Velocity: 5.36 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2032.0306707419065 ], - y: [ 260.59144072466 ], - name: '', - text: [ '2009 BF2
Radius: 17 meters
Velocity: 5.62 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2278998068823 ], - y: [ 289.4481265818213 ], - name: '', - text: [ '2009 FT23
Radius: 17 meters
Velocity: 15.28 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6901620211972 ], - y: [ 138.00540001450514 ], - name: '', - text: [ '2010 RM82
Radius: 17 meters
Velocity: 13.16 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 3.6595869074375615, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.363342609066 ], - y: [ 43.83988167382956 ], - name: '', - text: [ '2009 JL2
Radius: 16 meters
Velocity: 12.92 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.256483508964 ], - y: [ 72.33653276766132 ], - name: '', - text: [ '2012 FA57
Radius: 16 meters
Velocity: 9.24 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2083.230102793364 ], - y: [ 298.29084844638646 ], - name: '', - text: [ '2004 FG29
Radius: 16 meters
Velocity: 15.02 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0315317883917 ], - y: [ 199.13178276891324 ], - name: '', - text: [ '2011 AH5
Radius: 16 meters
Velocity: 9.74 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0316439335188 ], - y: [ 238.9768482206161 ], - name: '', - text: [ '2012 BO11
Radius: 16 meters
Velocity: 7.82 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.736675638277 ], - y: [ 171.82078551831864 ], - name: '', - text: [ '2003 SR84
Radius: 16 meters
Velocity: 10.87 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7990378328238 ], - y: [ 229.42547904434895 ], - name: '', - text: [ '2008 UF1
Radius: 16 meters
Velocity: 18.38 km/s' ], - marker: - { color: 'rgb(255,57,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2392150601402 ], - y: [ 277.6144716530532 ], - name: '', - text: [ '2013 EL89
Radius: 16 meters
Velocity: 8.92 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6780579505194 ], - y: [ 290.8086670606626 ], - name: '', - text: [ '2013 RQ5
Radius: 16 meters
Velocity: 22.76 km/s' ], - marker: - { color: 'rgb(255,133,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9937369797606 ], - y: [ 158.88719696654454 ], - name: '', - text: [ '2013 AC4
Radius: 16 meters
Velocity: 20.09 km/s' ], - marker: - { color: 'rgb(255,89,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2770383802442 ], - y: [ 294.794859793496 ], - name: '', - text: [ '2011 GE
Radius: 16 meters
Velocity: 9.69 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.3288361236562 ], - y: [ 209.71521671500898 ], - name: '', - text: [ '2013 JO7
Radius: 16 meters
Velocity: 5.79 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7772056475526 ], - y: [ 41.072245059770225 ], - name: '', - text: [ '2011 UT
Radius: 16 meters
Velocity: 10.17 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.4137660994784 ], - y: [ 81.29971105170686 ], - name: '', - text: [ '2003 LW2
Radius: 16 meters
Velocity: 8.13 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.622371242188 ], - y: [ 281.1006063007635 ], - name: '', - text: [ '2011 OJ45
Radius: 16 meters
Velocity: 6.05 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.267108784575 ], - y: [ 69.55023166574738 ], - name: '', - text: [ '2010 GA6
Radius: 16 meters
Velocity: 12.08 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2081.7221594969815 ], - y: [ 228.5966343921227 ], - name: '', - text: [ '2003 SR84
Radius: 16 meters
Velocity: 10.48 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2038.3643367090917 ], - y: [ 128.51169003044433 ], - name: '', - text: [ '1993 KA
Radius: 16 meters
Velocity: 4.6 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1011720116176 ], - y: [ 272.38142540376265 ], - name: '', - text: [ '2007 BZ48
Radius: 16 meters
Velocity: 8.25 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2018.2470424098658 ], - y: [ 252.0756145638834 ], - name: '', - text: [ '2004 FG29
Radius: 16 meters
Velocity: 14.96 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2031.5418719492725 ], - y: [ 238.28731523453013 ], - name: '', - text: [ '2011 AH5
Radius: 16 meters
Velocity: 9.7 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2059.370143545763 ], - y: [ 138.38079894216347 ], - name: '', - text: [ '2012 WS3
Radius: 16 meters
Velocity: 8.99 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.054399890516 ], - y: [ 285.051554914394 ], - name: '', - text: [ '2008 BN16
Radius: 16 meters
Velocity: 18.57 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.042436476438 ], - y: [ 51.39146844043027 ], - name: '', - text: [ '2001 BA16
Radius: 16 meters
Velocity: 5.1 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1086781320803 ], - y: [ 92.58242975402217 ], - name: '', - text: [ '2008 CF22
Radius: 16 meters
Velocity: 11.76 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.5848931924611134, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0604633304442 ], - y: [ 131.4071049154727 ], - name: '', - text: [ '2009 BE
Radius: 15 meters
Velocity: 11.67 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0512256131867 ], - y: [ 120.3578344502613 ], - name: '', - text: [ '2012 BF27
Radius: 15 meters
Velocity: 13.85 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2658637835866 ], - y: [ 164.64884772308704 ], - name: '', - text: [ '2011 GZ2
Radius: 15 meters
Velocity: 15.56 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.2366186153308 ], - y: [ 37.57035288983165 ], - name: '', - text: [ '2004 FY15
Radius: 15 meters
Velocity: 8.57 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.7142523151317 ], - y: [ 255.15985308216656 ], - name: '', - text: [ '2004 RN251
Radius: 15 meters
Velocity: 13.75 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.8499954381643 ], - y: [ 271.9368685303746 ], - name: '', - text: [ '2002 VZ91
Radius: 15 meters
Velocity: 7.05 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1926634277634 ], - y: [ 291.2061008803913 ], - name: '', - text: [ '2007 FS3
Radius: 15 meters
Velocity: 7.88 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.1675353162113 ], - y: [ 85.06139641417735 ], - name: '', - text: [ '2003 DW10
Radius: 15 meters
Velocity: 7.8 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.145111993066 ], - y: [ 183.32064102942644 ], - name: '', - text: [ '2006 DR14
Radius: 15 meters
Velocity: 12.94 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1416754101851 ], - y: [ 155.3539810828089 ], - name: '', - text: [ '2012 DZ
Radius: 15 meters
Velocity: 16.46 km/s' ], - marker: - { color: 'rgb(255,26,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7401407326308 ], - y: [ 169.91802814378073 ], - name: '', - text: [ '2006 SN198
Radius: 15 meters
Velocity: 16.07 km/s' ], - marker: - { color: 'rgb(255,18,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8112673539833 ], - y: [ 241.2481996477854 ], - name: '', - text: [ '2005 UF
Radius: 15 meters
Velocity: 13.17 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3110582698478 ], - y: [ 66.57714081911553 ], - name: '', - text: [ '2009 HW67
Radius: 15 meters
Velocity: 23.01 km/s' ], - marker: - { color: 'rgb(255,138,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2004052430698 ], - y: [ 142.62185479643503 ], - name: '', - text: [ '2007 FS3
Radius: 15 meters
Velocity: 8.24 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2135.392295059532 ], - y: [ 170.23953149150486 ], - name: '', - text: [ '2012 LA11
Radius: 15 meters
Velocity: 3.62 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.0459414868544 ], - y: [ 239.11312734614856 ], - name: '', - text: [ '2004 BN41
Radius: 15 meters
Velocity: 6.61 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8148350896402 ], - y: [ 111.78705780564727 ], - name: '', - text: [ '2011 UC190
Radius: 15 meters
Velocity: 10.92 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.8766517646702 ], - y: [ 287.13736849020603 ], - name: '', - text: [ '2004 WC1
Radius: 15 meters
Velocity: 6.01 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.12765917005 ], - y: [ 172.3473603801574 ], - name: '', - text: [ '2004 DF2
Radius: 15 meters
Velocity: 19.57 km/s' ], - marker: - { color: 'rgb(255,78,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2123.9969720815657 ], - y: [ 176.8435377100422 ], - name: '', - text: [ '2008 AF3
Radius: 15 meters
Velocity: 3.43 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7948884631176 ], - y: [ 186.09238561605653 ], - name: '', - text: [ '2007 TW24
Radius: 15 meters
Velocity: 12.1 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4348950017486 ], - y: [ 191.88115912470212 ], - name: '', - text: [ '2012 LA11
Radius: 15 meters
Velocity: 3.75 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8248046013716 ], - y: [ 184.42131079296746 ], - name: '', - text: [ '2007 VL3
Radius: 15 meters
Velocity: 12.52 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.833901662029 ], - y: [ 214.71393366604806 ], - name: '', - text: [ '2010 HW20
Radius: 15 meters
Velocity: 4.48 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0813698432248 ], - y: [ 145.46494808811707 ], - name: '', - text: [ '2012 CU
Radius: 15 meters
Velocity: 10.85 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.868271292368 ], - y: [ 270.4447434622333 ], - name: '', - text: [ '2012 WF
Radius: 15 meters
Velocity: 9.56 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8546941289176 ], - y: [ 287.1692951861977 ], - name: '', - text: [ '2012 VB5
Radius: 15 meters
Velocity: 16.87 km/s' ], - marker: - { color: 'rgb(255,31,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2061.4186624697777 ], - y: [ 177.7487093699253 ], - name: '', - text: [ '2012 LA11
Radius: 15 meters
Velocity: 3.74 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.414621443669 ], - y: [ 110.65289630204889 ], - name: '', - text: [ '2004 KF17
Radius: 15 meters
Velocity: 11.4 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.0317085595243 ], - y: [ 62.364893269207904 ], - name: '', - text: [ '2008 AF3
Radius: 15 meters
Velocity: 3.51 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9156953758193 ], - y: [ 163.801150651146 ], - name: '', - text: [ '2010 XA11
Radius: 15 meters
Velocity: 11.67 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 3.513561248436207, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7790322825906 ], - y: [ 214.27240557174252 ], - name: '', - text: [ '2012 TU231
Radius: 14 meters
Velocity: 10.16 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8518334777914 ], - y: [ 201.66166457428747 ], - name: '', - text: [ '2013 VW13
Radius: 14 meters
Velocity: 16.61 km/s' ], - marker: - { color: 'rgb(255,28,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3987006371365 ], - y: [ 232.12297584447694 ], - name: '', - text: [ '2009 LD
Radius: 14 meters
Velocity: 6.32 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2017.9089438590088 ], - y: [ 297.40561075185644 ], - name: '', - text: [ '2010 VD139
Radius: 14 meters
Velocity: 5.79 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.3753516415006 ], - y: [ 194.71852562046664 ], - name: '', - text: [ '2004 JO20
Radius: 14 meters
Velocity: 12.63 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7593688700333 ], - y: [ 101.47304335099008 ], - name: '', - text: [ '2007 TL16
Radius: 14 meters
Velocity: 11.39 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8025485455348 ], - y: [ 173.9086801632268 ], - name: '', - text: [ '2005 UA1
Radius: 14 meters
Velocity: 14.9 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.0458996700272 ], - y: [ 285.60374650528263 ], - name: '', - text: [ '2002 AN129
Radius: 14 meters
Velocity: 11.84 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0134041938477 ], - y: [ 178.8317646279712 ], - name: '', - text: [ '2013 AC53
Radius: 14 meters
Velocity: 6.55 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1985253866155 ], - y: [ 100.31061184249882 ], - name: '', - text: [ '2012 FG
Radius: 14 meters
Velocity: 15.68 km/s' ], - marker: - { color: 'rgb(255,12,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8667449781792 ], - y: [ 192.12714408082994 ], - name: '', - text: [ '2007 WJ3
Radius: 14 meters
Velocity: 11.77 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.960580037407 ], - y: [ 116.41065911263324 ], - name: '', - text: [ '2013 XH22
Radius: 14 meters
Velocity: 19.31 km/s' ], - marker: - { color: 'rgb(255,75,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.520902711251 ], - y: [ 123.07380435023727 ], - name: '', - text: [ '2005 ND63
Radius: 14 meters
Velocity: 8.06 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.863239967763 ], - y: [ 160.7427206586722 ], - name: '', - text: [ '2009 VX
Radius: 14 meters
Velocity: 14.0 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8169506409379 ], - y: [ 124.2414378358854 ], - name: '', - text: [ '2005 UE1
Radius: 14 meters
Velocity: 4.72 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.9556817663429 ], - y: [ 98.73480309243072 ], - name: '', - text: [ '2006 XR4
Radius: 14 meters
Velocity: 9.84 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1861894226236 ], - y: [ 133.16662564389895 ], - name: '', - text: [ '2008 EZ84
Radius: 14 meters
Velocity: 7.95 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9810873895656 ], - y: [ 264.7976417709982 ], - name: '', - text: [ '2010 XN69
Radius: 14 meters
Velocity: 8.2 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.66403220656 ], - y: [ 265.12822484129185 ], - name: '', - text: [ '2013 RY29
Radius: 14 meters
Velocity: 10.24 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.0876689779968 ], - y: [ 168.96826714698645 ], - name: '', - text: [ '2005 CM7
Radius: 14 meters
Velocity: 18.3 km/s' ], - marker: - { color: 'rgb(255,57,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2054.4113255173884 ], - y: [ 285.9699217959225 ], - name: '', - text: [ '2005 LU3
Radius: 14 meters
Velocity: 9.6 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.4239104815779 ], - y: [ 300.2513463495676 ], - name: '', - text: [ '2005 LU3
Radius: 14 meters
Velocity: 9.5 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.3378096345969 ], - y: [ 238.78562760924254 ], - name: '', - text: [ '2002 JU15
Radius: 14 meters
Velocity: 7.69 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2066.2665670665874 ], - y: [ 177.5684257406736 ], - name: '', - text: [ '2010 HF
Radius: 14 meters
Velocity: 5.29 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2041.3709418670073 ], - y: [ 235.48483705360033 ], - name: '', - text: [ '2007 WJ3
Radius: 14 meters
Velocity: 11.91 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2195.6515593874974 ], - y: [ 192.991099975764 ], - name: '', - text: [ '2007 SH
Radius: 14 meters
Velocity: 12.28 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.906972765841 ], - y: [ 85.41955049588368 ], - name: '', - text: [ '2008 WG96
Radius: 14 meters
Velocity: 15.88 km/s' ], - marker: - { color: 'rgb(255,15,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2997069020573 ], - y: [ 143.76045009307524 ], - name: '', - text: [ '2010 HF
Radius: 14 meters
Velocity: 5.28 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.897039368642 ], - y: [ 93.78114693091945 ], - name: '', - text: [ '2011 WN69
Radius: 14 meters
Velocity: 23.86 km/s' ], - marker: - { color: 'rgb(255,154,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.9590765323967 ], - y: [ 51.5694866499652 ], - name: '', - text: [ '2004 XB45
Radius: 14 meters
Velocity: 17.13 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 3.445439770745928, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.4057581770905 ], - y: [ 176.63579029223934 ], - name: '', - text: [ '2009 LA
Radius: 14 meters
Velocity: 10.5 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9845981022763 ], - y: [ 264.25777217293864 ], - name: '', - text: [ '2010 AH3
Radius: 14 meters
Velocity: 7.37 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.165442574092 ], - y: [ 187.45332282190816 ], - name: '', - text: [ '2008 DU22
Radius: 14 meters
Velocity: 10.64 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.161011891185 ], - y: [ 116.41550472057719 ], - name: '', - text: [ '2012 DS32
Radius: 14 meters
Velocity: 9.32 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8780944452049 ], - y: [ 271.7468872454914 ], - name: '', - text: [ '2012 VE77
Radius: 14 meters
Velocity: 15.03 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.750273710141 ], - y: [ 197.74151894684974 ], - name: '', - text: [ '2005 TH45
Radius: 14 meters
Velocity: 15.41 km/s' ], - marker: - { color: 'rgb(255,7,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2044.7285992883537 ], - y: [ 76.26759245107615 ], - name: '', - text: [ '2011 TO
Radius: 14 meters
Velocity: 8.56 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1066024968447 ], - y: [ 112.60347256384446 ], - name: '', - text: [ '2011 CZ3
Radius: 14 meters
Velocity: 13.66 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3185662910755 ], - y: [ 72.59369375132242 ], - name: '', - text: [ '2009 HK73
Radius: 14 meters
Velocity: 7.56 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2400038775604 ], - y: [ 25.014742586185136 ], - name: '', - text: [ '2008 FP
Radius: 14 meters
Velocity: 32.63 km/s' ], - marker: - { color: 'rgb(255,255,77)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.1746308714626 ], - y: [ 89.47673365934834 ], - name: '', - text: [ '2003 DY15
Radius: 14 meters
Velocity: 9.99 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2919308729834 ], - y: [ 136.86387824958672 ], - name: '', - text: [ '2013 HT14
Radius: 14 meters
Velocity: 21.15 km/s' ], - marker: - { color: 'rgb(255,107,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1073057798458 ], - y: [ 155.89323520523646 ], - name: '', - text: [ '2011 CZ3
Radius: 14 meters
Velocity: 13.44 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2019.3726069370314 ], - y: [ 191.20079363915477 ], - name: '', - text: [ '2012 KT12
Radius: 14 meters
Velocity: 3.94 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.9266228730442 ], - y: [ 270.0646062445309 ], - name: '', - text: [ '2005 XA
Radius: 14 meters
Velocity: 12.65 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3900977753449 ], - y: [ 90.19885360862843 ], - name: '', - text: [ '2012 KT12
Radius: 14 meters
Velocity: 3.77 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.244824217265 ], - y: [ 72.24682857777633 ], - name: '', - text: [ '2002 GQ
Radius: 14 meters
Velocity: 9.31 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9212456092332 ], - y: [ 258.55368675184314 ], - name: '', - text: [ '2011 WU74
Radius: 14 meters
Velocity: 17.65 km/s' ], - marker: - { color: 'rgb(255,47,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3209289418062 ], - y: [ 135.1162852495562 ], - name: '', - text: [ '2008 HC38
Radius: 14 meters
Velocity: 13.87 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7626666970789 ], - y: [ 192.25162903473725 ], - name: '', - text: [ '2012 TJ53
Radius: 14 meters
Velocity: 14.0 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.3269904809695 ], - y: [ 180.22303248376505 ], - name: '', - text: [ '2011 JM5
Radius: 14 meters
Velocity: 6.78 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.7241838115658 ], - y: [ 64.69379656079924 ], - name: '', - text: [ '2004 ST26
Radius: 14 meters
Velocity: 21.39 km/s' ], - marker: - { color: 'rgb(255,110,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2026.2780419840944 ], - y: [ 45.42476483767886 ], - name: '', - text: [ '2013 GM3
Radius: 14 meters
Velocity: 7.4 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.215339552636 ], - y: [ 189.93945386662162 ], - name: '', - text: [ '2004 FY1
Radius: 14 meters
Velocity: 15.66 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7384509526632 ], - y: [ 21.078404566873466 ], - name: '', - text: [ '2011 TO
Radius: 14 meters
Velocity: 8.86 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0237310493742 ], - y: [ 167.88387658846506 ], - name: '', - text: [ '2008 YV32
Radius: 14 meters
Velocity: 8.63 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8464315040371 ], - y: [ 91.24151903151804 ], - name: '', - text: [ '2012 VD5
Radius: 14 meters
Velocity: 11.41 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 3.380384264602884, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1751763909797 ], - y: [ 55.0307919696248 ], - name: '', - text: [ '2009 EW
Radius: 13 meters
Velocity: 12.87 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7904501771513 ], - y: [ 185.15369534902763 ], - name: '', - text: [ '2012 TQ146
Radius: 13 meters
Velocity: 9.32 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2053.6117516688714 ], - y: [ 215.1118182785867 ], - name: '', - text: [ '2012 MY2
Radius: 13 meters
Velocity: 3.96 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.677041041315 ], - y: [ 256.20603701365206 ], - name: '', - text: [ '2005 QP11
Radius: 13 meters
Velocity: 4.99 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.736616714566 ], - y: [ 171.04732919252677 ], - name: '', - text: [ '2012 SL50
Radius: 13 meters
Velocity: 12.03 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.491992077612 ], - y: [ 78.44419408436063 ], - name: '', - text: [ '2012 MY2
Radius: 13 meters
Velocity: 3.78 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2090784331615 ], - y: [ 82.40779339800149 ], - name: '', - text: [ '2007 EO88
Radius: 13 meters
Velocity: 10.97 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2941737755273 ], - y: [ 296.42259698818935 ], - name: '', - text: [ '2012 GW11
Radius: 13 meters
Velocity: 17.19 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.0989538190167 ], - y: [ 65.89663916937845 ], - name: '', - text: [ '2008 CE22
Radius: 13 meters
Velocity: 8.63 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4035570913736 ], - y: [ 7.558749000346859 ], - name: '', - text: [ '2012 KP24
Radius: 13 meters
Velocity: 13.27 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2076.485877317032 ], - y: [ 103.42384889389771 ], - name: '', - text: [ '2012 MY2
Radius: 13 meters
Velocity: 3.74 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.929914997795 ], - y: [ 28.212902011177402 ], - name: '', - text: [ '2003 XJ7
Radius: 13 meters
Velocity: 16.93 km/s' ], - marker: - { color: 'rgb(255,33,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2088921582044 ], - y: [ 266.5718060481671 ], - name: '', - text: [ '2007 EO88
Radius: 13 meters
Velocity: 10.65 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1394648206438 ], - y: [ 52.971902037600415 ], - name: '', - text: [ '2007 DN41
Radius: 13 meters
Velocity: 13.06 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2066.0853310372095 ], - y: [ 153.59264140002725 ], - name: '', - text: [ '2008 CE22
Radius: 13 meters
Velocity: 8.72 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2122.071451652145 ], - y: [ 183.97572448310552 ], - name: '', - text: [ '2008 CE22
Radius: 13 meters
Velocity: 8.74 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8415161260891 ], - y: [ 162.22144955430207 ], - name: '', - text: [ '2013 VG2
Radius: 13 meters
Velocity: 12.82 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.161184860788 ], - y: [ 299.82803685169927 ], - name: '', - text: [ '2011 DE5
Radius: 13 meters
Velocity: 15.08 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7078562413515 ], - y: [ 188.11992485923085 ], - name: '', - text: [ '2003 SL36
Radius: 13 meters
Velocity: 11.16 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1788467679394 ], - y: [ 201.10251284734628 ], - name: '', - text: [ '2011 EL40
Radius: 13 meters
Velocity: 17.87 km/s' ], - marker: - { color: 'rgb(255,49,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7413515198516 ], - y: [ 250.69297699277 ], - name: '', - text: [ '2013 TM69
Radius: 13 meters
Velocity: 9.94 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2155.701308106382 ], - y: [ 145.66772085407965 ], - name: '', - text: [ '2012 SL50
Radius: 13 meters
Velocity: 11.89 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.852802867874 ], - y: [ 205.19114608738764 ], - name: '', - text: [ '2005 VY1
Radius: 13 meters
Velocity: 6.94 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.701395541566 ], - y: [ 63.71459376895088 ], - name: '', - text: [ '2004 RU109
Radius: 13 meters
Velocity: 12.93 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2042.9828722077764 ], - y: [ 88.99889231742222 ], - name: '', - text: [ '2012 AP10
Radius: 13 meters
Velocity: 3.84 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.3194178337362 ], - y: [ 218.27504061838297 ], - name: '', - text: [ '2003 JX2
Radius: 13 meters
Velocity: 8.31 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.7861050286635 ], - y: [ 253.10959398159875 ], - name: '', - text: [ '2005 TV51
Radius: 13 meters
Velocity: 9.62 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0627537521098 ], - y: [ 112.29333826487978 ], - name: '', - text: [ '2009 BH11
Radius: 13 meters
Velocity: 13.05 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9935754147468 ], - y: [ 69.0163702431767 ], - name: '', - text: [ '2012 AP10
Radius: 13 meters
Velocity: 3.86 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 3.3182567385564075, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1974647598192 ], - y: [ 211.8061678841025 ], - name: '', - text: [ '2013 EA29
Radius: 13 meters
Velocity: 14.59 km/s' ], - marker: - { color: 'rgb(246,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.1790178367776 ], - y: [ 123.44255110872912 ], - name: '', - text: [ '2006 EH1
Radius: 13 meters
Velocity: 12.59 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2065.931595273938 ], - y: [ 223.4022667278626 ], - name: '', - text: [ '2003 YN107
Radius: 13 meters
Velocity: 2.48 km/s' ], - marker: - { color: 'rgb(36,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2172.888641789456 ], - y: [ 200.25559471510073 ], - name: '', - text: [ '2003 YN107
Radius: 13 meters
Velocity: 2.54 km/s' ], - marker: - { color: 'rgb(39,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.1455833827533 ], - y: [ 20.160617872328164 ], - name: '', - text: [ '2006 DD1
Radius: 13 meters
Velocity: 17.23 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8314895914116 ], - y: [ 298.2972899429149 ], - name: '', - text: [ '2013 UJ9
Radius: 13 meters
Velocity: 9.28 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.722898894515 ], - y: [ 96.8637192761957 ], - name: '', - text: [ '2006 SO77
Radius: 13 meters
Velocity: 7.99 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.901319891124 ], - y: [ 229.04320851430919 ], - name: '', - text: [ '2006 WV29
Radius: 13 meters
Velocity: 16.55 km/s' ], - marker: - { color: 'rgb(255,26,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0398837492207 ], - y: [ 131.550451065336 ], - name: '', - text: [ '2006 BW7
Radius: 13 meters
Velocity: 9.39 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.794953089123 ], - y: [ 287.3259806556464 ], - name: '', - text: [ '2007 TH71
Radius: 13 meters
Velocity: 7.43 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.3050955704575 ], - y: [ 167.6062215600686 ], - name: '', - text: [ '2006 HE2
Radius: 13 meters
Velocity: 5.26 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3253482201237 ], - y: [ 156.66613816734937 ], - name: '', - text: [ '2008 JC
Radius: 13 meters
Velocity: 13.85 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2046.181827167252 ], - y: [ 295.5256092694408 ], - name: '', - text: [ '2012 DW60
Radius: 13 meters
Velocity: 5.74 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2029.7394697626326 ], - y: [ 191.8157124292148 ], - name: '', - text: [ '2006 HE2
Radius: 13 meters
Velocity: 4.88 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.760452306008 ], - y: [ 100.19295643612206 ], - name: '', - text: [ '2012 TE53
Radius: 13 meters
Velocity: 10.14 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.8682922007815 ], - y: [ 116.9385458333214 ], - name: '', - text: [ '2010 WD1
Radius: 13 meters
Velocity: 7.3 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1469728418715 ], - y: [ 260.8511702286375 ], - name: '', - text: [ '2010 DU1
Radius: 13 meters
Velocity: 14.14 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8652946945851 ], - y: [ 79.941417880353 ], - name: '', - text: [ '2010 VW194
Radius: 13 meters
Velocity: 7.52 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.5679751532016 ], - y: [ 27.561177121698865 ], - name: '', - text: [ '2011 OD18
Radius: 13 meters
Velocity: 9.54 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.192724252239 ], - y: [ 152.29890923764864 ], - name: '', - text: [ '2012 DW60
Radius: 13 meters
Velocity: 5.64 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7266700120128 ], - y: [ 77.1082388921767 ], - name: '', - text: [ '2011 SO189
Radius: 13 meters
Velocity: 13.05 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7043360248165 ], - y: [ 246.97341596361093 ], - name: '', - text: [ '2003 SY4
Radius: 13 meters
Velocity: 10.91 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.4203902650427 ], - y: [ 245.0144958414251 ], - name: '', - text: [ '2005 LM3
Radius: 13 meters
Velocity: 8.71 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6875446679744 ], - y: [ 135.45011791788633 ], - name: '', - text: [ '2010 RS80
Radius: 13 meters
Velocity: 9.82 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3151316089595 ], - y: [ 279.1176850542334 ], - name: '', - text: [ '2009 HS44
Radius: 13 meters
Velocity: 18.02 km/s' ], - marker: - { color: 'rgb(255,52,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8558592977815 ], - y: [ 188.85732455157554 ], - name: '', - text: [ '2010 VO139
Radius: 13 meters
Velocity: 21.27 km/s' ], - marker: - { color: 'rgb(255,110,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7730809877894 ], - y: [ 141.21830743292085 ], - name: '', - text: [ '2010 TO55
Radius: 13 meters
Velocity: 6.94 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2123.3953971077963 ], - y: [ 288.73048309193297 ], - name: '', - text: [ '2003 YN107
Radius: 13 meters
Velocity: 2.46 km/s' ], - marker: - { color: 'rgb(36,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.88261826559 ], - y: [ 219.95194249938598 ], - name: '', - text: [ '2010 WD1
Radius: 13 meters
Velocity: 7.63 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7895701230175 ], - y: [ 140.12979449755548 ], - name: '', - text: [ '2006 UU17
Radius: 12 meters
Velocity: 9.4 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.055751334337 ], - y: [ 147.59564401884018 ], - name: '', - text: [ '2006 BY8
Radius: 12 meters
Velocity: 15.58 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0896400711647 ], - y: [ 117.81651229899023 ], - name: '', - text: [ '2014 BW32
Radius: 12 meters
Velocity: 7.14 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7852287760595 ], - y: [ 267.78502811285597 ], - name: '', - text: [ '2010 TG54
Radius: 12 meters
Velocity: 13.28 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.041102139501 ], - y: [ 115.28244500933522 ], - name: '', - text: [ '2013 AP72
Radius: 12 meters
Velocity: 8.72 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2117.3560645803873 ], - y: [ 253.40848392159685 ], - name: '', - text: [ '2013 KT1
Radius: 12 meters
Velocity: 5.94 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7394659611027 ], - y: [ 211.6184483039753 ], - name: '', - text: [ '2013 TG6
Radius: 12 meters
Velocity: 4.12 km/s' ], - marker: - { color: 'rgb(65,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9261267734137 ], - y: [ 198.3149918320673 ], - name: '', - text: [ '2010 XS45
Radius: 12 meters
Velocity: 12.82 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2127.7915564223044 ], - y: [ 194.9203759484783 ], - name: '', - text: [ '2004 UT1
Radius: 12 meters
Velocity: 6.54 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.9083907364322 ], - y: [ 274.8318066574096 ], - name: '', - text: [ '2003 WH98
Radius: 12 meters
Velocity: 7.19 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.8246734485956 ], - y: [ 126.25971803647911 ], - name: '', - text: [ '2004 UT1
Radius: 12 meters
Velocity: 6.65 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.067106503657 ], - y: [ 157.05649229504732 ], - name: '', - text: [ '2012 BA102
Radius: 12 meters
Velocity: 7.51 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7961144564572 ], - y: [ 102.07224503919798 ], - name: '', - text: [ '2013 UB
Radius: 12 meters
Velocity: 7.88 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7813588187887 ], - y: [ 185.05527639191527 ], - name: '', - text: [ '2013 TM127
Radius: 12 meters
Velocity: 11.5 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2022.8201173152077 ], - y: [ 208.45927118040856 ], - name: '', - text: [ '2004 UT1
Radius: 12 meters
Velocity: 6.4 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2023.7359286376839 ], - y: [ 215.4469162810447 ], - name: '', - text: [ '2013 TG6
Radius: 12 meters
Velocity: 4.14 km/s' ], - marker: - { color: 'rgb(65,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.8602557669205 ], - y: [ 220.6260268183053 ], - name: '', - text: [ '2006 VE13
Radius: 12 meters
Velocity: 12.27 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3935799765825 ], - y: [ 83.30049014312405 ], - name: '', - text: [ '2009 KW2
Radius: 12 meters
Velocity: 4.83 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.08144207229 ], - y: [ 53.19164532135207 ], - name: '', - text: [ '2008 BC15
Radius: 12 meters
Velocity: 20.69 km/s' ], - marker: - { color: 'rgb(255,99,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7705263598073 ], - y: [ 12.191308567773536 ], - name: '', - text: [ '2012 TM79
Radius: 12 meters
Velocity: 9.86 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.1821217858067 ], - y: [ 46.84064917020634 ], - name: '', - text: [ '2006 EC
Radius: 12 meters
Velocity: 7.65 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.3833348539451 ], - y: [ 194.8652708806784 ], - name: '', - text: [ '2013 KT1
Radius: 12 meters
Velocity: 5.83 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.7207301218011 ], - y: [ 255.26577898335455 ], - name: '', - text: [ '2004 SR26
Radius: 12 meters
Velocity: 5.94 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.652171433785 ], - y: [ 145.9266694715302 ], - name: '', - text: [ '2010 RZ11
Radius: 12 meters
Velocity: 14.26 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2089928987425 ], - y: [ 14.784317244134996 ], - name: '', - text: [ '2009 FH
Radius: 12 meters
Velocity: 6.58 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1936252147864 ], - y: [ 140.16863406547893 ], - name: '', - text: [ '2007 EN88
Radius: 12 meters
Velocity: 12.22 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6885045542326 ], - y: [ 140.84862346208112 ], - name: '', - text: [ '2010 SW3
Radius: 12 meters
Velocity: 7.71 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.017739838511 ], - y: [ 62.55704552640092 ], - name: '', - text: [ '2014 AK51
Radius: 12 meters
Velocity: 9.28 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7959909067408 ], - y: [ 258.9371044186373 ], - name: '', - text: [ '2012 UU158
Radius: 12 meters
Velocity: 11.95 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.18919073035 ], - y: [ 211.8238579378587 ], - name: '', - text: [ '2009 EU
Radius: 12 meters
Velocity: 10.83 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 3.202264434617412, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.777416632453 ], - y: [ 16.204493962415995 ], - name: '', - text: [ '2012 TC4
Radius: 11 meters
Velocity: 7.12 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2144.8958380852455 ], - y: [ 176.7373457340304 ], - name: '', - text: [ '2003 XV
Radius: 11 meters
Velocity: 11.92 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1799910283898 ], - y: [ 120.90851510688033 ], - name: '', - text: [ '2008 EC32
Radius: 11 meters
Velocity: 16.78 km/s' ], - marker: - { color: 'rgb(255,31,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.721722321062 ], - y: [ 206.82444042266388 ], - name: '', - text: [ '2009 SP104
Radius: 11 meters
Velocity: 17.32 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.437765156699 ], - y: [ 208.91026591071918 ], - name: '', - text: [ '2008 LB
Radius: 11 meters
Velocity: 11.05 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1449124127548 ], - y: [ 43.722266231878486 ], - name: '', - text: [ '2011 DU9
Radius: 11 meters
Velocity: 8.92 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3456103736144 ], - y: [ 176.3211826994285 ], - name: '', - text: [ '2008 JP24
Radius: 11 meters
Velocity: 6.85 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.2349022246551 ], - y: [ 268.9872828830706 ], - name: '', - text: [ '2003 FJ8
Radius: 11 meters
Velocity: 10.93 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2017.7757971807855 ], - y: [ 21.91648892671028 ], - name: '', - text: [ '2012 TC4
Radius: 11 meters
Velocity: 6.96 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2017.7807999939175 ], - y: [ 252.03506316621466 ], - name: '', - text: [ '2005 TE49
Radius: 11 meters
Velocity: 10.47 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2017.916877651567 ], - y: [ 232.88239740990593 ], - name: '', - text: [ '2008 WM61
Radius: 11 meters
Velocity: 4.69 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9290520505451 ], - y: [ 70.3784089953247 ], - name: '', - text: [ '2003 XV
Radius: 11 meters
Velocity: 11.93 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.414045511914 ], - y: [ 47.989624597850124 ], - name: '', - text: [ '2009 KR21
Radius: 11 meters
Velocity: 12.98 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.155419840944 ], - y: [ 64.64380709985053 ], - name: '', - text: [ '2009 DT43
Radius: 11 meters
Velocity: 13.79 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.906381627967 ], - y: [ 212.2382709163102 ], - name: '', - text: [ '2008 WM61
Radius: 11 meters
Velocity: 4.79 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.1479688426623 ], - y: [ 37.21511948771834 ], - name: '', - text: [ '2006 DM63
Radius: 11 meters
Velocity: 10.5 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.6124302419294 ], - y: [ 184.1700959549024 ], - name: '', - text: [ '2012 PZ17
Radius: 11 meters
Velocity: 3.56 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.844319754269 ], - y: [ 92.05043684429265 ], - name: '', - text: [ '2012 VT76
Radius: 11 meters
Velocity: 11.64 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2346760336359 ], - y: [ 185.59359239769933 ], - name: '', - text: [ '2010 FW9
Radius: 11 meters
Velocity: 8.87 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0392412906954 ], - y: [ 138.3999736444202 ], - name: '', - text: [ '2012 AQ10
Radius: 11 meters
Velocity: 7.08 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.9303350668308 ], - y: [ 74.85701302521069 ], - name: '', - text: [ '2003 XV
Radius: 11 meters
Velocity: 12.0 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7074741876131 ], - y: [ 143.35405819496282 ], - name: '', - text: [ '2013 RM73
Radius: 11 meters
Velocity: 9.9 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7678938004653 ], - y: [ 63.10615505534767 ], - name: '', - text: [ '2013 TL127
Radius: 11 meters
Velocity: 13.99 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.6210863251372 ], - y: [ 130.74252313831204 ], - name: '', - text: [ '2004 PU42
Radius: 11 meters
Velocity: 10.32 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 3.148153621496883, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.871679363776 ], - y: [ 44.569940434492544 ], - name: '', - text: [ '2009 WP6
Radius: 11 meters
Velocity: 25.36 km/s' ], - marker: - { color: 'rgb(255,180,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.982073886532 ], - y: [ 221.7246483203216 ], - name: '', - text: [ '2008 YH30
Radius: 11 meters
Velocity: 10.37 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8248502197284 ], - y: [ 43.46969797206651 ], - name: '', - text: [ '2013 UV3
Radius: 11 meters
Velocity: 16.68 km/s' ], - marker: - { color: 'rgb(255,28,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.46607134711 ], - y: [ 163.36697210577643 ], - name: '', - text: [ '2006 MV1
Radius: 11 meters
Velocity: 5.14 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.6523634110365 ], - y: [ 125.74516934658782 ], - name: '', - text: [ '2003 QB30
Radius: 11 meters
Velocity: 11.89 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1583698280187 ], - y: [ 246.97384423898941 ], - name: '', - text: [ '2011 ED12
Radius: 11 meters
Velocity: 3.24 km/s' ], - marker: - { color: 'rgb(49,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.9369060109789 ], - y: [ 139.3408393814417 ], - name: '', - text: [ '2005 XX
Radius: 11 meters
Velocity: 9.25 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2174.3542075331115 ], - y: [ 94.42712692732931 ], - name: '', - text: [ '2010 KV39
Radius: 11 meters
Velocity: 10.43 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3850170308533 ], - y: [ 208.88366750847445 ], - name: '', - text: [ '2012 KW
Radius: 11 meters
Velocity: 10.12 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.8190357799979 ], - y: [ 175.08991724783874 ], - name: '', - text: [ '2003 UT55
Radius: 11 meters
Velocity: 9.64 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2057.766705822423 ], - y: [ 303.4386272070258 ], - name: '', - text: [ '2010 TB54
Radius: 11 meters
Velocity: 8.08 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.3716603561272 ], - y: [ 60.40104865849829 ], - name: '', - text: [ '2010 JL88
Radius: 11 meters
Velocity: 14.86 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.3979859495462 ], - y: [ 46.72830419766149 ], - name: '', - text: [ '2010 KV39
Radius: 11 meters
Velocity: 10.44 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2453184161307 ], - y: [ 204.66933538953583 ], - name: '', - text: [ '2009 FQ32
Radius: 11 meters
Velocity: 4.66 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2366604321578 ], - y: [ 221.85780601066267 ], - name: '', - text: [ '2012 GE
Radius: 11 meters
Velocity: 10.73 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.4683503641866 ], - y: [ 152.78499013598812 ], - name: '', - text: [ '2006 MV1
Radius: 11 meters
Velocity: 5.04 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7332162462176 ], - y: [ 118.4007641699952 ], - name: '', - text: [ '2010 TD
Radius: 11 meters
Velocity: 18.69 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1914982588994 ], - y: [ 153.45867683818076 ], - name: '', - text: [ '2010 FD6
Radius: 11 meters
Velocity: 10.6 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.788832626249 ], - y: [ 133.02165779443192 ], - name: '', - text: [ '2010 UK
Radius: 11 meters
Velocity: 6.03 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1431028846007 ], - y: [ 231.13551310856855 ], - name: '', - text: [ '2010 DE2
Radius: 11 meters
Velocity: 5.8 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1339183887596 ], - y: [ 197.91745253795872 ], - name: '', - text: [ '2010 CJ18
Radius: 11 meters
Velocity: 8.31 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1458342837157 ], - y: [ 129.39242818707902 ], - name: '', - text: [ '2009 DM40
Radius: 11 meters
Velocity: 8.71 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.1490047595153 ], - y: [ 298.59435399667046 ], - name: '', - text: [ '2005 ES1
Radius: 11 meters
Velocity: 5.56 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.3857545276219 ], - y: [ 290.4783755167146 ], - name: '', - text: [ '2013 KS1
Radius: 11 meters
Velocity: 9.5 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9290767604884 ], - y: [ 273.89989962632563 ], - name: '', - text: [ '2010 XA25
Radius: 11 meters
Velocity: 7.61 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.294552027736 ], - y: [ 47.358134711887296 ], - name: '', - text: [ '2004 HE
Radius: 11 meters
Velocity: 18.25 km/s' ], - marker: - { color: 'rgb(255,57,0)', - size: 3.0964781961431846, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2103.159529294588 ], - y: [ 208.48289378245676 ], - name: '', - text: [ '2012 EA
Radius: 10 meters
Velocity: 5.08 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2051.199051898484 ], - y: [ 228.04329825268783 ], - name: '', - text: [ '2005 FN
Radius: 10 meters
Velocity: 10.64 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.130719401487 ], - y: [ 125.3603123510606 ], - name: '', - text: [ '2011 DS
Radius: 10 meters
Velocity: 6.47 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2089586849747 ], - y: [ 96.46784409779316 ], - name: '', - text: [ '2010 FU9
Radius: 10 meters
Velocity: 10.83 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1522607697336 ], - y: [ 146.1611025957177 ], - name: '', - text: [ '2011 EB
Radius: 10 meters
Velocity: 10.27 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9098448215561 ], - y: [ 35.755360270423495 ], - name: '', - text: [ '2010 XR
Radius: 10 meters
Velocity: 19.64 km/s' ], - marker: - { color: 'rgb(255,81,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2020.7517943220353 ], - y: [ 193.8197343662502 ], - name: '', - text: [ '2001 GP2
Radius: 10 meters
Velocity: 2.48 km/s' ], - marker: - { color: 'rgb(36,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1408238675242 ], - y: [ 61.25639152391832 ], - name: '', - text: [ '2010 DJ1
Radius: 10 meters
Velocity: 19.98 km/s' ], - marker: - { color: 'rgb(255,86,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.202716573149 ], - y: [ 55.47421676242926 ], - name: '', - text: [ '2011 EB74
Radius: 10 meters
Velocity: 7.71 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.127862551891 ], - y: [ 291.14031750788865 ], - name: '', - text: [ '2008 CB6
Radius: 10 meters
Velocity: 7.71 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7733642017547 ], - y: [ 59.00418115875287 ], - name: '', - text: [ '2010 TN55
Radius: 10 meters
Velocity: 25.45 km/s' ], - marker: - { color: 'rgb(255,180,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.1070187643509 ], - y: [ 72.94773754781212 ], - name: '', - text: [ '2002 CB26
Radius: 10 meters
Velocity: 22.37 km/s' ], - marker: - { color: 'rgb(255,128,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.958124249198 ], - y: [ 210.74882190346727 ], - name: '', - text: [ '2005 YK
Radius: 10 meters
Velocity: 9.88 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.0312979943128 ], - y: [ 240.6312480744077 ], - name: '', - text: [ '2010 AN60
Radius: 10 meters
Velocity: 12.76 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8431222724025 ], - y: [ 267.2419780264849 ], - name: '', - text: [ '2008 VC
Radius: 10 meters
Velocity: 4.78 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8750494198866 ], - y: [ 223.35585733515785 ], - name: '', - text: [ '2009 WX7
Radius: 10 meters
Velocity: 7.09 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1488679044448 ], - y: [ 137.60532758674506 ], - name: '', - text: [ '2009 DU10
Radius: 10 meters
Velocity: 8.39 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4678029439046 ], - y: [ 49.52051418945727 ], - name: '', - text: [ '2012 MF7
Radius: 10 meters
Velocity: 8.81 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1675448200356 ], - y: [ 159.78569558768606 ], - name: '', - text: [ '2012 EA
Radius: 10 meters
Velocity: 5.14 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.6932070465155 ], - y: [ 298.1127649345402 ], - name: '', - text: [ '2012 RT16
Radius: 10 meters
Velocity: 10.32 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.2111806791054 ], - y: [ 24.297632033036813 ], - name: '', - text: [ '2005 FN
Radius: 10 meters
Velocity: 10.62 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.4635300244818 ], - y: [ 156.71589672658814 ], - name: '', - text: [ '2011 MX
Radius: 10 meters
Velocity: 12.41 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.417915469185 ], - y: [ 228.1629635169621 ], - name: '', - text: [ '2011 KE15
Radius: 10 meters
Velocity: 8.14 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9393789060719 ], - y: [ 146.31806458718057 ], - name: '', - text: [ '2012 XJ112
Radius: 10 meters
Velocity: 11.04 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8743879537126 ], - y: [ 149.18567261866946 ], - name: '', - text: [ '2012 VS76
Radius: 10 meters
Velocity: 11.33 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.953851329775 ], - y: [ 107.68077346613535 ], - name: '', - text: [ '2012 XH112
Radius: 10 meters
Velocity: 14.4 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.4700477472136 ], - y: [ 116.3574559742064 ], - name: '', - text: [ '2005 MA
Radius: 10 meters
Velocity: 13.51 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8951614129526 ], - y: [ 200.79047621315502 ], - name: '', - text: [ '2005 WX
Radius: 10 meters
Velocity: 5.5 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 3.0471285480509, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.942292778614 ], - y: [ 257.2514562237212 ], - name: '', - text: [ '2012 XL55
Radius: 10 meters
Velocity: 18.76 km/s' ], - marker: - { color: 'rgb(255,65,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7981140610982 ], - y: [ 92.83166580446589 ], - name: '', - text: [ '2008 UR2
Radius: 10 meters
Velocity: 9.03 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.1040934872192 ], - y: [ 122.5716057685738 ], - name: '', - text: [ '2005 VL1
Radius: 10 meters
Velocity: 6.59 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1590484010767 ], - y: [ 182.10036210121754 ], - name: '', - text: [ '2013 EV27
Radius: 10 meters
Velocity: 12.53 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.857488253273 ], - y: [ 110.98212697992858 ], - name: '', - text: [ '2012 VQ6
Radius: 10 meters
Velocity: 12.95 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1160721074161 ], - y: [ 111.62510671479839 ], - name: '', - text: [ '2007 CC19
Radius: 10 meters
Velocity: 18.89 km/s' ], - marker: - { color: 'rgb(255,68,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.5387033742377 ], - y: [ 27.281941748416838 ], - name: '', - text: [ '2004 OD4
Radius: 10 meters
Velocity: 8.88 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0366619527697 ], - y: [ 139.5582781491237 ], - name: '', - text: [ '2013 BM18
Radius: 10 meters
Velocity: 8.96 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1124340434592 ], - y: [ 57.81212699031891 ], - name: '', - text: [ '2007 CC27
Radius: 10 meters
Velocity: 10.94 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.3235710049723 ], - y: [ 58.110269263479985 ], - name: '', - text: [ '2003 HW10
Radius: 10 meters
Velocity: 13.31 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1638535346624 ], - y: [ 194.10171934528546 ], - name: '', - text: [ '2014 EL
Radius: 10 meters
Velocity: 12.25 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.18408717668 ], - y: [ 29.019430652195098 ], - name: '', - text: [ '2008 EZ7
Radius: 10 meters
Velocity: 8.38 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2074.148387010933 ], - y: [ 273.62363273972693 ], - name: '', - text: [ '2014 EL
Radius: 10 meters
Velocity: 12.54 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8372698173746 ], - y: [ 276.24556880494447 ], - name: '', - text: [ '2008 UC7
Radius: 10 meters
Velocity: 12.3 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2049.0849242735276 ], - y: [ 124.05753038853965 ], - name: '', - text: [ '2005 VL1
Radius: 10 meters
Velocity: 6.59 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2922444991864 ], - y: [ 77.81393092152213 ], - name: '', - text: [ '2012 HG2
Radius: 10 meters
Velocity: 3.64 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6745187263355 ], - y: [ 156.36472580008623 ], - name: '', - text: [ '2010 RB12
Radius: 10 meters
Velocity: 13.12 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.711703389444 ], - y: [ 276.43275154303535 ], - name: '', - text: [ '2013 SW19
Radius: 10 meters
Velocity: 8.43 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.3476479935525 ], - y: [ 110.53647718547879 ], - name: '', - text: [ '2010 JA
Radius: 10 meters
Velocity: 8.45 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.863283685355 ], - y: [ 81.8825279582948 ], - name: '', - text: [ '2005 VN5
Radius: 10 meters
Velocity: 6.59 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6982934933017 ], - y: [ 180.64704718188915 ], - name: '', - text: [ '2013 RS43
Radius: 10 meters
Velocity: 5.96 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2047.1057319465353 ], - y: [ 17.36274302391464 ], - name: '', - text: [ '2012 HG2
Radius: 10 meters
Velocity: 4.5 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 3, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.193127214391 ], - y: [ 269.12847756600297 ], - name: '', - text: [ '2010 FM
Radius: 10 meters
Velocity: 6.6 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2024.9398122804616 ], - y: [ 69.77687773005704 ], - name: '', - text: [ '2007 XB23
Radius: 10 meters
Velocity: 4.77 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.2309885497925 ], - y: [ 112.40303763678783 ], - name: '', - text: [ '2004 FM32
Radius: 10 meters
Velocity: 4.33 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.050645879902 ], - y: [ 57.521846177035734 ], - name: '', - text: [ '2011 BY10
Radius: 10 meters
Velocity: 7.84 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.9716614965862 ], - y: [ 293.846911155391 ], - name: '', - text: [ '2006 XZ2
Radius: 10 meters
Velocity: 9.45 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0348676307347 ], - y: [ 249.4228477475726 ], - name: '', - text: [ '2011 AY22
Radius: 10 meters
Velocity: 13.36 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.0357628909874 ], - y: [ 163.04252899714663 ], - name: '', - text: [ '2010 AG30
Radius: 10 meters
Velocity: 18.63 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.3877465292032 ], - y: [ 31.087774008800377 ], - name: '', - text: [ '2010 KO10
Radius: 10 meters
Velocity: 11.94 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2059.71787517297 ], - y: [ 263.6791785950191 ], - name: '', - text: [ '2008 ST
Radius: 10 meters
Velocity: 3.02 km/s' ], - marker: - { color: 'rgb(47,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0802597965421 ], - y: [ 37.82478559940706 ], - name: '', - text: [ '2011 CA4
Radius: 10 meters
Velocity: 6.0 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0558957924668 ], - y: [ 281.9043707767378 ], - name: '', - text: [ '2009 BJ2
Radius: 10 meters
Velocity: 9.04 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7407489773884 ], - y: [ 243.86135473371152 ], - name: '', - text: [ '2008 ST
Radius: 10 meters
Velocity: 3.05 km/s' ], - marker: - { color: 'rgb(47,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.9462672779528 ], - y: [ 18.680761687190213 ], - name: '', - text: [ '2007 XB23
Radius: 10 meters
Velocity: 5.38 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0828125237595 ], - y: [ 89.03809442688761 ], - name: '', - text: [ '2014 CE
Radius: 10 meters
Velocity: 13.16 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.5734075391938 ], - y: [ 33.551185085951026 ], - name: '', - text: [ '2008 OT7
Radius: 10 meters
Velocity: 9.75 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8968911089823 ], - y: [ 29.12218408846339 ], - name: '', - text: [ '2009 WV51
Radius: 10 meters
Velocity: 13.8 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.2287475480134 ], - y: [ 294.78824983095575 ], - name: '', - text: [ '2004 FN8
Radius: 10 meters
Velocity: 3.56 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.556583869349 ], - y: [ 47.77215672525802 ], - name: '', - text: [ '2006 OK3
Radius: 10 meters
Velocity: 14.73 km/s' ], - marker: - { color: 'rgb(249,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2536912853732 ], - y: [ 222.6091338295188 ], - name: '', - text: [ '2012 FH58
Radius: 10 meters
Velocity: 9.72 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1837203290604 ], - y: [ 183.01345276848414 ], - name: '', - text: [ '2008 EG32
Radius: 10 meters
Velocity: 9.03 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.76991051199 ], - y: [ 262.27444582772614 ], - name: '', - text: [ '2010 UH
Radius: 10 meters
Velocity: 6.8 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6840301537338 ], - y: [ 39.04551630350885 ], - name: '', - text: [ '2010 RX30
Radius: 10 meters
Velocity: 10.0 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.801482216444 ], - y: [ 148.59604953228578 ], - name: '', - text: [ '2013 UT3
Radius: 10 meters
Velocity: 16.62 km/s' ], - marker: - { color: 'rgb(255,28,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.138398491553 ], - y: [ 123.8313850470956 ], - name: '', - text: [ '2012 DX
Radius: 10 meters
Velocity: 10.6 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9717565348296 ], - y: [ 172.069214363424 ], - name: '', - text: [ '2010 XO69
Radius: 10 meters
Velocity: 7.1 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.341231011359 ], - y: [ 52.146467448030556 ], - name: '', - text: [ '2009 JF1
Radius: 10 meters
Velocity: 24.0 km/s' ], - marker: - { color: 'rgb(255,157,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2132.6506071042986 ], - y: [ 245.940331379221 ], - name: '', - text: [ '2010 RX30
Radius: 10 meters
Velocity: 9.6 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.9064443532077 ], - y: [ 126.67877793952384 ], - name: '', - text: [ '2005 WY
Radius: 10 meters
Velocity: 8.3 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 2.9549925860214348, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0950648540972 ], - y: [ 221.36990841528458 ], - name: '', - text: [ '2012 CQ46
Radius: 9 meters
Velocity: 12.97 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.8877009108464 ], - y: [ 56.184661966611415 ], - name: '', - text: [ '2006 WV
Radius: 9 meters
Velocity: 14.76 km/s' ], - marker: - { color: 'rgb(249,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0278633121968 ], - y: [ 155.68101688100379 ], - name: '', - text: [ '2013 BY2
Radius: 9 meters
Velocity: 11.58 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2034.7465710201786 ], - y: [ 151.40495313328958 ], - name: '', - text: [ '2005 TA
Radius: 9 meters
Velocity: 5.08 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2082.091820248468 ], - y: [ 108.36942003152353 ], - name: '', - text: [ '2013 PS13
Radius: 9 meters
Velocity: 17.42 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8260686100086 ], - y: [ 36.67441694363716 ], - name: '', - text: [ '2007 US51
Radius: 9 meters
Velocity: 15.33 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0832611042683 ], - y: [ 78.39904534095271 ], - name: '', - text: [ '2006 BH99
Radius: 9 meters
Velocity: 17.86 km/s' ], - marker: - { color: 'rgb(255,49,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.0329345528642 ], - y: [ 21.619504023640314 ], - name: '', - text: [ '2010 AL30
Radius: 9 meters
Velocity: 9.95 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0658329911957 ], - y: [ 105.45426471130705 ], - name: '', - text: [ '2012 BW13
Radius: 9 meters
Velocity: 11.8 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1462372458677 ], - y: [ 170.0051626432919 ], - name: '', - text: [ '2014 DK23
Radius: 9 meters
Velocity: 7.91 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7059478734243 ], - y: [ 283.7011272984595 ], - name: '', - text: [ '2006 RH2
Radius: 9 meters
Velocity: 6.35 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.7553848668704 ], - y: [ 125.29997493114395 ], - name: '', - text: [ '2005 TA
Radius: 9 meters
Velocity: 5.04 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1079919559631 ], - y: [ 238.427780403927 ], - name: '', - text: [ '2008 CD70
Radius: 9 meters
Velocity: 6.82 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9138687407813 ], - y: [ 223.53126313923283 ], - name: '', - text: [ '2010 XX
Radius: 9 meters
Velocity: 8.46 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.3851196721562 ], - y: [ 193.89494907739822 ], - name: '', - text: [ '2013 KB
Radius: 9 meters
Velocity: 6.75 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.9282727369493 ], - y: [ 91.02880484046713 ], - name: '', - text: [ '2008 XK
Radius: 9 meters
Velocity: 14.15 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8000243297904 ], - y: [ 123.4015623605791 ], - name: '', - text: [ '2009 UD
Radius: 9 meters
Velocity: 3.96 km/s' ], - marker: - { color: 'rgb(63,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.719291242796 ], - y: [ 90.91148340441495 ], - name: '', - text: [ '2008 ST1
Radius: 9 meters
Velocity: 7.75 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2113517479434 ], - y: [ 111.90023329873951 ], - name: '', - text: [ '2013 FU13
Radius: 9 meters
Velocity: 5.94 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.31706468683 ], - y: [ 167.58110146973323 ], - name: '', - text: [ '2004 HT59
Radius: 9 meters
Velocity: 8.96 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.187723339872 ], - y: [ 100.50315940627839 ], - name: '', - text: [ '2011 EU20
Radius: 9 meters
Velocity: 9.33 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6012670498608 ], - y: [ 33.4288215036734 ], - name: '', - text: [ '2013 PS13
Radius: 9 meters
Velocity: 17.39 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2097.779237565196 ], - y: [ 224.86187666797028 ], - name: '', - text: [ '2009 UD
Radius: 9 meters
Velocity: 3.8 km/s' ], - marker: - { color: 'rgb(60,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2102.0097452214773 ], - y: [ 292.7491117522197 ], - name: '', - text: [ '2010 AL30
Radius: 9 meters
Velocity: 10.03 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.157691254961 ], - y: [ 65.52756002495143 ], - name: '', - text: [ '2013 EB
Radius: 9 meters
Velocity: 13.57 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8936141903503 ], - y: [ 91.33403342140006 ], - name: '', - text: [ '2011 WP4
Radius: 9 meters
Velocity: 10.83 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 2.9120108393559097, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.745632042334 ], - y: [ 134.54133305344672 ], - name: '', - text: [ '2013 TP4
Radius: 9 meters
Velocity: 25.19 km/s' ], - marker: - { color: 'rgb(255,175,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2016654501772 ], - y: [ 85.14414085909269 ], - name: '', - text: [ '2012 EN5
Radius: 9 meters
Velocity: 9.89 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2089.7630297431688 ], - y: [ 153.1278493661391 ], - name: '', - text: [ '2005 TC51
Radius: 9 meters
Velocity: 9.36 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7686959232394 ], - y: [ 53.0478035699271 ], - name: '', - text: [ '2009 TU
Radius: 9 meters
Velocity: 15.25 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9427755728905 ], - y: [ 70.93171179518697 ], - name: '', - text: [ '2013 XT21
Radius: 9 meters
Velocity: 13.55 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7416594437602 ], - y: [ 269.3409378527099 ], - name: '', - text: [ '2008 TE2
Radius: 9 meters
Velocity: 4.74 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2002.097898894515 ], - y: [ 156.64317768759483 ], - name: '', - text: [ '2002 CA26
Radius: 9 meters
Velocity: 15.27 km/s' ], - marker: - { color: 'rgb(255,5,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2233550780834 ], - y: [ 48.5438244603551 ], - name: '', - text: [ '2008 FK
Radius: 9 meters
Velocity: 13.33 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.864032586713 ], - y: [ 31.838475292927512 ], - name: '', - text: [ '2012 VH77
Radius: 9 meters
Velocity: 11.28 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.7858332192875 ], - y: [ 91.36226630045239 ], - name: '', - text: [ '2005 TC51
Radius: 9 meters
Velocity: 9.25 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0593266730532 ], - y: [ 149.87296674546022 ], - name: '', - text: [ '2009 BF58
Radius: 9 meters
Velocity: 6.93 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.212509313748 ], - y: [ 225.13363827007225 ], - name: '', - text: [ '2012 FM35
Radius: 9 meters
Velocity: 3.17 km/s' ], - marker: - { color: 'rgb(49,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2060.0351299362865 ], - y: [ 133.02562965985706 ], - name: '', - text: [ '2006 YE
Radius: 9 meters
Velocity: 6.22 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2067.7000041816827 ], - y: [ 229.77835672753164 ], - name: '', - text: [ '2012 FM35
Radius: 9 meters
Velocity: 3.28 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.6469709411067 ], - y: [ 214.65088474455766 ], - name: '', - text: [ '2012 QH14
Radius: 9 meters
Velocity: 10.82 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.5113589708499 ], - y: [ 125.43891424659517 ], - name: '', - text: [ '2013 NE24
Radius: 9 meters
Velocity: 11.76 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6885520733542 ], - y: [ 97.87888448703572 ], - name: '', - text: [ '2013 RS73
Radius: 9 meters
Velocity: 14.81 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2526553685202 ], - y: [ 122.6844491350447 ], - name: '', - text: [ '2010 GH7
Radius: 9 meters
Velocity: 5.3 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0532157140033 ], - y: [ 279.24134337627584 ], - name: '', - text: [ '2013 BT15
Radius: 9 meters
Velocity: 6.97 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7914860940043 ], - y: [ 61.06530391715351 ], - name: '', - text: [ '2007 UO6
Radius: 9 meters
Velocity: 11.96 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0246301111567 ], - y: [ 113.0869430206283 ], - name: '', - text: [ '2013 AG69
Radius: 9 meters
Velocity: 17.31 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.5686784362026 ], - y: [ 176.0995763879778 ], - name: '', - text: [ '2008 OY2
Radius: 9 meters
Velocity: 9.59 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.066534373432 ], - y: [ 237.99062531874105 ], - name: '', - text: [ '2014 BP8
Radius: 9 meters
Velocity: 9.34 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.8709635899560806, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1741632833052 ], - y: [ 112.16614820629331 ], - name: '', - text: [ '2011 EO11
Radius: 8 meters
Velocity: 11.57 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.5122523303378 ], - y: [ 239.77947174370746 ], - name: '', - text: [ '2013 NJ4
Radius: 8 meters
Velocity: 5.4 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8187943828596 ], - y: [ 156.64583919673547 ], - name: '', - text: [ '2010 UR7
Radius: 8 meters
Velocity: 13.38 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7402699846418 ], - y: [ 139.7906039081611 ], - name: '', - text: [ '2013 SK20
Radius: 8 meters
Velocity: 11.29 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7839077444764 ], - y: [ 142.31911707792682 ], - name: '', - text: [ '2010 UC
Radius: 8 meters
Velocity: 2.91 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6404722260238 ], - y: [ 75.91917387840827 ], - name: '', - text: [ '2013 QM48
Radius: 8 meters
Velocity: 7.66 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8208224989735 ], - y: [ 28.532566483090225 ], - name: '', - text: [ '2011 UX255
Radius: 8 meters
Velocity: 26.97 km/s' ], - marker: - { color: 'rgb(255,207,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8362358012864 ], - y: [ 90.71391340909062 ], - name: '', - text: [ '2008 UT95
Radius: 8 meters
Velocity: 14.51 km/s' ], - marker: - { color: 'rgb(246,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7449458662165 ], - y: [ 45.13170609216524 ], - name: '', - text: [ '2010 SK13
Radius: 8 meters
Velocity: 18.63 km/s' ], - marker: - { color: 'rgb(255,62,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8386915894955 ], - y: [ 80.10517916932955 ], - name: '', - text: [ '2013 VN5
Radius: 8 meters
Velocity: 9.97 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.044624256801 ], - y: [ 148.2046713577295 ], - name: '', - text: [ '2009 BS5
Radius: 8 meters
Velocity: 5.86 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2077.2885684199323 ], - y: [ 307.1530952291359 ], - name: '', - text: [ '2014 AD16
Radius: 8 meters
Velocity: 8.05 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.02084758907 ], - y: [ 248.73803806783897 ], - name: '', - text: [ '2014 AE29
Radius: 8 meters
Velocity: 4.92 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0240560801667 ], - y: [ 225.3040208459298 ], - name: '', - text: [ '2009 BS5
Radius: 8 meters
Velocity: 5.53 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0361050286635 ], - y: [ 261.34015502232825 ], - name: '', - text: [ '2012 BK14
Radius: 8 meters
Velocity: 5.47 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.6337017015646 ], - y: [ 207.5616972913397 ], - name: '', - text: [ '2009 QR
Radius: 8 meters
Velocity: 5.29 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.887104070678 ], - y: [ 123.80403512179106 ], - name: '', - text: [ '2011 WQ4
Radius: 8 meters
Velocity: 7.57 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.017884296641 ], - y: [ 92.27458274822636 ], - name: '', - text: [ '2014 AD16
Radius: 8 meters
Velocity: 8.31 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8600751942581 ], - y: [ 87.45576739617835 ], - name: '', - text: [ '2013 VD17
Radius: 8 meters
Velocity: 11.93 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8838100451621 ], - y: [ 178.0376711603989 ], - name: '', - text: [ '2013 WZ107
Radius: 8 meters
Velocity: 6.7 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2001.8882103158312 ], - y: [ 128.3229060683834 ], - name: '', - text: [ '2001 WJ4
Radius: 8 meters
Velocity: 5.37 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8849448017882 ], - y: [ 34.99358886315353 ], - name: '', - text: [ '2009 WJ6
Radius: 8 meters
Velocity: 18.24 km/s' ], - marker: - { color: 'rgb(255,54,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2063.8727742043397 ], - y: [ 235.62963260798222 ], - name: '', - text: [ '2009 WJ6
Radius: 8 meters
Velocity: 17.82 km/s' ], - marker: - { color: 'rgb(255,49,0)', - size: 2.831763771102672, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8273212140566 ], - y: [ 33.69904375310276 ], - name: '', - text: [ '2005 UW5
Radius: 8 meters
Velocity: 9.78 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.3275854203732 ], - y: [ 203.41132070547383 ], - name: '', - text: [ '2011 HP4
Radius: 8 meters
Velocity: 14.41 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7413001992002 ], - y: [ 167.4267045200725 ], - name: '', - text: [ '2008 TL
Radius: 8 meters
Velocity: 11.5 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2076.8084580235086 ], - y: [ 88.57028412578764 ], - name: '', - text: [ '2005 UW5
Radius: 8 meters
Velocity: 9.72 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.024641515746 ], - y: [ 33.15455048015293 ], - name: '', - text: [ '2014 AW32
Radius: 8 meters
Velocity: 12.37 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2081.007730410717 ], - y: [ 280.0787036437754 ], - name: '', - text: [ '2014 AW32
Radius: 8 meters
Velocity: 11.99 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.715470705412 ], - y: [ 108.90930298723583 ], - name: '', - text: [ '2012 SW2
Radius: 8 meters
Velocity: 16.17 km/s' ], - marker: - { color: 'rgb(255,20,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0734075391938 ], - y: [ 198.2630802933166 ], - name: '', - text: [ '2014 BK25
Radius: 8 meters
Velocity: 11.93 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.3062778462054 ], - y: [ 84.32409663511224 ], - name: '', - text: [ '2009 HJ21
Radius: 8 meters
Velocity: 20.37 km/s' ], - marker: - { color: 'rgb(255,94,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2939855998054 ], - y: [ 42.20062516924894 ], - name: '', - text: [ '2010 HP20
Radius: 8 meters
Velocity: 11.18 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1034263187507 ], - y: [ 97.13997644829934 ], - name: '', - text: [ '2007 DC
Radius: 8 meters
Velocity: 6.83 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.744362331402 ], - y: [ 228.54677276550328 ], - name: '', - text: [ '2010 TN4
Radius: 8 meters
Velocity: 7.67 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.0346927603669 ], - y: [ 47.87044185627227 ], - name: '', - text: [ '2005 BS1
Radius: 8 meters
Velocity: 12.5 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2103.161418654867 ], - y: [ 249.8492832372842 ], - name: '', - text: [ '2012 DH54
Radius: 8 meters
Velocity: 4.91 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1890082569225 ], - y: [ 39.38851616080155 ], - name: '', - text: [ '2008 EM68
Radius: 8 meters
Velocity: 18.8 km/s' ], - marker: - { color: 'rgb(255,65,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1866113924243 ], - y: [ 204.80515574424422 ], - name: '', - text: [ '2012 DH54
Radius: 8 meters
Velocity: 4.79 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7498859541079 ], - y: [ 301.0182829686233 ], - name: '', - text: [ '2013 TQ4
Radius: 8 meters
Velocity: 6.27 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7462687985646 ], - y: [ 213.99498734029748 ], - name: '', - text: [ '2003 SM215
Radius: 8 meters
Velocity: 10.71 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2283217766828 ], - y: [ 200.497699066975 ], - name: '', - text: [ '2007 FR3
Radius: 8 meters
Velocity: 10.5 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 2.7943282347242815, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2020.9779036084121 ], - y: [ 221.4729240057445 ], - name: '', - text: [ '2011 CL50
Radius: 8 meters
Velocity: 3.3 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2077.0501934978633 ], - y: [ 151.78860214304504 ], - name: '', - text: [ '2012 BX34
Radius: 8 meters
Velocity: 9.24 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2710262609673 ], - y: [ 101.92531856754142 ], - name: '', - text: [ '2008 GY21
Radius: 8 meters
Velocity: 11.27 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.05757606861 ], - y: [ 81.89353737860195 ], - name: '', - text: [ '2006 BA
Radius: 8 meters
Velocity: 6.47 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.3004082842936 ], - y: [ 99.18675834785188 ], - name: '', - text: [ '2011 HN24
Radius: 8 meters
Velocity: 6.27 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.2571791889056 ], - y: [ 130.15883233521998 ], - name: '', - text: [ '2010 GV23
Radius: 8 meters
Velocity: 5.66 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2081.9343000623453 ], - y: [ 208.85112705059564 ], - name: '', - text: [ '2012 XP134
Radius: 8 meters
Velocity: 8.97 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1449029089306 ], - y: [ 231.70774710902842 ], - name: '', - text: [ '2009 DC45
Radius: 8 meters
Velocity: 8.41 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2129.8142952724174 ], - y: [ 239.40030462398417 ], - name: '', - text: [ '2012 VR76
Radius: 8 meters
Velocity: 4.61 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1600406003377 ], - y: [ 126.92724735257914 ], - name: '', - text: [ '2014 EU
Radius: 8 meters
Velocity: 5.91 km/s' ], - marker: - { color: 'rgb(97,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2146.0337195687543 ], - y: [ 110.62282788914452 ], - name: '', - text: [ '2012 BX34
Radius: 8 meters
Velocity: 9.46 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2057.2306007937595 ], - y: [ 290.7851647302496 ], - name: '', - text: [ '2010 TW54
Radius: 8 meters
Velocity: 7.52 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.831035308608 ], - y: [ 283.50285234969556 ], - name: '', - text: [ '2010 UM7
Radius: 8 meters
Velocity: 13.13 km/s' ], - marker: - { color: 'rgb(223,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.848244833721 ], - y: [ 276.7958307834796 ], - name: '', - text: [ '2012 VR76
Radius: 8 meters
Velocity: 4.59 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7678329759894 ], - y: [ 25.39477697474475 ], - name: '', - text: [ '2010 TW54
Radius: 8 meters
Velocity: 8.07 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2545371257395 ], - y: [ 184.70578135573504 ], - name: '', - text: [ '2013 GA55
Radius: 8 meters
Velocity: 9.59 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.026133616167 ], - y: [ 96.64026115599614 ], - name: '', - text: [ '2013 AB65
Radius: 8 meters
Velocity: 24.31 km/s' ], - marker: - { color: 'rgb(255,162,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9159234676033 ], - y: [ 141.12999078076106 ], - name: '', - text: [ '2011 WV74
Radius: 8 meters
Velocity: 18.25 km/s' ], - marker: - { color: 'rgb(255,57,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.1878145765857 ], - y: [ 32.43507010205474 ], - name: '', - text: [ '2007 EH
Radius: 8 meters
Velocity: 17.4 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.229083983395 ], - y: [ 189.69691967952502 ], - name: '', - text: [ '2012 FU23
Radius: 8 meters
Velocity: 18.32 km/s' ], - marker: - { color: 'rgb(255,57,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2018.2669035019692 ], - y: [ 167.38302588696504 ], - name: '', - text: [ '2008 GY21
Radius: 8 meters
Velocity: 10.92 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9536156349316 ], - y: [ 77.9674395890068 ], - name: '', - text: [ '2012 XP134
Radius: 8 meters
Velocity: 8.84 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7392245639646 ], - y: [ 72.96081636522968 ], - name: '', - text: [ '2009 SN103
Radius: 8 meters
Velocity: 5.62 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.6645568176634 ], - y: [ 29.766803488488065 ], - name: '', - text: [ '2006 QM111
Radius: 8 meters
Velocity: 18.97 km/s' ], - marker: - { color: 'rgb(255,68,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7823282088711 ], - y: [ 106.2139406157917 ], - name: '', - text: [ '2012 TQ231
Radius: 8 meters
Velocity: 13.94 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.069638322461 ], - y: [ 14.285521474895983 ], - name: '', - text: [ '2012 BX34
Radius: 8 meters
Velocity: 9.99 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.7585775750291828, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.6655528184542 ], - y: [ 177.1195105286746 ], - name: '', - text: [ '2005 QP87
Radius: 7 meters
Velocity: 2.73 km/s' ], - marker: - { color: 'rgb(42,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.902184739139 ], - y: [ 229.5126243449485 ], - name: '', - text: [ '2005 WM3
Radius: 7 meters
Velocity: 8.0 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2069.079039505497 ], - y: [ 230.48416154232493 ], - name: '', - text: [ '2008 CT1
Radius: 7 meters
Velocity: 14.07 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9477460730197 ], - y: [ 278.79682986667524 ], - name: '', - text: [ '2012 XN134
Radius: 7 meters
Velocity: 7.11 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2218059547163 ], - y: [ 93.33425854745873 ], - name: '', - text: [ '2011 FQ6
Radius: 7 meters
Velocity: 10.4 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.2459247601234 ], - y: [ 74.12207505014695 ], - name: '', - text: [ '2009 FP32
Radius: 7 meters
Velocity: 15.02 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1384346060854 ], - y: [ 48.179455343829034 ], - name: '', - text: [ '2014 DK10
Radius: 7 meters
Velocity: 12.01 km/s' ], - marker: - { color: 'rgb(202,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8675204902452 ], - y: [ 278.18132742916913 ], - name: '', - text: [ '2010 WC1
Radius: 7 meters
Velocity: 4.05 km/s' ], - marker: - { color: 'rgb(65,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.033653041984 ], - y: [ 219.34154393627057 ], - name: '', - text: [ '2012 BU1
Radius: 7 meters
Velocity: 9.28 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2026.9397818682237 ], - y: [ 257.01383538773376 ], - name: '', - text: [ '2010 VQ
Radius: 7 meters
Velocity: 4.33 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1498905159435 ], - y: [ 163.9238631896531 ], - name: '', - text: [ '2012 CS46
Radius: 7 meters
Velocity: 7.25 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.6977935921416 ], - y: [ 186.07159225295277 ], - name: '', - text: [ '2012 SB3
Radius: 7 meters
Velocity: 8.28 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.759114167541 ], - y: [ 46.050934056810014 ], - name: '', - text: [ '2009 TD17
Radius: 7 meters
Velocity: 6.83 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8246069218253 ], - y: [ 108.14147909280572 ], - name: '', - text: [ '2013 VL
Radius: 7 meters
Velocity: 9.33 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2039.9923836351747 ], - y: [ 291.1060520095224 ], - name: '', - text: [ '2010 JR34
Radius: 7 meters
Velocity: 4.57 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7321670240106 ], - y: [ 186.30989576243817 ], - name: '', - text: [ '2008 TE
Radius: 7 meters
Velocity: 12.07 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.0944147925125 ], - y: [ 20.972397202453266 ], - name: '', - text: [ '2008 CT1
Radius: 7 meters
Velocity: 13.96 km/s' ], - marker: - { color: 'rgb(236,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.088972902696 ], - y: [ 102.56785295632675 ], - name: '', - text: [ '2008 EA9
Radius: 7 meters
Velocity: 1.59 km/s' ], - marker: - { color: 'rgb(21,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.3419171874762 ], - y: [ 250.29631051823554 ], - name: '', - text: [ '2013 JV17
Radius: 7 meters
Velocity: 8.69 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 2.72443596007499, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9537562915318 ], - y: [ 45.656381182775725 ], - name: '', - text: [ '2012 XL134
Radius: 7 meters
Velocity: 10.04 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7515415203077 ], - y: [ 190.27597907863165 ], - name: '', - text: [ '2012 TP20
Radius: 7 meters
Velocity: 7.55 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.5624325228473 ], - y: [ 84.87636052782631 ], - name: '', - text: [ '2013 PG10
Radius: 7 meters
Velocity: 7.05 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0394940924227 ], - y: [ 40.64825806121305 ], - name: '', - text: [ '2013 BR27
Radius: 7 meters
Velocity: 11.16 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.169063531165 ], - y: [ 66.0145885161951 ], - name: '', - text: [ '2013 EC
Radius: 7 meters
Velocity: 20.17 km/s' ], - marker: - { color: 'rgb(255,89,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1361631920686 ], - y: [ 20.363807498371564 ], - name: '', - text: [ '2012 DY13
Radius: 7 meters
Velocity: 17.2 km/s' ], - marker: - { color: 'rgb(255,39,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.3104025059683 ], - y: [ 41.85572797340757 ], - name: '', - text: [ '2007 HB15
Radius: 7 meters
Velocity: 6.65 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7441095296747 ], - y: [ 51.9556039887649 ], - name: '', - text: [ '2011 SM173
Radius: 7 meters
Velocity: 12.71 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.4314926326354 ], - y: [ 22.89882651181951 ], - name: '', - text: [ '2013 LR6
Radius: 7 meters
Velocity: 9.88 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.734271170719 ], - y: [ 38.68859923938962 ], - name: '', - text: [ '2011 SE58
Radius: 7 meters
Velocity: 15.85 km/s' ], - marker: - { color: 'rgb(255,15,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.2477038760396 ], - y: [ 159.90563313483776 ], - name: '', - text: [ '2006 GU2
Radius: 7 meters
Velocity: 7.43 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.646450131533 ], - y: [ 70.83481718861388 ], - name: '', - text: [ '2013 QP48
Radius: 7 meters
Velocity: 8.74 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.089088849353 ], - y: [ 34.221237704381736 ], - name: '', - text: [ '2009 CC2
Radius: 7 meters
Velocity: 19.88 km/s' ], - marker: - { color: 'rgb(255,83,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2050.7559722032147 ], - y: [ 295.0233222285887 ], - name: '', - text: [ '2006 GU2
Radius: 7 meters
Velocity: 7.69 km/s' ], - marker: - { color: 'rgb(128,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8578398947736 ], - y: [ 182.54359637079008 ], - name: '', - text: [ '2007 VX83
Radius: 7 meters
Velocity: 13.33 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.754928683302 ], - y: [ 40.74771674512069 ], - name: '', - text: [ '2008 TN9
Radius: 7 meters
Velocity: 9.07 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.049798138771 ], - y: [ 64.00342606381145 ], - name: '', - text: [ '2007 BB
Radius: 7 meters
Velocity: 4.7 km/s' ], - marker: - { color: 'rgb(76,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.8844620075117 ], - y: [ 57.366983897043475 ], - name: '', - text: [ '2006 WX29
Radius: 7 meters
Velocity: 21.19 km/s' ], - marker: - { color: 'rgb(255,107,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8244757690495 ], - y: [ 151.12847546855417 ], - name: '', - text: [ '2008 VL
Radius: 7 meters
Velocity: 10.6 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 2.6918309709189363, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.372183066466 ], - y: [ 132.28738255568265 ], - name: '', - text: [ '2013 KA
Radius: 7 meters
Velocity: 5.18 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.8458992898743 ], - y: [ 128.07831123244614 ], - name: '', - text: [ '2005 VO
Radius: 7 meters
Velocity: 14.35 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1317325091618 ], - y: [ 80.04184926117874 ], - name: '', - text: [ '2013 CW129
Radius: 7 meters
Velocity: 16.65 km/s' ], - marker: - { color: 'rgb(255,28,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.9761986223257 ], - y: [ 181.08865977136296 ], - name: '', - text: [ '2012 XM55
Radius: 7 meters
Velocity: 2.87 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.08891587975 ], - y: [ 270.23352334203355 ], - name: '', - text: [ '2009 BG81
Radius: 7 meters
Velocity: 7.61 km/s' ], - marker: - { color: 'rgb(126,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.6462372458677 ], - y: [ 155.66042165774698 ], - name: '', - text: [ '2004 QA22
Radius: 7 meters
Velocity: 3.47 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1809433115886 ], - y: [ 98.73379987451122 ], - name: '', - text: [ '2009 EH1
Radius: 7 meters
Velocity: 10.67 km/s' ], - marker: - { color: 'rgb(178,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1656383528732 ], - y: [ 41.171304687676596 ], - name: '', - text: [ '2011 EN11
Radius: 7 meters
Velocity: 11.21 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2300362665937 ], - y: [ 25.691992972363085 ], - name: '', - text: [ '2012 FP35
Radius: 7 meters
Velocity: 14.18 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6773736751668 ], - y: [ 109.11890107336536 ], - name: '', - text: [ '2010 RM80
Radius: 7 meters
Velocity: 5.6 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6856401015768 ], - y: [ 14.033533692263338 ], - name: '', - text: [ '2010 RK53
Radius: 7 meters
Velocity: 8.81 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2050.83740477168 ], - y: [ 269.25813244676107 ], - name: '', - text: [ '2013 VJ11
Radius: 7 meters
Velocity: 8.78 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8087906573605 ], - y: [ 79.37531976935433 ], - name: '', - text: [ '2011 UC64
Radius: 7 meters
Velocity: 14.02 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8651749463984 ], - y: [ 52.56339090327363 ], - name: '', - text: [ '2010 VC140
Radius: 7 meters
Velocity: 4.83 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2108.9326711068534 ], - y: [ 255.15788211000324 ], - name: '', - text: [ '2004 QA22
Radius: 7 meters
Velocity: 3.69 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7364798594954 ], - y: [ 73.16971900092348 ], - name: '', - text: [ '2011 SC108
Radius: 7 meters
Velocity: 20.67 km/s' ], - marker: - { color: 'rgb(255,99,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1281115520885 ], - y: [ 55.35372419160203 ], - name: '', - text: [ '2010 CK19
Radius: 7 meters
Velocity: 5.3 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2095.2091354561076 ], - y: [ 102.27890838404232 ], - name: '', - text: [ '2012 FP35
Radius: 7 meters
Velocity: 14.04 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.8282373827228 ], - y: [ 47.29513640746991 ], - name: '', - text: [ '2006 UJ185
Radius: 7 meters
Velocity: 15.59 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8029838206894 ], - y: [ 44.830448065418615 ], - name: '', - text: [ '2013 UR1
Radius: 7 meters
Velocity: 21.86 km/s' ], - marker: - { color: 'rgb(255,117,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8515844775939 ], - y: [ 58.30243646441496 ], - name: '', - text: [ '2013 VJ11
Radius: 7 meters
Velocity: 9.27 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 2.6606934480075966, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9804316256862 ], - y: [ 263.95981174808986 ], - name: '', - text: [ '2009 YR
Radius: 6 meters
Velocity: 2.86 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2086.4391907303498 ], - y: [ 100.45220404337043 ], - name: '', - text: [ '2011 MD
Radius: 6 meters
Velocity: 1.84 km/s' ], - marker: - { color: 'rgb(26,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.7670821738668 ], - y: [ 301.5539924532822 ], - name: '', - text: [ '2005 TH50
Radius: 6 meters
Velocity: 4.51 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.7284966470509 ], - y: [ 74.90642113041189 ], - name: '', - text: [ '2006 SR131
Radius: 6 meters
Velocity: 8.64 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.802001125253 ], - y: [ 25.734873247485012 ], - name: '', - text: [ '2006 UE64
Radius: 6 meters
Velocity: 11.81 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7898172224502 ], - y: [ 63.64354926898881 ], - name: '', - text: [ '2010 TE55
Radius: 6 meters
Velocity: 3.4 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.720226419111 ], - y: [ 268.18072049111356 ], - name: '', - text: [ '2009 SC170
Radius: 6 meters
Velocity: 5.63 km/s' ], - marker: - { color: 'rgb(91,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.1475297659779 ], - y: [ 84.40727567274136 ], - name: '', - text: [ '2004 DA53
Radius: 6 meters
Velocity: 9.38 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2013385186199 ], - y: [ 89.53970565152747 ], - name: '', - text: [ '2013 ED68
Radius: 6 meters
Velocity: 6.65 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2118.7522238948955 ], - y: [ 75.81047087081369 ], - name: '', - text: [ '2010 TE55
Radius: 6 meters
Velocity: 3.41 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1787897449933 ], - y: [ 38.72589089808399 ], - name: '', - text: [ '2011 EM40
Radius: 6 meters
Velocity: 10.79 km/s' ], - marker: - { color: 'rgb(181,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.1167164667063 ], - y: [ 115.12608649622526 ], - name: '', - text: [ '2010 CS19
Radius: 6 meters
Velocity: 6.96 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.2835370953271 ], - y: [ 247.02263075719392 ], - name: '', - text: [ '2013 GH66
Radius: 6 meters
Velocity: 2.21 km/s' ], - marker: - { color: 'rgb(31,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.4840810942324 ], - y: [ 4.270121626766503 ], - name: '', - text: [ '2011 MD
Radius: 6 meters
Velocity: 6.7 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8302597965421 ], - y: [ 97.85643742912248 ], - name: '', - text: [ '2009 UW87
Radius: 6 meters
Velocity: 10.88 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.9134942901023 ], - y: [ 113.4598420797561 ], - name: '', - text: [ '2003 WT153
Radius: 6 meters
Velocity: 4.4 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 2.6309573444801932, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.3378970697809 ], - y: [ 163.73292227864516 ], - name: '', - text: [ '2010 JW34
Radius: 6 meters
Velocity: 1.74 km/s' ], - marker: - { color: 'rgb(23,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7772968842662 ], - y: [ 45.43528875245971 ], - name: '', - text: [ '2003 UM3
Radius: 6 meters
Velocity: 12.8 km/s' ], - marker: - { color: 'rgb(217,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.6853264753736 ], - y: [ 14.582038356323453 ], - name: '', - text: [ '2010 RF12
Radius: 6 meters
Velocity: 6.0 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9029412435564 ], - y: [ 199.5913451281407 ], - name: '', - text: [ '2009 WQ52
Radius: 6 meters
Velocity: 13.36 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2582569225856 ], - y: [ 31.49966968235405 ], - name: '', - text: [ '2011 GW9
Radius: 6 meters
Velocity: 11.36 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.4138117178352 ], - y: [ 54.76822715013657 ], - name: '', - text: [ '2009 BD
Radius: 6 meters
Velocity: 1.91 km/s' ], - marker: - { color: 'rgb(26,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.8138238827305 ], - y: [ 53.66984351473273 ], - name: '', - text: [ '2004 UH1
Radius: 6 meters
Velocity: 11.75 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2095.65346965619 ], - y: [ 2.157024717702818 ], - name: '', - text: [ '2010 RF12
Radius: 6 meters
Velocity: 10.88 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.296390067363 ], - y: [ 43.66460954832992 ], - name: '', - text: [ '2012 HM13
Radius: 6 meters
Velocity: 13.05 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0727232638415 ], - y: [ 165.10014352379397 ], - name: '', - text: [ '2014 BM25
Radius: 6 meters
Velocity: 6.89 km/s' ], - marker: - { color: 'rgb(112,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2045.3156429147089 ], - y: [ 197.6821176961498 ], - name: '', - text: [ '2010 JW34
Radius: 6 meters
Velocity: 1.73 km/s' ], - marker: - { color: 'rgb(23,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8638748232288 ], - y: [ 45.50384040111246 ], - name: '', - text: [ '2009 VZ39
Radius: 6 meters
Velocity: 7.83 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.09610457248 ], - y: [ 22.02069811636507 ], - name: '', - text: [ '2013 CY32
Radius: 6 meters
Velocity: 32.21 km/s' ], - marker: - { color: 'rgb(255,255,65)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1219739823305 ], - y: [ 151.70376124315328 ], - name: '', - text: [ '2008 CM74
Radius: 6 meters
Velocity: 4.34 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.124827030397 ], - y: [ 106.91162888665805 ], - name: '', - text: [ '2013 DP1
Radius: 6 meters
Velocity: 14.45 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.0660135638582 ], - y: [ 109.39685678425224 ], - name: '', - text: [ '2009 BD
Radius: 6 meters
Velocity: 1.49 km/s' ], - marker: - { color: 'rgb(21,0,0)', - size: 2.6025595860743573, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8435404406732 ], - y: [ 119.12720179353714 ], - name: '', - text: [ '2010 VQ98
Radius: 6 meters
Velocity: 1.35 km/s' ], - marker: - { color: 'rgb(18,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.4216960905069 ], - y: [ 201.2990941996229 ], - name: '', - text: [ '2008 KT
Radius: 6 meters
Velocity: 2.94 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.21966759424 ], - y: [ 93.9675625334747 ], - name: '', - text: [ '2011 FQ21
Radius: 6 meters
Velocity: 7.49 km/s' ], - marker: - { color: 'rgb(123,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8411834922372 ], - y: [ 80.78031067974544 ], - name: '', - text: [ '2008 VB4
Radius: 6 meters
Velocity: 12.27 km/s' ], - marker: - { color: 'rgb(207,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3181937411614 ], - y: [ 151.6486349289921 ], - name: '', - text: [ '2008 HU4
Radius: 6 meters
Velocity: 1.47 km/s' ], - marker: - { color: 'rgb(21,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2016.2872835028816 ], - y: [ 299.9208393372489 ], - name: '', - text: [ '2008 HU4
Radius: 6 meters
Velocity: 1.44 km/s' ], - marker: - { color: 'rgb(18,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0487850310965 ], - y: [ 73.09119401052843 ], - name: '', - text: [ '2012 BL14
Radius: 6 meters
Velocity: 19.91 km/s' ], - marker: - { color: 'rgb(255,86,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1751402764473 ], - y: [ 16.670543621426194 ], - name: '', - text: [ '2014 EC
Radius: 6 meters
Velocity: 16.01 km/s' ], - marker: - { color: 'rgb(255,18,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.8746179462617 ], - y: [ 51.610513665895674 ], - name: '', - text: [ '2006 WP1
Radius: 6 meters
Velocity: 18.01 km/s' ], - marker: - { color: 'rgb(255,52,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8000186274958 ], - y: [ 235.07722105653485 ], - name: '', - text: [ '2013 UJ5
Radius: 6 meters
Velocity: 10.88 km/s' ], - marker: - { color: 'rgb(183,0,0)', - size: 2.5754399373371575, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.2651471952313 ], - y: [ 50.2925851425896 ], - name: '', - text: [ '2008 GF1
Radius: 5 meters
Velocity: 14.62 km/s' ], - marker: - { color: 'rgb(249,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0641127989902 ], - y: [ 19.8787529224047 ], - name: '', - text: [ '2011 BW11
Radius: 5 meters
Velocity: 23.95 km/s' ], - marker: - { color: 'rgb(255,154,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2048.7837518817573 ], - y: [ 19.71304722189434 ], - name: '', - text: [ '2007 UD6
Radius: 5 meters
Velocity: 6.61 km/s' ], - marker: - { color: 'rgb(110,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.254843148883 ], - y: [ 30.62867796321769 ], - name: '', - text: [ '2008 GM2
Radius: 5 meters
Velocity: 5.02 km/s' ], - marker: - { color: 'rgb(81,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8760245122637 ], - y: [ 210.01649733703542 ], - name: '', - text: [ '2009 WR52
Radius: 5 meters
Velocity: 5.47 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.2669092042638 ], - y: [ 167.58108503337647 ], - name: '', - text: [ '2008 GF1
Radius: 5 meters
Velocity: 14.4 km/s' ], - marker: - { color: 'rgb(244,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8689878807231 ], - y: [ 163.88400183971063 ], - name: '', - text: [ '2010 UE51
Radius: 5 meters
Velocity: 1.17 km/s' ], - marker: - { color: 'rgb(15,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.8136186001248 ], - y: [ 44.27648161999354 ], - name: '', - text: [ '2011 UL169
Radius: 5 meters
Velocity: 9.54 km/s' ], - marker: - { color: 'rgb(160,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2035.2459152562992 ], - y: [ 128.02228138055196 ], - name: '', - text: [ '2008 GM2
Radius: 5 meters
Velocity: 4.84 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2032.8725328072017 ], - y: [ 286.0959769771197 ], - name: '', - text: [ '2013 CY
Radius: 5 meters
Velocity: 2.47 km/s' ], - marker: - { color: 'rgb(36,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8355097091069 ], - y: [ 19.70833783301873 ], - name: '', - text: [ '2010 VN1
Radius: 5 meters
Velocity: 11.28 km/s' ], - marker: - { color: 'rgb(189,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7947402034579 ], - y: [ 33.81845992600194 ], - name: '', - text: [ '2007 UD6
Radius: 5 meters
Velocity: 6.36 km/s' ], - marker: - { color: 'rgb(105,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2028.3774633912687 ], - y: [ 38.23761673588294 ], - name: '', - text: [ '2009 WR52
Radius: 5 meters
Velocity: 5.73 km/s' ], - marker: - { color: 'rgb(94,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.212997810319 ], - y: [ 61.82357094774377 ], - name: '', - text: [ '2009 FK
Radius: 5 meters
Velocity: 7.28 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2021.391445417636 ], - y: [ 208.70164649158355 ], - name: '', - text: [ '2013 VO11
Radius: 5 meters
Velocity: 10.19 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.8668115049495 ], - y: [ 37.99374799734365 ], - name: '', - text: [ '2007 VF189
Radius: 5 meters
Velocity: 11.61 km/s' ], - marker: - { color: 'rgb(196,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8494727278257 ], - y: [ 111.82434374565244 ], - name: '', - text: [ '2013 VO11
Radius: 5 meters
Velocity: 10.32 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2089.9132205799615 ], - y: [ 251.81087522062396 ], - name: '', - text: [ '2010 UE51
Radius: 5 meters
Velocity: 1.01 km/s' ], - marker: - { color: 'rgb(10,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3622705776804 ], - y: [ 32.051966252363044 ], - name: '', - text: [ '2012 JU
Radius: 5 meters
Velocity: 13.38 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2080.8482980551375 ], - y: [ 23.189533735330883 ], - name: '', - text: [ '2007 VF189
Radius: 5 meters
Velocity: 11.81 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.0730977145204 ], - y: [ 57.92990330894876 ], - name: '', - text: [ '2013 CY
Radius: 5 meters
Velocity: 2.93 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 2.5495408738576244, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.5018855587489 ], - y: [ 84.99875556962249 ], - name: '', - text: [ '2010 NN
Radius: 5 meters
Velocity: 7.83 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7773025865608 ], - y: [ 28.447878417835835 ], - name: '', - text: [ '2007 TX22
Radius: 5 meters
Velocity: 9.24 km/s' ], - marker: - { color: 'rgb(154,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.1578566215044 ], - y: [ 14.642136789082116 ], - name: '', - text: [ '2009 EJ1
Radius: 5 meters
Velocity: 11.47 km/s' ], - marker: - { color: 'rgb(194,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2088.6550681994436 ], - y: [ 245.0914380206737 ], - name: '', - text: [ '2013 RZ5
Radius: 5 meters
Velocity: 16.84 km/s' ], - marker: - { color: 'rgb(255,31,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1837108252362 ], - y: [ 95.653498078414 ], - name: '', - text: [ '2011 EV73
Radius: 5 meters
Velocity: 5.48 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.263413697672 ], - y: [ 83.22686008642506 ], - name: '', - text: [ '2013 GW38
Radius: 5 meters
Velocity: 10.52 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1121793409668 ], - y: [ 47.52148782281821 ], - name: '', - text: [ '2013 CL129
Radius: 5 meters
Velocity: 6.07 km/s' ], - marker: - { color: 'rgb(99,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2074.3157493575413 ], - y: [ 261.55204498005054 ], - name: '', - text: [ '2006 JY26
Radius: 5 meters
Velocity: 3.38 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8520919818134 ], - y: [ 200.6693098412787 ], - name: '', - text: [ '2012 VE26
Radius: 5 meters
Velocity: 18.75 km/s' ], - marker: - { color: 'rgb(255,65,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7910261089062 ], - y: [ 58.979221825590834 ], - name: '', - text: [ '2009 TM8
Radius: 5 meters
Velocity: 8.14 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8553879080941 ], - y: [ 161.18521699884226 ], - name: '', - text: [ '2010 VL65
Radius: 5 meters
Velocity: 4.37 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0593836959993 ], - y: [ 190.5333499045763 ], - name: '', - text: [ '2012 BS1
Radius: 5 meters
Velocity: 8.85 km/s' ], - marker: - { color: 'rgb(147,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2011617474873 ], - y: [ 210.82214741796355 ], - name: '', - text: [ '2007 FP3
Radius: 5 meters
Velocity: 9.92 km/s' ], - marker: - { color: 'rgb(165,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.7968728616395 ], - y: [ 121.07234418148735 ], - name: '', - text: [ '2012 UE
Radius: 5 meters
Velocity: 13.51 km/s' ], - marker: - { color: 'rgb(228,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6726198622325 ], - y: [ 69.20798032514087 ], - name: '', - text: [ '2013 RZ5
Radius: 5 meters
Velocity: 17.12 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6729372899654 ], - y: [ 51.658676368999 ], - name: '', - text: [ '2013 RO30
Radius: 5 meters
Velocity: 9.4 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.352833280112 ], - y: [ 72.03989629686333 ], - name: '', - text: [ '2006 JY26
Radius: 5 meters
Velocity: 3.21 km/s' ], - marker: - { color: 'rgb(49,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8508127670575 ], - y: [ 100.07577285202413 ], - name: '', - text: [ '2012 VE26
Radius: 5 meters
Velocity: 18.92 km/s' ], - marker: - { color: 'rgb(255,68,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.198532989675 ], - y: [ 270.28925497740556 ], - name: '', - text: [ '2008 EK85
Radius: 5 meters
Velocity: 5.24 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7899692836397 ], - y: [ 54.56612951093098 ], - name: '', - text: [ '2009 TM8
Radius: 5 meters
Velocity: 8.18 km/s' ], - marker: - { color: 'rgb(136,0,0)', - size: 2.5248074602497725, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.7794428478019 ], - y: [ 118.26942638957509 ], - name: '', - text: [ '2011 UD21
Radius: 5 meters
Velocity: 1.52 km/s' ], - marker: - { color: 'rgb(21,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.1521353192525 ], - y: [ 129.91320066083782 ], - name: '', - text: [ '2006 DO62
Radius: 5 meters
Velocity: 9.41 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8673266122287 ], - y: [ 41.939595591134896 ], - name: '', - text: [ '2012 VJ38
Radius: 5 meters
Velocity: 4.89 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8162473579368 ], - y: [ 40.61781817777204 ], - name: '', - text: [ '2010 UY7
Radius: 5 meters
Velocity: 4.26 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8876781016681 ], - y: [ 170.9927892067706 ], - name: '', - text: [ '2009 WD54
Radius: 5 meters
Velocity: 7.28 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.175978513754 ], - y: [ 20.748399183346415 ], - name: '', - text: [ '2011 EY11
Radius: 5 meters
Velocity: 11.86 km/s' ], - marker: - { color: 'rgb(199,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.755059836078 ], - y: [ 39.5692121141659 ], - name: '', - text: [ '2013 TR12
Radius: 5 meters
Velocity: 14.5 km/s' ], - marker: - { color: 'rgb(246,0,0)', - size: 2.501187233627272, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1409379134163 ], - y: [ 96.20403621517562 ], - name: '', - text: [ '2012 DJ54
Radius: 5 meters
Velocity: 5.45 km/s' ], - marker: - { color: 'rgb(89,0,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0441262564057 ], - y: [ 49.722541845376306 ], - name: '', - text: [ '2011 AN52
Radius: 5 meters
Velocity: 15.92 km/s' ], - marker: - { color: 'rgb(255,15,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0218873074525 ], - y: [ 80.20538622555051 ], - name: '', - text: [ '2011 AZ22
Radius: 5 meters
Velocity: 12.7 km/s' ], - marker: - { color: 'rgb(215,0,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2102.7815488952756 ], - y: [ 140.6366864667181 ], - name: '', - text: [ '2012 US18
Radius: 5 meters
Velocity: 10.12 km/s' ], - marker: - { color: 'rgb(170,0,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.805433906604 ], - y: [ 100.27344645452759 ], - name: '', - text: [ '2012 US18
Radius: 5 meters
Velocity: 10.0 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8478095585663 ], - y: [ 7.758788955604057 ], - name: '', - text: [ '2009 VA
Radius: 5 meters
Velocity: 10.3 km/s' ], - marker: - { color: 'rgb(173,0,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.3737968158387 ], - y: [ 41.8965372421572 ], - name: '', - text: [ '2012 KA
Radius: 5 meters
Velocity: 14.49 km/s' ], - marker: - { color: 'rgb(246,0,0)', - size: 2.478630092322638, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.7915507200098 ], - y: [ 17.880103481905987 ], - name: '', - text: [ '2007 UN12
Radius: 5 meters
Velocity: 3.73 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2955119139942 ], - y: [ 291.0764658465926 ], - name: '', - text: [ '2007 HV4
Radius: 5 meters
Velocity: 8.98 km/s' ], - marker: - { color: 'rgb(149,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8614399434332 ], - y: [ 143.25703707292027 ], - name: '', - text: [ '2012 VC26
Radius: 5 meters
Velocity: 5.35 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.846665298116 ], - y: [ 198.82251519399145 ], - name: '', - text: [ '2010 VO21
Radius: 5 meters
Velocity: 4.18 km/s' ], - marker: - { color: 'rgb(65,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.3044474096375 ], - y: [ 86.37404667444599 ], - name: '', - text: [ '2007 HV4
Radius: 5 meters
Velocity: 8.69 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.8743366330611 ], - y: [ 116.64281775727196 ], - name: '', - text: [ '2012 WR10
Radius: 5 meters
Velocity: 3.08 km/s' ], - marker: - { color: 'rgb(47,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.675862567097 ], - y: [ 25.767374831980778 ], - name: '', - text: [ '2013 RF32
Radius: 5 meters
Velocity: 19.85 km/s' ], - marker: - { color: 'rgb(255,83,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.247021501452 ], - y: [ 4.744166677078816 ], - name: '', - text: [ '2004 FU162
Radius: 5 meters
Velocity: 13.39 km/s' ], - marker: - { color: 'rgb(225,0,0)', - size: 2.457088189614875, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9993860529478 ], - y: [ 18.859959027894114 ], - name: '', - text: [ '2014 AF5
Radius: 4 meters
Velocity: 14.62 km/s' ], - marker: - { color: 'rgb(249,0,0)', - size: 2.4365158322401657, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1621504493407 ], - y: [ 38.60646276032403 ], - name: '', - text: [ '2012 EZ1
Radius: 4 meters
Velocity: 13.78 km/s' ], - marker: - { color: 'rgb(233,0,0)', - size: 2.4365158322401657, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.292940179128 ], - y: [ 7.861189403795049 ], - name: '', - text: [ '2013 HT25
Radius: 4 meters
Velocity: 29.78 km/s' ], - marker: - { color: 'rgb(255,255,2)', - size: 2.4365158322401657, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9261267734137 ], - y: [ 273.0996346447198 ], - name: '', - text: [ '2010 XC
Radius: 4 meters
Velocity: 5.37 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.4365158322401657, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.4142793059927 ], - y: [ 66.56476791741726 ], - name: '', - text: [ '2008 LD
Radius: 4 meters
Velocity: 4.33 km/s' ], - marker: - { color: 'rgb(68,0,0)', - size: 2.4168693834703356, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8770015054058 ], - y: [ 111.10093394442423 ], - name: '', - text: [ '2009 WW7
Radius: 4 meters
Velocity: 8.38 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 2.4168693834703356, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2443775375211 ], - y: [ 130.49493326056663 ], - name: '', - text: [ '2011 FA23
Radius: 4 meters
Velocity: 14.08 km/s' ], - marker: - { color: 'rgb(238,0,0)', - size: 2.4168693834703356, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.7772037467878 ], - y: [ 9.008720342726598 ], - name: '', - text: [ '2010 TD54
Radius: 4 meters
Velocity: 17.54 km/s' ], - marker: - { color: 'rgb(255,44,0)', - size: 2.4168693834703356, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.1730912519197 ], - y: [ 24.172908583209875 ], - name: '', - text: [ '2014 EF
Radius: 4 meters
Velocity: 15.09 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 2.398107170553497, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4053552149385 ], - y: [ 6.740489629183675 ], - name: '', - text: [ '2012 KT42
Radius: 4 meters
Velocity: 17.04 km/s' ], - marker: - { color: 'rgb(255,36,0)', - size: 2.398107170553497, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2000.4212456092332 ], - y: [ 82.43555737777284 ], - name: '', - text: [ '2000 LG6
Radius: 4 meters
Velocity: 2.45 km/s' ], - marker: - { color: 'rgb(36,0,0)', - size: 2.398107170553497, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7447709958487 ], - y: [ 256.24940647017036 ], - name: '', - text: [ '2008 TS10
Radius: 4 meters
Velocity: 3.58 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 2.398107170553497, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1821864118122 ], - y: [ 28.273281966704086 ], - name: '', - text: [ '2013 EC20
Radius: 4 meters
Velocity: 3.57 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 2.398107170553497, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9914997795113 ], - y: [ 41.00553278620199 ], - name: '', - text: [ '2011 YC63
Radius: 4 meters
Velocity: 18.8 km/s' ], - marker: - { color: 'rgb(255,65,0)', - size: 2.398107170553497, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2062.699405440749 ], - y: [ 254.46539549836703 ], - name: '', - text: [ '2003 SW130
Radius: 4 meters
Velocity: 8.52 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 2.380189396320561, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7148909721273 ], - y: [ 25.599822995566115 ], - name: '', - text: [ '2003 SW130
Radius: 4 meters
Velocity: 9.09 km/s' ], - marker: - { color: 'rgb(152,0,0)', - size: 2.380189396320561, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.1641576570412 ], - y: [ 89.36146657539857 ], - name: '', - text: [ '2012 EP10
Radius: 4 meters
Velocity: 3.16 km/s' ], - marker: - { color: 'rgb(49,0,0)', - size: 2.380189396320561, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0744795705791 ], - y: [ 55.63282498803029 ], - name: '', - text: [ '2006 BV39
Radius: 4 meters
Velocity: 8.01 km/s' ], - marker: - { color: 'rgb(133,0,0)', - size: 2.380189396320561, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.9852728738044 ], - y: [ 97.73632303403696 ], - name: '', - text: [ '2003 YS70
Radius: 4 meters
Velocity: 3.45 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 2.380189396320561, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.1863376822835 ], - y: [ 77.59108243248056 ], - name: '', - text: [ '2013 EN20
Radius: 4 meters
Velocity: 7.3 km/s' ], - marker: - { color: 'rgb(120,0,0)', - size: 2.380189396320561, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.720127579338 ], - y: [ 112.93538898838713 ], - name: '', - text: [ '2013 SP19
Radius: 4 meters
Velocity: 5.19 km/s' ], - marker: - { color: 'rgb(84,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.874842236516 ], - y: [ 55.43548896374487 ], - name: '', - text: [ '2009 WQ6
Radius: 4 meters
Velocity: 12.42 km/s' ], - marker: - { color: 'rgb(210,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8611187141705 ], - y: [ 12.116020806000584 ], - name: '', - text: [ '2010 VP139
Radius: 4 meters
Velocity: 9.44 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.8131795234403 ], - y: [ 28.566524427512427 ], - name: '', - text: [ '2013 UX2
Radius: 4 meters
Velocity: 4.37 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7473009138878 ], - y: [ 17.57865376490704 ], - name: '', - text: [ '2009 TB
Radius: 4 meters
Velocity: 15.15 km/s' ], - marker: - { color: 'rgb(255,2,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.9527317792679 ], - y: [ 124.8649316982724 ], - name: '', - text: [ '2009 XR1
Radius: 4 meters
Velocity: 6.47 km/s' ], - marker: - { color: 'rgb(107,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2189.8262415796116 ], - y: [ 26.854220774987862 ], - name: '', - text: [ '2009 WQ6
Radius: 4 meters
Velocity: 12.57 km/s' ], - marker: - { color: 'rgb(212,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.2262024238553 ], - y: [ 116.61874580341728 ], - name: '', - text: [ '2012 FT35
Radius: 4 meters
Velocity: 4.52 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 2.3630780547701016, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2004.9674551039338 ], - y: [ 7.840867409092655 ], - name: '', - text: [ '2004 YD5
Radius: 3 meters
Velocity: 25.37 km/s' ], - marker: - { color: 'rgb(255,180,0)', - size: 2.3467368504525314, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0671160074814 ], - y: [ 117.533210211481 ], - name: '', - text: [ '2006 BO7
Radius: 3 meters
Velocity: 10.01 km/s' ], - marker: - { color: 'rgb(168,0,0)', - size: 2.3467368504525314, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8497768502045 ], - y: [ 59.79771976891843 ], - name: '', - text: [ '2010 VR21
Radius: 3 meters
Velocity: 14.25 km/s' ], - marker: - { color: 'rgb(241,0,0)', - size: 2.3467368504525314, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.193729756854 ], - y: [ 43.767878320488194 ], - name: '', - text: [ '2007 EK
Radius: 3 meters
Velocity: 8.55 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 2.3467368504525314, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.7961961893466 ], - y: [ 58.69882134316853 ], - name: '', - text: [ '2008 UA202
Radius: 3 meters
Velocity: 2.84 km/s' ], - marker: - { color: 'rgb(44,0,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.1872804616578 ], - y: [ 17.018767942161833 ], - name: '', - text: [ '2008 EF32
Radius: 3 meters
Velocity: 13.56 km/s' ], - marker: - { color: 'rgb(231,0,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.7015057859282 ], - y: [ 170.61177992014512 ], - name: '', - text: [ '2009 SH1
Radius: 3 meters
Velocity: 7.94 km/s' ], - marker: - { color: 'rgb(131,0,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.6702762191505 ], - y: [ 37.43929081823792 ], - name: '', - text: [ '2013 RG
Radius: 3 meters
Velocity: 16.17 km/s' ], - marker: - { color: 'rgb(255,20,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9427318552985 ], - y: [ 13.916500624102037 ], - name: '', - text: [ '2013 XS21
Radius: 3 meters
Velocity: 8.27 km/s' ], - marker: - { color: 'rgb(139,0,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.4018521052872 ], - y: [ 125.19695088212592 ], - name: '', - text: [ '2012 KC45
Radius: 3 meters
Velocity: 6.17 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.2599410002586 ], - y: [ 13.037800847218255 ], - name: '', - text: [ '2011 GP28
Radius: 3 meters
Velocity: 14.8 km/s' ], - marker: - { color: 'rgb(252,0,0)', - size: 2.331131121482591, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2009.8550780834207 ], - y: [ 86.8638523752709 ], - name: '', - text: [ '2009 VT1
Radius: 3 meters
Velocity: 7.17 km/s' ], - marker: - { color: 'rgb(118,0,0)', - size: 2.316227766016838, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.0062991347718 ], - y: [ 84.9677656751374 ], - name: '', - text: [ '2006 RH120
Radius: 3 meters
Velocity: 1.04 km/s' ], - marker: - { color: 'rgb(13,0,0)', - size: 2.316227766016838, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.2273770965437 ], - y: [ 56.94308151381367 ], - name: '', - text: [ '2006 RH120
Radius: 3 meters
Velocity: 1.37 km/s' ], - marker: - { color: 'rgb(18,0,0)', - size: 2.316227766016838, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.693087298329 ], - y: [ 137.39972375718548 ], - name: '', - text: [ '2006 RH120
Radius: 3 meters
Velocity: 0.86 km/s' ], - marker: - { color: 'rgb(10,0,0)', - size: 2.316227766016838, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.4482820887124 ], - y: [ 45.907264755170374 ], - name: '', - text: [ '2006 RH120
Radius: 3 meters
Velocity: 1.57 km/s' ], - marker: - { color: 'rgb(21,0,0)', - size: 2.316227766016838, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9073111019875 ], - y: [ 25.66531098395564 ], - name: '', - text: [ '2013 WH25
Radius: 3 meters
Velocity: 20.89 km/s' ], - marker: - { color: 'rgb(255,102,0)', - size: 2.3019951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.78809512948 ], - y: [ 18.517499381477432 ], - name: '', - text: [ '2010 UE
Radius: 3 meters
Velocity: 17.35 km/s' ], - marker: - { color: 'rgb(255,41,0)', - size: 2.3019951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.3537855633106 ], - y: [ 24.243988095081463 ], - name: '', - text: [ '2008 JL24
Radius: 3 meters
Velocity: 3.52 km/s' ], - marker: - { color: 'rgb(55,0,0)', - size: 2.3019951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2006.0775683134893 ], - y: [ 31.449616986616924 ], - name: '', - text: [ '2006 BF56
Radius: 3 meters
Velocity: 25.45 km/s' ], - marker: - { color: 'rgb(255,180,0)', - size: 2.3019951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.9121542508706 ], - y: [ 8.440618641462011 ], - name: '', - text: [ '2010 XB
Radius: 3 meters
Velocity: 20.09 km/s' ], - marker: - { color: 'rgb(255,89,0)', - size: 2.3019951720402014, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0263883186594 ], - y: [ 18.135816978955962 ], - name: '', - text: [ '2011 AM37
Radius: 3 meters
Velocity: 4.41 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 2.2884031503126607, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.9860521874002 ], - y: [ 19.017941748486102 ], - name: '', - text: [ '2011 YC40
Radius: 3 meters
Velocity: 11.36 km/s' ], - marker: - { color: 'rgb(191,0,0)', - size: 2.2884031503126607, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.0411116433252 ], - y: [ 54.35168718342646 ], - name: '', - text: [ '2008 BW2
Radius: 3 meters
Velocity: 6.97 km/s' ], - marker: - { color: 'rgb(115,0,0)', - size: 2.2884031503126607, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.3390375287015 ], - y: [ 54.71908532175363 ], - name: '', - text: [ '2011 JV10
Radius: 3 meters
Velocity: 5.33 km/s' ], - marker: - { color: 'rgb(86,0,0)', - size: 2.2884031503126607, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0006215501119 ], - y: [ 40.26996252472007 ], - name: '', - text: [ '2011 YB63
Radius: 3 meters
Velocity: 8.53 km/s' ], - marker: - { color: 'rgb(141,0,0)', - size: 2.2754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.3370550309444 ], - y: [ 185.14164974746777 ], - name: '', - text: [ '2008 WO2
Radius: 3 meters
Velocity: 6.21 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 2.2754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8743043200584 ], - y: [ 60.817392347297314 ], - name: '', - text: [ '2008 WO2
Radius: 3 meters
Velocity: 6.29 km/s' ], - marker: - { color: 'rgb(102,0,0)', - size: 2.2754228703338164, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.950948861822 ], - y: [ 48.746372715831484 ], - name: '', - text: [ '2012 XB112
Radius: 3 meters
Velocity: 4.43 km/s' ], - marker: - { color: 'rgb(70,0,0)', - size: 2.263026799189538, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2039.4313652813892 ], - y: [ 248.2223624956097 ], - name: '', - text: [ '2012 XB112
Radius: 3 meters
Velocity: 4.5 km/s' ], - marker: - { color: 'rgb(73,0,0)', - size: 2.263026799189538, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2005.901251463589 ], - y: [ 17.20832858284722 ], - name: '', - text: [ '2005 WN3
Radius: 3 meters
Velocity: 19.3 km/s' ], - marker: - { color: 'rgb(255,75,0)', - size: 2.263026799189538, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.0203343825556 ], - y: [ 20.449705736057478 ], - name: '', - text: [ '2014 AG51
Radius: 3 meters
Velocity: 15.04 km/s' ], - marker: - { color: 'rgb(254,0,0)', - size: 2.263026799189538, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2010.8749315724647 ], - y: [ 8.598607980432734 ], - name: '', - text: [ '2010 WA
Radius: 3 meters
Velocity: 13.07 km/s' ], - marker: - { color: 'rgb(220,0,0)', - size: 2.251188643150958, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2003.7387588765719 ], - y: [ 12.953205016060988 ], - name: '', - text: [ '2003 SQ222
Radius: 2 meters
Velocity: 15.44 km/s' ], - marker: - { color: 'rgb(255,7,0)', - size: 2.2398832919019487, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.231324985174 ], - y: [ 12.996867957889723 ], - name: '', - text: [ '2012 FS35
Radius: 2 meters
Velocity: 4.83 km/s' ], - marker: - { color: 'rgb(78,0,0)', - size: 2.229086765276777, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2072.211878259812 ], - y: [ 182.52398953175413 ], - name: '', - text: [ '2012 FS35
Radius: 2 meters
Velocity: 3.62 km/s' ], - marker: - { color: 'rgb(57,0,0)', - size: 2.229086765276777, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8406664841932 ], - y: [ 8.55595412930999 ], - name: '', - text: [ '2008 VM
Radius: 2 meters
Velocity: 11.11 km/s' ], - marker: - { color: 'rgb(186,0,0)', - size: 2.229086765276777, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.1066405121421 ], - y: [ 21.98227358592627 ], - name: '', - text: [ '2011 CA7
Radius: 2 meters
Velocity: 9.33 km/s' ], - marker: - { color: 'rgb(157,0,0)', - size: 2.2187761623949553, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.989477365692 ], - y: [ 43.919450404210124 ], - name: '', - text: [ '2012 AQ
Radius: 2 meters
Velocity: 3.28 km/s' ], - marker: - { color: 'rgb(52,0,0)', - size: 2.181970085860998, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2007.6749825129632 ], - y: [ 16.345024057864734 ], - name: '', - text: [ '2007 RS1
Radius: 2 meters
Velocity: 12.14 km/s' ], - marker: - { color: 'rgb(204,0,0)', - size: 2.1659586907437562, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0975396499553 ], - y: [ 7.983107957870593 ], - name: '', - text: [ '2011 CF22
Radius: 2 meters
Velocity: 19.6 km/s' ], - marker: - { color: 'rgb(255,78,0)', - size: 2.1659586907437562, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2012.0495453370436 ], - y: [ 50.774606675462856 ], - name: '', - text: [ '2012 BV1
Radius: 2 meters
Velocity: 8.65 km/s' ], - marker: - { color: 'rgb(144,0,0)', - size: 2.158489319246111, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.7127469093564 ], - y: [ 37.10698951773434 ], - name: '', - text: [ '2013 RZ53
Radius: 2 meters
Velocity: 2.18 km/s' ], - marker: - { color: 'rgb(31,0,0)', - size: 2.1513561248436206, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2014.6850660705868 ], - y: [ 118.10103553141718 ], - name: '', - text: [ '2013 RZ53
Radius: 2 meters
Velocity: 1.56 km/s' ], - marker: - { color: 'rgb(21,0,0)', - size: 2.1513561248436206, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2013.9743681857578 ], - y: [ 5.480113084472864 ], - name: '', - text: [ '2013 YB
Radius: 1 meters
Velocity: 10.52 km/s' ], - marker: - { color: 'rgb(175,0,0)', - size: 2.1258925411794167, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2011.0929759135076 ], - y: [ 7.564823996884261 ], - name: '', - text: [ '2011 CQ1
Radius: 1 meters
Velocity: 9.69 km/s' ], - marker: - { color: 'rgb(162,0,0)', - size: 2.0954992586021435, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: [ 2008.8057057159801 ], - y: [ 14.795051714133013 ], - name: '', - text: [ '2008 UM1
Radius: 1 meters
Velocity: 15.62 km/s' ], - marker: - { color: 'rgb(255,10,0)', - size: 2.0954992586021435, - symbol: 'circle', - line: { color: [ 'white' ], width: 0.5 }, - opacity: 1 }, - type: 'scattergl' }, - { x: - [ 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246, - 2014.1840518607246 ], - y: - [ 1, - 4.04040404040404, - 7.08080808080808, - 10.121212121212121, - 13.16161616161616, - 16.2020202020202, - 19.242424242424242, - 22.28282828282828, - 25.32323232323232, - 28.363636363636363, - 31.4040404040404, - 34.44444444444444, - 37.484848484848484, - 40.525252525252526, - 43.56565656565656, - 46.6060606060606, - 49.64646464646464, - 52.686868686868685, - 55.72727272727273, - 58.76767676767676, - 61.8080808080808, - 64.84848484848484, - 67.88888888888889, - 70.92929292929293, - 73.96969696969697, - 77.01010101010101, - 80.05050505050505, - 83.09090909090908, - 86.13131313131312, - 89.17171717171716, - 92.2121212121212, - 95.25252525252525, - 98.29292929292929, - 101.33333333333333, - 104.37373737373737, - 107.41414141414141, - 110.45454545454545, - 113.4949494949495, - 116.53535353535352, - 119.57575757575756, - 122.6161616161616, - 125.65656565656565, - 128.6969696969697, - 131.73737373737373, - 134.77777777777777, - 137.8181818181818, - 140.85858585858585, - 143.8989898989899, - 146.93939393939394, - 149.97979797979798, - 153.02020202020202, - 156.06060606060606, - 159.1010101010101, - 162.14141414141415, - 165.18181818181816, - 168.2222222222222, - 171.26262626262624, - 174.30303030303028, - 177.34343434343432, - 180.38383838383837, - 183.4242424242424, - 186.46464646464645, - 189.5050505050505, - 192.54545454545453, - 195.58585858585857, - 198.62626262626262, - 201.66666666666666, - 204.7070707070707, - 207.74747474747474, - 210.78787878787878, - 213.82828282828282, - 216.86868686868686, - 219.9090909090909, - 222.94949494949495, - 225.989898989899, - 229.030303030303, - 232.07070707070704, - 235.1111111111111, - 238.15151515151513, - 241.19191919191917, - 244.2323232323232, - 247.27272727272725, - 250.3131313131313, - 253.35353535353534, - 256.3939393939394, - 259.4343434343434, - 262.47474747474746, - 265.5151515151515, - 268.55555555555554, - 271.5959595959596, - 274.6363636363636, - 277.67676767676767, - 280.7171717171717, - 283.75757575757575, - 286.7979797979798, - 289.83838383838383, - 292.8787878787879, - 295.9191919191919, - 298.95959595959596, - 302 ], - mode: 'lines', - name: 'Today', - type: 'scattergl' }, - { x: - [ 2000, - 2001.010101010101, - 2002.020202020202, - 2003.030303030303, - 2004.040404040404, - 2005.050505050505, - 2006.060606060606, - 2007.0707070707072, - 2008.080808080808, - 2009.090909090909, - 2010.1010101010102, - 2011.111111111111, - 2012.121212121212, - 2013.1313131313132, - 2014.141414141414, - 2015.1515151515152, - 2016.1616161616162, - 2017.171717171717, - 2018.1818181818182, - 2019.1919191919192, - 2020.20202020202, - 2021.2121212121212, - 2022.2222222222222, - 2023.2323232323233, - 2024.2424242424242, - 2025.2525252525252, - 2026.2626262626263, - 2027.2727272727273, - 2028.2828282828282, - 2029.2929292929293, - 2030.3030303030303, - 2031.3131313131314, - 2032.3232323232323, - 2033.3333333333333, - 2034.3434343434344, - 2035.3535353535353, - 2036.3636363636363, - 2037.3737373737374, - 2038.3838383838383, - 2039.3939393939395, - 2040.4040404040404, - 2041.4141414141413, - 2042.4242424242425, - 2043.4343434343434, - 2044.4444444444443, - 2045.4545454545455, - 2046.4646464646464, - 2047.4747474747476, - 2048.4848484848485, - 2049.4949494949497, - 2050.5050505050503, - 2051.5151515151515, - 2052.5252525252527, - 2053.5353535353534, - 2054.5454545454545, - 2055.5555555555557, - 2056.5656565656564, - 2057.5757575757575, - 2058.5858585858587, - 2059.59595959596, - 2060.6060606060605, - 2061.6161616161617, - 2062.626262626263, - 2063.6363636363635, - 2064.6464646464647, - 2065.656565656566, - 2066.6666666666665, - 2067.6767676767677, - 2068.686868686869, - 2069.6969696969695, - 2070.7070707070707, - 2071.717171717172, - 2072.7272727272725, - 2073.7373737373737, - 2074.747474747475, - 2075.757575757576, - 2076.7676767676767, - 2077.777777777778, - 2078.787878787879, - 2079.7979797979797, - 2080.808080808081, - 2081.818181818182, - 2082.8282828282827, - 2083.838383838384, - 2084.848484848485, - 2085.8585858585857, - 2086.868686868687, - 2087.878787878788, - 2088.8888888888887, - 2089.89898989899, - 2090.909090909091, - 2091.919191919192, - 2092.929292929293, - 2093.939393939394, - 2094.949494949495, - 2095.959595959596, - 2096.969696969697, - 2097.979797979798, - 2098.989898989899, - 2100 ], - y: - [ 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3, - 6.3 ], - mode: 'lines', - name: 'Geosynchronous Satellites', - line: { dash: 'dot' }, - type: 'scattergl' }, - { x: - [ 2000, - 2001.010101010101, - 2002.020202020202, - 2003.030303030303, - 2004.040404040404, - 2005.050505050505, - 2006.060606060606, - 2007.0707070707072, - 2008.080808080808, - 2009.090909090909, - 2010.1010101010102, - 2011.111111111111, - 2012.121212121212, - 2013.1313131313132, - 2014.141414141414, - 2015.1515151515152, - 2016.1616161616162, - 2017.171717171717, - 2018.1818181818182, - 2019.1919191919192, - 2020.20202020202, - 2021.2121212121212, - 2022.2222222222222, - 2023.2323232323233, - 2024.2424242424242, - 2025.2525252525252, - 2026.2626262626263, - 2027.2727272727273, - 2028.2828282828282, - 2029.2929292929293, - 2030.3030303030303, - 2031.3131313131314, - 2032.3232323232323, - 2033.3333333333333, - 2034.3434343434344, - 2035.3535353535353, - 2036.3636363636363, - 2037.3737373737374, - 2038.3838383838383, - 2039.3939393939395, - 2040.4040404040404, - 2041.4141414141413, - 2042.4242424242425, - 2043.4343434343434, - 2044.4444444444443, - 2045.4545454545455, - 2046.4646464646464, - 2047.4747474747476, - 2048.4848484848485, - 2049.4949494949497, - 2050.5050505050503, - 2051.5151515151515, - 2052.5252525252527, - 2053.5353535353534, - 2054.5454545454545, - 2055.5555555555557, - 2056.5656565656564, - 2057.5757575757575, - 2058.5858585858587, - 2059.59595959596, - 2060.6060606060605, - 2061.6161616161617, - 2062.626262626263, - 2063.6363636363635, - 2064.6464646464647, - 2065.656565656566, - 2066.6666666666665, - 2067.6767676767677, - 2068.686868686869, - 2069.6969696969695, - 2070.7070707070707, - 2071.717171717172, - 2072.7272727272725, - 2073.7373737373737, - 2074.747474747475, - 2075.757575757576, - 2076.7676767676767, - 2077.777777777778, - 2078.787878787879, - 2079.7979797979797, - 2080.808080808081, - 2081.818181818182, - 2082.8282828282827, - 2083.838383838384, - 2084.848484848485, - 2085.8585858585857, - 2086.868686868687, - 2087.878787878788, - 2088.8888888888887, - 2089.89898989899, - 2090.909090909091, - 2091.919191919192, - 2092.929292929293, - 2093.939393939394, - 2094.949494949495, - 2095.959595959596, - 2096.969696969697, - 2097.979797979798, - 2098.989898989899, - 2100 ], - y: - [ 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351, - 60.33589693721351 ], - mode: 'lines', - name: 'Moon', - line: { dash: 'dot' }, - type: 'scattergl' } ], - layout: - { title: 'A Century of Asteroid Flybys', - titlefont: { color: '', family: '', size: 0 }, - font: { family: 'Arial, sans-serif', size: 16, color: 'black' }, - showlegend: false, - autosize: true, - width: 1366, - height: 713, - xaxis: - { title: 'Date
Data extracted from JPL on 2014-3-8 by Alex H. Parker', - titlefont: { color: '', family: '', size: 0 }, - range: [ 2000, 2100 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 20, - ticklen: 5, - tickwidth: 1, - tickcolor: 'black', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: 'black', - linewidth: 2, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: false }, - yaxis: - { title: 'Nominal Flyby Distance (Earth Radii)', - titlefont: { color: '', family: '', size: 0 }, - range: [ 1, 302 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 50, - ticklen: 5, - tickwidth: 1, - tickcolor: 'black', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: 'black', - linewidth: 2, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: false }, - legend: - { traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0 }, - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fbfbfb', - plot_bgcolor: '#fbfbfb', - hovermode: 'closest', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_26.png b/devtools/test_dashboard/testplots-2d/gl2d_26.png deleted file mode 100644 index 704c1c34b54..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_26.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_27.json b/devtools/test_dashboard/testplots-2d/gl2d_27.json deleted file mode 100644 index 3562132826c..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_27.json +++ /dev/null @@ -1,283 +0,0 @@ -{ data: - [ { x: - [ '1979.02755267423', - '1980', - '1980.97244732577', - '1982.066450567261', - '1982.998379254457', - '1984.132901134522', - '1984.9432739059966', - '1985.9967585089141', - '1987.0097244732576', - '1988.0226904376013', - '1989.5623987034035', - '1991.0210696920583', - '1991.9935170178283', - '1993.776337115073', - '1995.032414910859', - '1996.1669367909237', - '1997.0583468395462', - '1998.0307941653161', - '1999.0437601296596', - '2000.0162074554296', - '2001.029173419773', - '2002.0421393841166', - '2003.0145867098865', - '2005.0810372771475', - '2006.9854132901135' ], - y: - [ '0.47884927066450567', - '0.48540272003382423', - '0.4886952998379255', - '0.49769836516101756', - '0.5091417976182088', - '0.5116244450708196', - '0.5157269572264112', - '0.5361417447678106', - '0.5239465153970827', - '0.5362078077654853', - '0.5264754069480657', - '0.5240773201324784', - '0.5338916390670144', - '0.5363954266788811', - '0.5372516031287438', - '0.547886424494398', - '0.5544372313438096', - '0.553653724191389', - '0.5585780600380524', - '0.5716532485378059', - '0.5545667148192518', - '0.5537845289267848', - '0.5611531956874076', - '0.5897531886406879', - '0.5906305052498064' ], - name: 'Market income', - line: { color: 'rgb(0, 67, 104)', width: 3 }, - type: 'scattergl' }, - { x: - [ '1979.0680713128038', - '1980', - '1980.97244732577', - '1982.998379254457', - '1984.9837925445704', - '1985.9967585089141', - '1987.0097244732576', - '1988.0226904376013', - '1989.6029173419772', - '1991.0210696920583', - '1992.034035656402', - '1993.0875202593193', - '1993.938411669368', - '1994.9918962722852', - '1997.0178282009724', - '1998.1118314424634', - '1999.0032414910859', - '2000.0162074554296', - '2001.029173419773', - '2002.0421393841166', - '2003.0145867098865', - '2004.02755267423', - '2005.0405186385738', - '2006.9854132901135' ], - y: - [ '0.3663505919244592', - '0.36964185046860687', - '0.37782573462053415', - '0.4064244063138609', - '0.4211630610950603', - '0.443206962159115', - '0.41959868931012617', - '0.43512085124374605', - '0.42783542386019313', - '0.4189142766542175', - '0.42628426467479397', - '0.4206120956944543', - '0.41900940737086895', - '0.419858977520964', - '0.44519677964907345', - '0.44686288845042643', - '0.453413695299838', - '0.46893585723345793', - '0.44614280177577353', - '0.44209974631808907', - '0.4478379782961033', - '0.4658057924036363', - '0.47969751955464746', - '0.4895435487280673' ], - name: 'Market income plus transfers minus federal taxes (actual)', - line: { color: 'rgb(79, 143, 179)', width: 3 }, - type: 'scattergl' }, - { x: - [ '1979.0680713128038', - '1979.9594813614262', - '1980.9319286871962', - '1983.0794165316045', - '1984.9837925445704', - '1986.0372771474879', - '1987.0097244732576', - '1988.0226904376013', - '1988.995137763371', - '1991.0210696920583', - '1991.9529983792545', - '1993.9789303079417', - '1995.1134521880065', - '1996.0453808752027', - '1997.0583468395462', - '1998.07131280389', - '1999.0437601296596', - '2000.0162074554296', - '2001.029173419773', - '2002.1636952998379', - '2003.0551053484603', - '2005.0405186385738', - '2006.9854132901135' ], - y: - [ '0.3671658093157635', - '0.3712709639912621', - '0.3737483264040589', - '0.38930748361637657', - '0.3942608871820168', - '0.41059958776689454', - '0.4016639067014305', - '0.4098491121133113', - '0.404989518004369', - '0.4009794940455219', - '0.40834683954619133', - '0.41085855471777893', - '0.4117107673877811', - '0.41907811288845054', - '0.42400244873511383', - '0.4232202628426469', - '0.4273280600380524', - '0.4379575963638927', - '0.4249471496018604', - '0.4249841448805582', - '0.4299045169473611', - '0.4519801282502996', - '0.45204354872806723' ], - name: 'Market income plus tranfers minus federal taxes (holding 1979 progressivity)', - line: { color: 'rgb(160, 203, 241)', width: 3 }, - type: 'scattergl' } ], - layout: - { title: 'Income inequality,by type of income measured,1979-2007', - titlefont: { color: '', family: 'Arial, sans-serif', size: 14 }, - font: { family: 'Arial, sans-serif', size: 12, color: '#000' }, - showlegend: true, - autosize: false, - width: 606, - height: 400, - xaxis: - { title: 'Source: Andrew Fieldhouse, Economic Policy Institute, 6/14/2013', - titlefont: { color: '', family: 'Arial, sans-serif', size: 10 }, - range: [ 1979.02755267423, 2007.8761061946902 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: false, - zeroline: true, - showline: true, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 5, - ticklen: 5, - tickwidth: 1, - tickcolor: 'rgb(204, 204, 204)', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 0.1, - anchor: 'y', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Gini Index', - titlefont: { color: '', family: '', size: 0 }, - range: [ 0.318141592920354, 0.65 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: true, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 0.05, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: 'rgb(221, 221, 221)', - gridwidth: 1, - zerolinecolor: 'rgb(102, 102, 102)', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 0.1, - anchor: 'x', - position: 0, - mirror: true, - overlaying: false, - autorange: false }, - legend: - { x: -0.002406144799079538, - y: 1.071535433070866, - traceorder: 'normal', - font: { family: '', size: 11, color: '' }, - bgcolor: 'rgba(255, 255, 255, 0)', - bordercolor: 'rgba(0, 0, 0, 0)', - borderwidth: 0.1, - xanchor: 'auto', - yanchor: 'auto' }, - annotations: - [ { x: 1995.4584324515083, - y: 0.36681307285082176, - xref: 'x', - yref: 'y', - text: 'Note: The Gini index is a commonly used measure of inequality.
0 is a perfectly equitable income distribution; 1 is perfectly inequitable.', - font: { family: '', size: 0, color: 'rgb(102, 102, 102)' }, - align: 'left', - showarrow: false, - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.3046875, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - xatype: 'linear', - yatype: 'linear', - tag: '', - ref: 'plot' } ], - margin: { l: 70, r: 40, b: 60, t: 90, pad: 2, autoexpand: true }, - paper_bgcolor: 'rgb(245, 245, 247)', - plot_bgcolor: 'rgb(245, 245, 247)', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_27.png b/devtools/test_dashboard/testplots-2d/gl2d_27.png deleted file mode 100644 index f1b39a94093..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_27.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_28.json b/devtools/test_dashboard/testplots-2d/gl2d_28.json deleted file mode 100644 index 750a47e9765..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_28.json +++ /dev/null @@ -1,887 +0,0 @@ -{ data: - [ { x: - [ '1960.2469135802469', - '1962.0987654320988', - '1964.1152263374486', - '1966.0905349794239', - '1967.0781893004116', - '1968.1893004115227', - '1969.0946502057614', - '1970.0823045267489', - '1971.0699588477366', - '1972.0987654320988', - '1973.1275720164608', - '1974.0740740740741', - '1975.102880658436', - '1976.0905349794239', - '1977.119341563786', - '1978.1069958847736', - '1979.1358024691358', - '1980.0823045267489', - '1981.111111111111', - '1982.0576131687242', - '1983.0864197530864', - '1984.0329218106997', - '1986.0493827160494', - '1986.9958847736625', - '1987.9423868312758', - '1988.8477366255145', - '1990.0411522633744', - '1991.3168724279835', - '1992.2222222222222', - '1993.045267489712', - '1994.0329218106997', - '1995.0617283950617', - '1998.0658436213992', - '2000', - '2001.0288065843622', - '2002.633744855967', - '2003.2921810699588', - '2003.9094650205761' ], - y: - [ '14.069767441860467', - '15.34883720930232', - '14.069767441860463', - '16.046511627906977', - '15.232558139534873', - '15.232558139534865', - '16.395348837209298', - '15.232558139534868', - '15.116279069767444', - '14.302325581395326', - '15.58139534883719', - '15.232558139534856', - '14.069767441860442', - '15.348837209302305', - '14.65116279069765', - '14.883720930232531', - '14.651162790697636', - '13.604651162790699', - '13.953488372092993', - '13.023255813953481', - '14.186046511627906', - '14.30232558139532', - '14.18604651162791', - '16.046511627906945', - '16.62790697674418', - '16.62790697674415', - '16.279069767441847', - '15.232558139534843', - '14.767441860465059', - '14.767441860465055', - '13.60465116279067', - '13.255813953488389', - '12.906976744185997', - '13.023255813953442', - '10.813953488372055', - '10.116279069767359', - '9.883720930232519', - '9.651162790697626' ], - name: '0-20th', - line: { color: 'rgb(67, 67, 67)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2469135802469', - '1962.1399176954733', - '1963.4979423868313', - '1964.1152263374486', - '1966.008230452675', - '1967.037037037037', - '1969.0946502057614', - '1971.111111111111', - '1972.0987654320988', - '1973.0864197530864', - '1974.0740740740741', - '1975.102880658436', - '1976.0905349794239', - '1977.0781893004116', - '1978.0658436213992', - '1980.0823045267489', - '1981.0699588477366', - '1982.1399176954733', - '1983.1275720164608', - '1984.0329218106997', - '1984.9382716049383', - '1986.6666666666667', - '1988.0658436213992', - '1989.053497942387', - '1989.670781893004', - '1991.440329218107', - '1993.045267489712', - '1994.3621399176955', - '1995.0617283950617', - '1996.0493827160494', - '1997.037037037037', - '1998.0658436213992', - '2000', - '2001.0288065843622', - '2003.9094650205761' ], - y: - [ '14.302325581395351', - '16.97674418604651', - '16.395348837209294', - '16.27906976744186', - '17.44186046511627', - '17.325581395348824', - '19.53488372093023', - '17.09302325581396', - '16.744186046511633', - '18.139534883720927', - '18.488372093023266', - '15.69767441860465', - '17.093023255813936', - '15.930232558139537', - '17.093023255813947', - '16.395348837209312', - '17.093023255813947', - '16.046511627906973', - '15.81395348837207', - '16.97674418604651', - '16.74418604651159', - '16.279069767441822', - '16.16279069767438', - '15.697674418604665', - '15.813953488372093', - '15.813953488372036', - '16.162790697674424', - '14.30232558139528', - '13.255813953488389', - '13.953488372092991', - '12.79069767441857', - '12.790697674418567', - '13.13953488372093', - '11.511627906976756', - '10.697674418604622' ], - name: '20-40th', - line: { color: 'rgb(67, 67, 67)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2057613168724', - '1962.0987654320988', - '1964.1152263374486', - '1966.1316872427983', - '1967.119341563786', - '1969.1358024691358', - '1971.0699588477366', - '1972.1399176954733', - '1973.1687242798355', - '1974.1152263374486', - '1975.102880658436', - '1976.0905349794239', - '1977.0781893004116', - '1978.0658436213992', - '1980.1234567901236', - '1981.0699588477366', - '1982.1399176954733', - '1983.0864197530864', - '1984.0329218106997', - '1987.119341563786', - '1988.0658436213992', - '1989.670781893004', - '1992.0164609053497', - '1993.0041152263375', - '1993.9506172839506', - '1995.102880658436', - '1997.037037037037', - '1997.9835390946503', - '1999.2181069958847', - '2000.0823045267489', - '2001.111111111111', - '2003.9094650205761' ], - y: - [ '16.27906976744186', - '18.023255813953483', - '17.325581395348827', - '18.95348837209302', - '18.953488372093016', - '21.395348837209305', - '19.651162790697683', - '19.883720930232563', - '21.627906976744182', - '21.395348837209298', - '20.23255813953488', - '20.69767441860465', - '19.883720930232542', - '21.046511627906977', - '21.627906976744192', - '22.32558139534884', - '20.697674418604645', - '20.46511627906977', - '21.046511627906977', - '20.5813953488372', - '21.27906976744185', - '21.162790697674417', - '20.116279069767437', - '20.465116279069772', - '20.232558139534873', - '20.46511627906976', - '20.465116279069772', - '20', - '19.883720930232496', - '20.11627906976743', - '17.90697674418598', - '16.2790697674418' ], - name: '40-60th', - line: { color: 'rgb(67, 67, 67)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2057613168724', - '1962.0987654320988', - '1964.0740740740741', - '1966.0493827160494', - '1967.037037037037', - '1968.0246913580247', - '1969.0946502057614', - '1971.1522633744855', - '1972.0987654320988', - '1973.045267489712', - '1974.0740740740741', - '1975.1440329218108', - '1976.008230452675', - '1977.1604938271605', - '1978.0658436213992', - '1979.053497942387', - '1980.1234567901236', - '1981.0699588477366', - '1983.0864197530864', - '1984.0329218106997', - '1987.0781893004116', - '1988.0658436213992', - '1990.0823045267489', - '1991.111111111111', - '1992.9218106995884', - '1994.156378600823', - '1997.037037037037', - '1998.0658436213992', - '2000.0411522633744', - '2001.1934156378602', - '2003.9094650205761' ], - y: - [ '16.976744186046513', - '18.25581395348837', - '17.209302325581397', - '19.1860465116279', - '19.302325581395337', - '20.697674418604652', - '21.627906976744182', - '20.232558139534884', - '20.813953488372093', - '22.674418604651162', - '23.023255813953487', - '22.558139534883722', - '22.906976744186046', - '22.209302325581397', - '22.790697674418606', - '24.30232558139535', - '24.65116279069767', - '25.581395348837216', - '23.372093023255815', - '23.837209302325576', - '23.720930232558135', - '24.41860465116278', - '24.534883720930225', - '24.302325581395344', - '24.186046511627914', - '24.65116279069767', - '24.767441860465116', - '24.06976744186046', - '24.06976744186047', - '22.32558139534884', - '20.697674418604638' ], - name: '60-80th', - line: { color: 'rgb(67, 67, 67)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2469135802469', - '1962.0987654320988', - '1963.991769547325', - '1966.0493827160494', - '1966.9958847736625', - '1968.2304526748972', - '1969.053497942387', - '1971.111111111111', - '1972.1399176954733', - '1972.962962962963', - '1973.991769547325', - '1975.0617283950617', - '1976.008230452675', - '1977.037037037037', - '1978.1069958847736', - '1979.0946502057614', - '1980.946502057613', - '1983.0864197530864', - '1983.991769547325', - '1987.037037037037', - '1989.8765432098764', - '1991.6460905349795', - '1996.1316872427983', - '1998.0658436213992', - '1999.8765432098764', - '2001.5637860082304', - '2003.8271604938273' ], - y: - [ '17.67441860465116', - '18.720930232558132', - '17.906976744186043', - '19.534883720930218', - '19.651162790697658', - '21.3953488372093', - '22.093023255813954', - '20.348837209302328', - '20.697674418604656', - '22.790697674418606', - '23.255813953488374', - '23.25581395348837', - '23.48837209302326', - '23.023255813953483', - '23.372093023255818', - '25.93023255813953', - '27.67441860465116', - '25.34883720930233', - '25.930232558139526', - '25.697674418604656', - '26.395348837209294', - '25.813953488372093', - '27.093023255813943', - '26.279069767441868', - '26.744186046511633', - '24.767441860465127', - '23.023255813953476' ], - name: '80-90th', - line: { color: 'rgb(172, 217, 255)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2057613168724', - '1962.0987654320988', - '1964.0740740740741', - '1966.0493827160494', - '1967.0781893004116', - '1968.1069958847736', - '1969.0946502057614', - '1971.111111111111', - '1973.045267489712', - '1974.0329218106997', - '1976.0493827160494', - '1977.0781893004116', - '1977.9423868312758', - '1979.0946502057614', - '1981.0699588477366', - '1982.1399176954733', - '1983.1687242798355', - '1983.9094650205761', - '1986.4197530864199', - '1987.119341563786', - '1988.4362139917696', - '1989.9588477366256', - '1991.1522633744855', - '1992.798353909465', - '1994.0329218106997', - '1996.1316872427983', - '1998.1069958847736', - '1999.2181069958847', - '2000', - '2003.9094650205761' ], - y: - [ '18.953488372093023', - '20.116279069767444', - '19.186046511627907', - '20.465116279069765', - '20.232558139534884', - '22.209302325581397', - '22.790697674418606', - '20.46511627906977', - '23.48837209302326', - '23.95348837209302', - '23.953488372093027', - '23.372093023255815', - '23.48837209302325', - '27.093023255813957', - '29.418604651162795', - '26.976744186046506', - '26.62790697674419', - '27.093023255813954', - '27.093023255813947', - '27.55813953488373', - '27.55813953488372', - '28.139534883720938', - '27.67441860465117', - '28.023255813953497', - '28.837209302325572', - '29.069767441860463', - '28.604651162790695', - '28.953488372093023', - '28.837209302325576', - '25.116279069767444' ], - name: '90-95th', - line: { color: 'rgb(118, 173, 209)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2469135802469', - '1962.0576131687242', - '1964.156378600823', - '1966.008230452675', - '1967.119341563786', - '1968.1069958847736', - '1969.1358024691358', - '1971.0699588477366', - '1972.2633744855966', - '1973.0864197530864', - '1974.0740740740741', - '1975.1851851851852', - '1976.0493827160494', - '1978.0246913580247', - '1979.0946502057614', - '1981.0288065843622', - '1982.1810699588477', - '1983.045267489712', - '1984.0329218106997', - '1986.0493827160494', - '1987.0781893004116', - '1987.9423868312758', - '1989.053497942387', - '1990.164609053498', - '1991.440329218107', - '1992.716049382716', - '1994.1975308641975', - '1996.008230452675', - '1997.1604938271605', - '1998.7654320987654', - '2000.0411522633744', - '2001.2345679012346', - '2003.8683127572017' ], - y: - [ '23.72093023255814', - '25.697674418604652', - '24.651162790697676', - '25.58139534883721', - '24.651162790697672', - '27.093023255813954', - '27.093023255813954', - '24.53488372093023', - '25.930232558139533', - '27.674418604651162', - '27.20930232558139', - '27.674418604651166', - '27.90697674418605', - '27.209302325581394', - '30.697674418604652', - '31.744186046511633', - '28.720930232558146', - '27.67441860465116', - '28.13953488372093', - '27.790697674418603', - '29.302325581395355', - '28.720930232558132', - '28.837209302325583', - '28.720930232558135', - '28.720930232558132', - '29.41860465116279', - '30.93023255813953', - '31.627906976744182', - '31.046511627906966', - '31.27906976744186', - '31.279069767441854', - '29.7674418604651', - '27.441860465116278' ], - name: '95-99th', - marker: { color: 'rgb(65, 134, 174)' }, - line: { width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2057613168724', - '1962.1399176954733', - '1964.0329218106997', - '1966.0905349794239', - '1967.0781893004116', - '1968.0658436213992', - '1968.9300411522634', - '1969.8765432098764', - '1971.111111111111', - '1973.1275720164608', - '1974.0740740740741', - '1975.1440329218108', - '1977.037037037037', - '1978.0658436213992', - '1979.053497942387', - '1981.0699588477366', - '1982.0576131687242', - '1983.045267489712', - '1984.1152263374486', - '1985.0617283950617', - '1986.0493827160494', - '1987.0781893004116', - '1988.0658436213992', - '1989.1358024691358', - '1990.1234567901236', - '1991.1522633744855', - '1991.9753086419753', - '1995.102880658436', - '1996.0905349794239', - '1997.037037037037', - '1999.1769547325102', - '2000.5761316872429', - '2003.9506172839506' ], - y: - [ '34.30232558139535', - '36.04651162790698', - '35.348837209302324', - '36.27906976744186', - '34.53488372093023', - '37.67441860465116', - '37.44186046511627', - '36.51162790697674', - '34.651162790697676', - '36.74418604651163', - '35.69767441860465', - '36.74418604651163', - '37.2093023255814', - '35.465116279069775', - '38.255813953488364', - '37.55813953488372', - '33.25581395348838', - '31.395348837209298', - '31.860465116279066', - '31.04651162790698', - '31.04651162790698', - '33.13953488372094', - '31.976744186046517', - '32.09302325581395', - '31.744186046511622', - '31.74418604651163', - '32.674418604651166', - '37.55813953488372', - '37.674418604651166', - '36.511627906976756', - '36.51162790697674', - '35.34883720930233', - '31.511627906976738' ], - name: '99-99.5th', - line: { color: 'rgb(74, 140, 177)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2469135802469', - '1962.0987654320988', - '1966.0905349794239', - '1967.119341563786', - '1968.148148148148', - '1969.1358024691358', - '1970.1234567901236', - '1971.0699588477366', - '1972.2222222222222', - '1973.1275720164608', - '1974.0740740740741', - '1975.102880658436', - '1977.037037037037', - '1978.0658436213992', - '1979.0946502057614', - '1981.0699588477366', - '1982.0576131687242', - '1983.0864197530864', - '1985.102880658436', - '1986.0905349794239', - '1987.0781893004116', - '1988.1069958847736', - '1989.2181069958847', - '1990.0823045267489', - '1992.0164609053497', - '1994.0329218106997', - '1995.0205761316872', - '1996.008230452675', - '1997.201646090535', - '1999.4238683127571', - '2001.0699588477366', - '2003.9094650205761' ], - y: - [ '41.74418604651163', - '43.6046511627907', - '43.6046511627907', - '41.74418604651163', - '45.93023255813954', - '44.883720930232556', - '44.76744186046511', - '43.139534883720934', - '43.13953488372094', - '43.72093023255814', - '42.325581395348834', - '43.95348837209302', - '44.18604651162791', - '42.209302325581405', - '43.95348837209302', - '42.09302325581395', - '37.09302325581396', - '35.34883720930232', - '35', - '34.06976744186047', - '36.27906976744186', - '33.48837209302325', - '33.48837209302326', - '33.13953488372094', - '35', - '40.58139534883722', - '41.395348837209305', - '41.3953488372093', - '39.65116279069768', - '38.95348837209302', - '37.67441860465116', - '33.37209302325582' ], - name: '99.5-99.9th', - line: { color: 'rgb(40, 119, 157)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2469135802469', - '1963.991769547325', - '1966.1316872427983', - '1967.0781893004116', - '1968.1069958847736', - '1969.0946502057614', - '1970.0823045267489', - '1972.0987654320988', - '1973.045267489712', - '1974.1152263374486', - '1975.0617283950617', - '1977.0781893004116', - '1978.0658436213992', - '1979.1358024691358', - '1981.0699588477366', - '1982.0987654320988', - '1983.0041152263375', - '1985.0617283950617', - '1986.0905349794239', - '1987.037037037037', - '1988.1069958847736', - '1989.0123456790122', - '1990.0411522633744', - '1991.0699588477366', - '1992.0164609053497', - '1992.5925925925926', - '1993.5802469135801', - '1994.8148148148148', - '1996.008230452675', - '1997.0781893004116', - '1998.724279835391', - '2000', - '2000.946502057613', - '2003.9094650205761' ], - y: - [ '55.58139534883721', - '57.093023255813954', - '56.27906976744186', - '53.0232558139535', - '57.906976744186046', - '57.09302325581396', - '59.18604651162791', - '56.51162790697674', - '56.16279069767442', - '54.186046511627914', - '56.27906976744187', - '55.58139534883721', - '52.558139534883715', - '53.13953488372093', - '49.651162790697676', - '42.20930232558139', - '41.395348837209305', - '40.697674418604656', - '38.95348837209302', - '40.46511627906976', - '34.76744186046511', - '35.116279069767444', - '34.53488372093023', - '36.74418604651162', - '36.97674418604652', - '40.93023255813954', - '44.41860465116279', - '45.58139534883722', - '44.999999999999986', - '42.674418604651166', - '41.86046511627906', - '40.58139534883719', - '40.69767441860466', - '34.65116279069769' ], - name: '99.9-99-99th', - line: { color: 'rgb(8, 94, 137)', width: 3 }, - opacity: 0.84, - type: 'scattergl' }, - { x: - [ '1960.2469135802469', - '1962.0987654320988', - '1964.1152263374486', - '1966.008230452675', - '1967.119341563786', - '1968.1069958847736', - '1969.0946502057614', - '1970.164609053498', - '1971.0288065843622', - '1972.0987654320988', - '1973.045267489712', - '1974.0740740740741', - '1975.1440329218108', - '1976.0493827160494', - '1978.0658436213992', - '1981.111111111111', - '1982.0987654320988', - '1983.0864197530864', - '1984.1152263374486', - '1985.0205761316872', - '1986.0905349794239', - '1987.037037037037', - '1988.0658436213992', - '1989.0123456790122', - '1990', - '1991.0699588477366', - '1991.9753086419753', - '1992.798353909465', - '1993.6213991769548', - '1994.9382716049383', - '1995.9670781893003', - '1996.5432098765432', - '1997.1604938271605', - '2000.0823045267489', - '2001.0699588477366', - '2003.9506172839506' ], - y: - [ '71.62790697674419', - '70.93023255813955', - '71.97674418604652', - '69.88372093023256', - '65', - '69.18604651162791', - '68.02325581395348', - '74.76744186046513', - '74.06976744186046', - '70.5813953488372', - '70.58139534883722', - '67.44186046511628', - '70', - '70.93023255813955', - '64.18604651162791', - '56.04651162790698', - '45.116279069767444', - '45.11627906976744', - '44.65116279069767', - '43.48837209302325', - '40.116279069767444', - '43.48837209302326', - '35.46511627906977', - '36.74418604651163', - '35.69767441860465', - '38.13953488372094', - '38.139534883720934', - '44.30232558139534', - '46.74418604651164', - '47.674418604651166', - '46.744186046511636', - '45.46511627906976', - '43.83720930232559', - '41.046511627906995', - '41.395348837209305', - '35.23255813953489' ], - name: '99.99-100th', - line: { color: 'rgb(2, 63, 101)', width: 3 }, - opacity: 0.84, - type: 'scattergl' } ], - layout: - { title: '
Average effective tax rates, by income percentiles, 1960-2004', - titlefont: { color: '', family: 'Arial, sans-serif', size: 14 }, - font: { family: 'Arial, sans-serif', size: 12, color: '#000' }, - showlegend: true, - autosize: false, - width: 606, - height: 400, - xaxis: - { title: 'Note: Data are for cash income. Source: Piketty and Saez (2007)', - titlefont: { color: 'rgb(102, 102, 102)', family: '', size: 11 }, - range: [ 1960, 2004 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: false, - zeroline: true, - showline: true, - autotick: true, - nticks: 0, - ticks: 'outside', - showticklabels: true, - tick0: 0, - dtick: 10, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 0.1, - anchor: 'y', - position: 0, - mirror: true, - overlaying: false, - autorange: false }, - yaxis: - { title: 'Tax Rate (%)', - titlefont: { color: '', family: '', size: 0 }, - range: [ 0, 80 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: true, - autotick: false, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 20, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: 'rgb(204, 204, 204)', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: 'rgba(0, 0, 0, 0)', - linewidth: 0.1, - anchor: 'x', - position: 0, - mirror: true, - overlaying: false, - autorange: false }, - legend: - { x: 1.02, - y: 0.9689655172413794, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: 'rgba(255, 255, 255, 0)', - bordercolor: 'rgba(255, 255, 255, 0)', - borderwidth: 0.1, - xanchor: 'left', - yanchor: 'auto' }, - margin: { l: 55, r: 0, b: 50, t: 60, pad: 2, autoexpand: true }, - paper_bgcolor: 'rgb(245, 245, 247)', - plot_bgcolor: 'rgb(245, 245, 247)', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_28.png b/devtools/test_dashboard/testplots-2d/gl2d_28.png deleted file mode 100644 index 9fd5234a400..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_28.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_29.json b/devtools/test_dashboard/testplots-2d/gl2d_29.json deleted file mode 100644 index 6e19815caf6..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_29.json +++ /dev/null @@ -1,3904 +0,0 @@ -{ data: - [ { x: - [ '2014-04-12 15:21:36', - '2014-04-12 15:36:36', - '2014-04-12 15:51:36', - '2014-04-12 16:06:36', - '2014-04-12 16:21:36', - '2014-04-12 16:36:35', - '2014-04-12 16:51:35', - '2014-04-12 17:06:36', - '2014-04-12 17:21:36', - '2014-04-12 17:36:35', - '2014-04-12 17:51:35', - '2014-04-12 18:06:35', - '2014-04-12 18:21:35', - '2014-04-12 18:36:36', - '2014-04-12 18:51:36', - '2014-04-12 19:06:36', - '2014-04-12 19:21:36', - '2014-04-12 19:36:37', - '2014-04-12 19:51:36', - '2014-04-12 20:06:36', - '2014-04-12 20:21:36', - '2014-04-12 20:36:36', - '2014-04-12 20:51:35', - '2014-04-12 21:06:36', - '2014-04-12 21:21:36', - '2014-04-12 21:36:36', - '2014-04-12 21:51:35', - '2014-04-12 22:06:36', - '2014-04-12 22:21:35', - '2014-04-12 22:36:35', - '2014-04-12 22:51:35', - '2014-04-12 23:06:36', - '2014-04-12 23:21:35', - '2014-04-12 23:36:35', - '2014-04-12 23:51:35', - '2014-04-13 00:06:35', - '2014-04-13 00:21:35', - '2014-04-13 00:36:35', - '2014-04-13 00:51:35', - '2014-04-13 01:06:36', - '2014-04-13 01:21:35', - '2014-04-13 01:36:36', - '2014-04-13 01:51:36', - '2014-04-13 02:06:36', - '2014-04-13 02:21:36', - '2014-04-13 02:36:36', - '2014-04-13 02:51:36', - '2014-04-13 03:06:36', - '2014-04-13 03:21:36', - '2014-04-13 03:36:36', - '2014-04-13 03:51:35', - '2014-04-13 04:06:36', - '2014-04-13 04:21:36', - '2014-04-13 04:36:36', - '2014-04-13 04:51:36', - '2014-04-13 05:06:35', - '2014-04-13 05:21:36', - '2014-04-13 05:36:36', - '2014-04-13 05:51:36', - '2014-04-13 06:06:36', - '2014-04-13 06:21:36', - '2014-04-13 06:36:36', - '2014-04-13 06:51:35', - '2014-04-13 07:06:36', - '2014-04-13 07:21:36', - '2014-04-13 07:36:36', - '2014-04-13 07:51:36', - '2014-04-13 08:06:35', - '2014-04-13 08:21:36', - '2014-04-13 08:36:35', - '2014-04-13 08:51:36', - '2014-04-13 09:06:36', - '2014-04-13 09:21:36', - '2014-04-13 09:36:35', - '2014-04-13 09:51:36', - '2014-04-13 10:06:36', - '2014-04-13 10:21:36', - '2014-04-13 10:36:35', - '2014-04-13 10:51:36', - '2014-04-13 11:06:36', - '2014-04-13 11:21:36', - '2014-04-13 11:36:35', - '2014-04-13 11:51:36', - '2014-04-13 12:06:36', - '2014-04-13 12:21:35', - '2014-04-13 12:36:35', - '2014-04-13 12:51:35', - '2014-04-13 13:06:35', - '2014-04-13 13:21:36', - '2014-04-13 13:36:36', - '2014-04-13 13:51:36', - '2014-04-13 14:06:36', - '2014-04-13 15:11:11', - '2014-04-13 15:26:12', - '2014-04-13 15:41:12', - '2014-04-13 15:56:12', - '2014-04-13 16:11:12', - '2014-04-13 16:26:16', - '2014-04-13 16:41:12', - '2014-04-13 16:56:12', - '2014-04-13 17:11:14', - '2014-04-13 17:26:12', - '2014-04-13 17:41:12', - '2014-04-13 17:56:12', - '2014-04-13 18:11:13', - '2014-04-13 18:26:13', - '2014-04-13 18:41:12', - '2014-04-13 18:56:12', - '2014-04-13 19:11:12', - '2014-04-13 19:26:12', - '2014-04-13 19:41:12', - '2014-04-13 19:56:12', - '2014-04-13 20:11:12', - '2014-04-13 20:26:13', - '2014-04-13 20:41:12', - '2014-04-13 20:56:12', - '2014-04-13 21:11:12', - '2014-04-13 21:26:13', - '2014-04-13 21:41:12', - '2014-04-13 21:56:12', - '2014-04-13 22:11:12', - '2014-04-13 22:26:12', - '2014-04-13 22:41:13', - '2014-04-13 22:56:13', - '2014-04-13 23:11:12', - '2014-04-13 23:26:12', - '2014-04-13 23:41:12', - '2014-04-13 23:56:13', - '2014-04-14 00:11:12', - '2014-04-14 00:26:12', - '2014-04-14 00:41:12', - '2014-04-14 00:56:12', - '2014-04-14 01:11:12', - '2014-04-14 01:26:12', - '2014-04-14 01:41:12', - '2014-04-14 01:56:12', - '2014-04-14 02:11:12', - '2014-04-14 02:26:12', - '2014-04-14 02:41:12', - '2014-04-14 02:56:12', - '2014-04-14 03:11:12', - '2014-04-14 03:26:12', - '2014-04-14 03:41:12', - '2014-04-14 03:56:12', - '2014-04-14 04:11:12', - '2014-04-14 04:26:12', - '2014-04-14 04:41:12', - '2014-04-14 04:56:12', - '2014-04-14 05:11:12', - '2014-04-14 05:26:12', - '2014-04-14 05:41:13', - '2014-04-14 05:56:12', - '2014-04-14 06:11:12', - '2014-04-14 06:26:12', - '2014-04-14 06:41:12', - '2014-04-14 06:56:12', - '2014-04-14 07:11:12', - '2014-04-14 07:26:12', - '2014-04-14 07:41:13', - '2014-04-14 07:56:12', - '2014-04-14 08:11:12', - '2014-04-14 08:26:12', - '2014-04-14 08:41:12', - '2014-04-14 08:56:12', - '2014-04-14 09:11:12', - '2014-04-14 09:26:12', - '2014-04-14 09:41:12', - '2014-04-14 09:56:12', - '2014-04-14 10:11:12', - '2014-04-14 10:26:12', - '2014-04-14 10:41:13', - '2014-04-14 10:56:12', - '2014-04-14 11:11:12', - '2014-04-14 11:26:12', - '2014-04-14 11:41:12', - '2014-04-14 11:56:12', - '2014-04-14 12:11:13', - '2014-04-14 12:26:12', - '2014-04-14 12:41:12', - '2014-04-14 12:56:12', - '2014-04-14 13:11:12', - '2014-04-14 13:26:12', - '2014-04-14 13:41:12', - '2014-04-14 13:56:12', - '2014-04-14 14:11:12', - '2014-04-14 14:26:12', - '2014-04-14 14:41:12', - '2014-04-14 14:56:13', - '2014-04-14 15:11:12' ], - y: - [ 67.3, - 66.9, - 67.3, - 66.9, - 65.8, - 66.6, - 66.6, - 66.7, - 66.4, - 66, - 65.7, - 64.8, - 64, - 62.8, - 61.5, - 60.4, - 59.7, - 59.4, - 59, - 58.6, - 58.3, - 58.3, - 58.1, - 57.9, - 57.9, - 57.9, - 57.9, - 57.9, - 57.7, - 57.7, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.9, - 57.9, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.7, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.6, - 57.7, - 57.9, - 58.3, - 58.6, - 59.2, - 59.5, - 60.1, - 60.8, - 61.9, - 63, - 63.9, - 64.8, - 65.5, - 65.7, - 65.8, - 65.1, - 65.8, - 66.6, - 66.9, - 69.8, - 69.6, - 69.6, - 68.4, - 68.7, - 70.3, - 70.2, - 69.6, - 70.2, - 69.4, - 68.5, - 67.8, - 67.3, - 67.5, - 67.1, - 66.9, - 67.3, - 67.1, - 66.7, - 66.2, - 65.3, - 64.9, - 64.2, - 63.1, - 61.9, - 61, - 60.1, - 59.5, - 59.2, - 59, - 58.8, - 58.8, - 58.8, - 58.6, - 58.6, - 58.6, - 58.6, - 58.5, - 58.3, - 58.1, - 57.7, - 57.6, - 57.4, - 57.2, - 56.8, - 56.7, - 56.5, - 56.1, - 55.8, - 55.2, - 55.2, - 54.9, - 54.7, - 54.1, - 54, - 53.6, - 53.4, - 53.2, - 53.1, - 52.5, - 52.3, - 52.2, - 52.3, - 52.3, - 52.3, - 52.3, - 52.2, - 52, - 51.6, - 51.6, - 51.4, - 51.3, - 51.3, - 51.4, - 52.3, - 53.2, - 54.7, - 56.1, - 57, - 57.9, - 59.4, - 60.6, - 62.2, - 64.2, - 65.8, - 67.6, - 68.9, - 70.9, - 72.7, - 73.8, - 75.6, - 77.2, - 78.3, - 79.7, - 80.2, - 79.9, - 79.9, - 80.8, - 80.8, - 81.1, - 82, - 82.6, - 83.1, - 82.2, - 81.5 ], - mode: 'lines', - name: 'Outdoor (wunderground.com)', - type: 'scattergl' }, - { x: - [ '2014-04-12 15:21:34', - '2014-04-12 15:26:35', - '2014-04-12 15:31:35', - '2014-04-12 15:36:35', - '2014-04-12 15:41:35', - '2014-04-12 15:46:34', - '2014-04-12 15:51:34', - '2014-04-12 15:56:34', - '2014-04-12 16:01:35', - '2014-04-12 16:06:34', - '2014-04-12 16:11:34', - '2014-04-12 16:16:35', - '2014-04-12 16:21:35', - '2014-04-12 16:26:35', - '2014-04-12 16:31:34', - '2014-04-12 16:36:35', - '2014-04-12 16:41:35', - '2014-04-12 16:46:35', - '2014-04-12 16:51:34', - '2014-04-12 16:56:34', - '2014-04-12 17:01:34', - '2014-04-12 17:06:34', - '2014-04-12 17:11:34', - '2014-04-12 17:16:34', - '2014-04-12 17:21:34', - '2014-04-12 17:26:34', - '2014-04-12 17:31:34', - '2014-04-12 17:36:34', - '2014-04-12 17:41:35', - '2014-04-12 17:46:35', - '2014-04-12 17:51:34', - '2014-04-12 17:56:34', - '2014-04-12 18:01:35', - '2014-04-12 18:06:34', - '2014-04-12 18:11:34', - '2014-04-12 18:16:35', - '2014-04-12 18:21:34', - '2014-04-12 18:26:34', - '2014-04-12 18:31:34', - '2014-04-12 18:36:35', - '2014-04-12 18:41:34', - '2014-04-12 18:46:34', - '2014-04-12 18:51:35', - '2014-04-12 18:56:35', - '2014-04-12 19:01:35', - '2014-04-12 19:06:34', - '2014-04-12 19:11:34', - '2014-04-12 19:16:34', - '2014-04-12 19:21:34', - '2014-04-12 19:26:34', - '2014-04-12 19:31:34', - '2014-04-12 19:36:35', - '2014-04-12 19:41:35', - '2014-04-12 19:46:34', - '2014-04-12 19:51:35', - '2014-04-12 19:56:35', - '2014-04-12 20:01:36', - '2014-04-12 20:06:35', - '2014-04-12 20:11:34', - '2014-04-12 20:16:35', - '2014-04-12 20:21:35', - '2014-04-12 20:26:34', - '2014-04-12 20:31:35', - '2014-04-12 20:36:35', - '2014-04-12 20:41:34', - '2014-04-12 20:46:34', - '2014-04-12 20:51:34', - '2014-04-12 20:56:34', - '2014-04-12 21:01:35', - '2014-04-12 21:06:35', - '2014-04-12 21:11:35', - '2014-04-12 21:16:35', - '2014-04-12 21:21:34', - '2014-04-12 21:26:35', - '2014-04-12 21:31:35', - '2014-04-12 21:36:35', - '2014-04-12 21:41:35', - '2014-04-12 21:46:35', - '2014-04-12 21:51:34', - '2014-04-12 21:56:34', - '2014-04-12 22:01:34', - '2014-04-12 22:06:35', - '2014-04-12 22:11:35', - '2014-04-12 22:16:35', - '2014-04-12 22:21:34', - '2014-04-12 22:26:34', - '2014-04-12 22:31:35', - '2014-04-12 22:36:34', - '2014-04-12 22:41:34', - '2014-04-12 22:46:35', - '2014-04-12 22:51:34', - '2014-04-12 22:56:34', - '2014-04-12 23:01:34', - '2014-04-12 23:06:35', - '2014-04-12 23:11:34', - '2014-04-12 23:16:35', - '2014-04-12 23:21:34', - '2014-04-12 23:26:34', - '2014-04-12 23:31:35', - '2014-04-12 23:36:34', - '2014-04-12 23:41:35', - '2014-04-12 23:46:34', - '2014-04-12 23:51:34', - '2014-04-12 23:56:34', - '2014-04-13 00:01:34', - '2014-04-13 00:06:34', - '2014-04-13 00:11:34', - '2014-04-13 00:16:35', - '2014-04-13 00:21:34', - '2014-04-13 00:26:34', - '2014-04-13 00:31:34', - '2014-04-13 00:36:35', - '2014-04-13 00:41:34', - '2014-04-13 00:46:34', - '2014-04-13 00:51:34', - '2014-04-13 00:56:35', - '2014-04-13 01:01:34', - '2014-04-13 01:06:35', - '2014-04-13 01:11:34', - '2014-04-13 01:16:35', - '2014-04-13 01:21:34', - '2014-04-13 01:26:35', - '2014-04-13 01:31:34', - '2014-04-13 01:36:35', - '2014-04-13 01:41:34', - '2014-04-13 01:46:34', - '2014-04-13 01:51:35', - '2014-04-13 01:56:34', - '2014-04-13 02:01:34', - '2014-04-13 02:06:35', - '2014-04-13 02:11:35', - '2014-04-13 02:16:34', - '2014-04-13 02:21:35', - '2014-04-13 02:26:34', - '2014-04-13 02:31:34', - '2014-04-13 02:36:35', - '2014-04-13 02:41:35', - '2014-04-13 02:46:35', - '2014-04-13 02:51:35', - '2014-04-13 02:56:34', - '2014-04-13 03:01:35', - '2014-04-13 03:06:35', - '2014-04-13 03:11:35', - '2014-04-13 03:16:35', - '2014-04-13 03:21:35', - '2014-04-13 03:26:35', - '2014-04-13 03:31:35', - '2014-04-13 03:36:34', - '2014-04-13 03:41:35', - '2014-04-13 03:46:34', - '2014-04-13 03:51:34', - '2014-04-13 03:56:35', - '2014-04-13 04:01:34', - '2014-04-13 04:06:35', - '2014-04-13 04:11:34', - '2014-04-13 04:16:34', - '2014-04-13 04:21:35', - '2014-04-13 04:26:35', - '2014-04-13 04:31:35', - '2014-04-13 04:36:35', - '2014-04-13 04:41:35', - '2014-04-13 04:46:35', - '2014-04-13 04:51:34', - '2014-04-13 04:56:34', - '2014-04-13 05:01:34', - '2014-04-13 05:06:34', - '2014-04-13 05:11:34', - '2014-04-13 05:16:35', - '2014-04-13 05:21:34', - '2014-04-13 05:26:35', - '2014-04-13 05:31:35', - '2014-04-13 05:36:35', - '2014-04-13 05:41:34', - '2014-04-13 05:46:34', - '2014-04-13 05:51:35', - '2014-04-13 05:56:35', - '2014-04-13 06:01:35', - '2014-04-13 06:06:35', - '2014-04-13 06:11:34', - '2014-04-13 06:16:35', - '2014-04-13 06:21:35', - '2014-04-13 06:26:35', - '2014-04-13 06:31:34', - '2014-04-13 06:36:34', - '2014-04-13 06:41:35', - '2014-04-13 06:46:35', - '2014-04-13 06:51:34', - '2014-04-13 06:56:35', - '2014-04-13 07:01:34', - '2014-04-13 07:06:35', - '2014-04-13 07:11:35', - '2014-04-13 07:16:35', - '2014-04-13 07:21:35', - '2014-04-13 07:26:35', - '2014-04-13 07:31:34', - '2014-04-13 07:36:34', - '2014-04-13 07:41:35', - '2014-04-13 07:46:34', - '2014-04-13 07:51:35', - '2014-04-13 07:56:34', - '2014-04-13 08:01:34', - '2014-04-13 08:06:34', - '2014-04-13 08:11:35', - '2014-04-13 08:16:34', - '2014-04-13 08:21:34', - '2014-04-13 08:26:34', - '2014-04-13 08:31:34', - '2014-04-13 08:36:34', - '2014-04-13 08:41:35', - '2014-04-13 08:46:34', - '2014-04-13 08:51:35', - '2014-04-13 08:56:35', - '2014-04-13 09:01:34', - '2014-04-13 09:06:35', - '2014-04-13 09:11:35', - '2014-04-13 09:16:34', - '2014-04-13 09:21:35', - '2014-04-13 09:26:35', - '2014-04-13 09:31:35', - '2014-04-13 09:36:35', - '2014-04-13 09:41:34', - '2014-04-13 09:46:34', - '2014-04-13 09:51:34', - '2014-04-13 09:56:34', - '2014-04-13 10:01:35', - '2014-04-13 10:06:35', - '2014-04-13 10:11:34', - '2014-04-13 10:16:35', - '2014-04-13 10:21:34', - '2014-04-13 10:26:35', - '2014-04-13 10:31:34', - '2014-04-13 10:36:34', - '2014-04-13 10:41:35', - '2014-04-13 10:46:35', - '2014-04-13 10:51:35', - '2014-04-13 10:56:34', - '2014-04-13 11:01:34', - '2014-04-13 11:06:35', - '2014-04-13 11:11:35', - '2014-04-13 11:16:35', - '2014-04-13 11:21:35', - '2014-04-13 11:26:35', - '2014-04-13 11:31:34', - '2014-04-13 11:36:34', - '2014-04-13 11:41:35', - '2014-04-13 11:46:35', - '2014-04-13 11:51:35', - '2014-04-13 11:56:35', - '2014-04-13 12:01:34', - '2014-04-13 12:06:34', - '2014-04-13 12:11:34', - '2014-04-13 12:16:34', - '2014-04-13 12:21:34', - '2014-04-13 12:26:35', - '2014-04-13 12:31:35', - '2014-04-13 12:36:34', - '2014-04-13 12:41:34', - '2014-04-13 12:46:35', - '2014-04-13 12:51:35', - '2014-04-13 12:56:35', - '2014-04-13 13:01:34', - '2014-04-13 13:06:34', - '2014-04-13 13:11:35', - '2014-04-13 13:16:34', - '2014-04-13 13:21:35', - '2014-04-13 13:26:35', - '2014-04-13 13:31:35', - '2014-04-13 13:36:35', - '2014-04-13 13:41:34', - '2014-04-13 13:46:34', - '2014-04-13 13:51:34', - '2014-04-13 13:56:35', - '2014-04-13 14:01:35', - '2014-04-13 14:06:34', - '2014-04-13 14:11:35', - '2014-04-13 15:11:11', - '2014-04-13 15:16:15', - '2014-04-13 15:21:15', - '2014-04-13 15:26:15', - '2014-04-13 15:31:15', - '2014-04-13 15:36:15', - '2014-04-13 15:41:15', - '2014-04-13 15:46:15', - '2014-04-13 15:51:15', - '2014-04-13 15:56:15', - '2014-04-13 16:01:15', - '2014-04-13 16:06:15', - '2014-04-13 16:11:15', - '2014-04-13 16:16:15', - '2014-04-13 16:21:15', - '2014-04-13 16:26:15', - '2014-04-13 16:31:15', - '2014-04-13 16:36:15', - '2014-04-13 16:41:15', - '2014-04-13 16:46:15', - '2014-04-13 16:51:15', - '2014-04-13 16:56:15', - '2014-04-13 17:01:15', - '2014-04-13 17:06:15', - '2014-04-13 17:11:15', - '2014-04-13 17:16:15', - '2014-04-13 17:21:15', - '2014-04-13 17:26:15', - '2014-04-13 17:31:15', - '2014-04-13 17:36:15', - '2014-04-13 17:41:15', - '2014-04-13 17:46:15', - '2014-04-13 17:51:15', - '2014-04-13 17:56:15', - '2014-04-13 18:01:15', - '2014-04-13 18:06:15', - '2014-04-13 18:11:15', - '2014-04-13 18:16:15', - '2014-04-13 18:21:15', - '2014-04-13 18:26:15', - '2014-04-13 18:31:15', - '2014-04-13 18:36:15', - '2014-04-13 18:41:15', - '2014-04-13 18:46:15', - '2014-04-13 18:51:15', - '2014-04-13 18:56:17', - '2014-04-13 19:01:15', - '2014-04-13 19:06:16', - '2014-04-13 19:11:15', - '2014-04-13 19:16:15', - '2014-04-13 19:21:15', - '2014-04-13 19:26:15', - '2014-04-13 19:31:15', - '2014-04-13 19:36:15', - '2014-04-13 19:41:15', - '2014-04-13 19:46:15', - '2014-04-13 19:51:15', - '2014-04-13 19:56:15', - '2014-04-13 20:01:15', - '2014-04-13 20:06:15', - '2014-04-13 20:11:15', - '2014-04-13 20:16:15', - '2014-04-13 20:21:15', - '2014-04-13 20:26:15', - '2014-04-13 20:31:15', - '2014-04-13 20:36:15', - '2014-04-13 20:41:15', - '2014-04-13 20:46:15', - '2014-04-13 20:51:15', - '2014-04-13 20:56:15', - '2014-04-13 21:01:15', - '2014-04-13 21:06:15', - '2014-04-13 21:11:15', - '2014-04-13 21:16:15', - '2014-04-13 21:21:15', - '2014-04-13 21:26:15', - '2014-04-13 21:31:15', - '2014-04-13 21:36:15', - '2014-04-13 21:41:15', - '2014-04-13 21:46:15', - '2014-04-13 21:51:15', - '2014-04-13 21:56:15', - '2014-04-13 22:01:15', - '2014-04-13 22:06:15', - '2014-04-13 22:11:15', - '2014-04-13 22:16:15', - '2014-04-13 22:21:15', - '2014-04-13 22:26:15', - '2014-04-13 22:31:15', - '2014-04-13 22:36:15', - '2014-04-13 22:41:15', - '2014-04-13 22:46:15', - '2014-04-13 22:51:15', - '2014-04-13 22:56:15', - '2014-04-13 23:01:15', - '2014-04-13 23:06:15', - '2014-04-13 23:11:15', - '2014-04-13 23:16:15', - '2014-04-13 23:21:15', - '2014-04-13 23:26:15', - '2014-04-13 23:31:15', - '2014-04-13 23:36:15', - '2014-04-13 23:41:15', - '2014-04-13 23:46:15', - '2014-04-13 23:51:15', - '2014-04-13 23:56:15', - '2014-04-14 00:01:15', - '2014-04-14 00:06:15', - '2014-04-14 00:11:15', - '2014-04-14 00:16:15', - '2014-04-14 00:21:15', - '2014-04-14 00:26:15', - '2014-04-14 00:31:16', - '2014-04-14 00:36:15', - '2014-04-14 00:41:15', - '2014-04-14 00:46:15', - '2014-04-14 00:51:15', - '2014-04-14 00:56:15', - '2014-04-14 01:01:15', - '2014-04-14 01:06:15', - '2014-04-14 01:11:15', - '2014-04-14 01:16:15', - '2014-04-14 01:21:15', - '2014-04-14 01:26:15', - '2014-04-14 01:31:15', - '2014-04-14 01:36:15', - '2014-04-14 01:41:15', - '2014-04-14 01:46:15', - '2014-04-14 01:51:15', - '2014-04-14 01:56:15', - '2014-04-14 02:01:15', - '2014-04-14 02:06:15', - '2014-04-14 02:11:15', - '2014-04-14 02:16:15', - '2014-04-14 02:21:15', - '2014-04-14 02:26:15', - '2014-04-14 02:31:15', - '2014-04-14 02:36:15', - '2014-04-14 02:41:15', - '2014-04-14 02:46:15', - '2014-04-14 02:51:15', - '2014-04-14 02:56:15', - '2014-04-14 03:01:15', - '2014-04-14 03:06:15', - '2014-04-14 03:11:15', - '2014-04-14 03:16:15', - '2014-04-14 03:21:15', - '2014-04-14 03:26:15', - '2014-04-14 03:31:15', - '2014-04-14 03:36:15', - '2014-04-14 03:41:15', - '2014-04-14 03:46:15', - '2014-04-14 03:51:15', - '2014-04-14 03:56:15', - '2014-04-14 04:01:15', - '2014-04-14 04:06:15', - '2014-04-14 04:11:15', - '2014-04-14 04:16:15', - '2014-04-14 04:21:15', - '2014-04-14 04:26:15', - '2014-04-14 04:31:15', - '2014-04-14 04:36:15', - '2014-04-14 04:41:15', - '2014-04-14 04:46:15', - '2014-04-14 04:51:15', - '2014-04-14 04:56:15', - '2014-04-14 05:01:15', - '2014-04-14 05:06:15', - '2014-04-14 05:11:15', - '2014-04-14 05:16:15', - '2014-04-14 05:21:15', - '2014-04-14 05:26:15', - '2014-04-14 05:31:15', - '2014-04-14 05:36:15', - '2014-04-14 05:41:15', - '2014-04-14 05:46:15', - '2014-04-14 05:51:15', - '2014-04-14 05:56:15', - '2014-04-14 06:01:15', - '2014-04-14 06:06:15', - '2014-04-14 06:11:15', - '2014-04-14 06:16:15', - '2014-04-14 06:21:15', - '2014-04-14 06:26:15', - '2014-04-14 06:31:15', - '2014-04-14 06:36:15', - '2014-04-14 06:41:15', - '2014-04-14 06:46:15', - '2014-04-14 06:51:15', - '2014-04-14 06:56:15', - '2014-04-14 07:01:15', - '2014-04-14 07:06:15', - '2014-04-14 07:11:15', - '2014-04-14 07:16:15', - '2014-04-14 07:21:15', - '2014-04-14 07:26:15', - '2014-04-14 07:31:15', - '2014-04-14 07:36:15', - '2014-04-14 07:41:15', - '2014-04-14 07:46:15', - '2014-04-14 07:51:15', - '2014-04-14 07:56:15', - '2014-04-14 08:01:15', - '2014-04-14 08:06:15', - '2014-04-14 08:11:15', - '2014-04-14 08:16:15', - '2014-04-14 08:21:15', - '2014-04-14 08:26:15', - '2014-04-14 08:31:15', - '2014-04-14 08:36:15', - '2014-04-14 08:41:15', - '2014-04-14 08:46:15', - '2014-04-14 08:51:15', - '2014-04-14 08:56:15', - '2014-04-14 09:01:15', - '2014-04-14 09:06:15', - '2014-04-14 09:11:15', - '2014-04-14 09:16:15', - '2014-04-14 09:21:15', - '2014-04-14 09:26:15', - '2014-04-14 09:31:15', - '2014-04-14 09:36:15', - '2014-04-14 09:41:15', - '2014-04-14 09:46:15', - '2014-04-14 09:51:15', - '2014-04-14 09:56:15', - '2014-04-14 10:01:15', - '2014-04-14 10:06:15', - '2014-04-14 10:11:15', - '2014-04-14 10:16:15', - '2014-04-14 10:21:15', - '2014-04-14 10:26:15', - '2014-04-14 10:31:15', - '2014-04-14 10:36:15', - '2014-04-14 10:41:15', - '2014-04-14 10:46:15', - '2014-04-14 10:51:15', - '2014-04-14 10:56:15', - '2014-04-14 11:01:15', - '2014-04-14 11:06:15', - '2014-04-14 11:11:15', - '2014-04-14 11:16:15', - '2014-04-14 11:21:15', - '2014-04-14 11:26:15', - '2014-04-14 11:31:15', - '2014-04-14 11:36:15', - '2014-04-14 11:41:15', - '2014-04-14 11:46:15', - '2014-04-14 11:51:15', - '2014-04-14 11:56:15', - '2014-04-14 12:01:15', - '2014-04-14 12:06:15', - '2014-04-14 12:11:15', - '2014-04-14 12:16:15', - '2014-04-14 12:21:15', - '2014-04-14 12:26:15', - '2014-04-14 12:31:15', - '2014-04-14 12:36:15', - '2014-04-14 12:41:15', - '2014-04-14 12:46:15', - '2014-04-14 12:51:15', - '2014-04-14 12:56:15', - '2014-04-14 13:01:15', - '2014-04-14 13:06:15', - '2014-04-14 13:11:15', - '2014-04-14 13:16:15', - '2014-04-14 13:21:15', - '2014-04-14 13:26:15', - '2014-04-14 13:31:15', - '2014-04-14 13:36:15', - '2014-04-14 13:41:15', - '2014-04-14 13:46:15', - '2014-04-14 13:51:15', - '2014-04-14 13:56:15', - '2014-04-14 14:01:15', - '2014-04-14 14:06:15', - '2014-04-14 14:11:15', - '2014-04-14 14:16:15', - '2014-04-14 14:21:15', - '2014-04-14 14:26:15', - '2014-04-14 14:31:15', - '2014-04-14 14:36:16', - '2014-04-14 14:41:15', - '2014-04-14 14:46:15', - '2014-04-14 14:51:15', - '2014-04-14 14:56:15', - '2014-04-14 15:01:15', - '2014-04-14 15:06:15', - '2014-04-14 15:11:15', - '2014-04-14 15:16:15' ], - y: - [ 73.6, - 73.6, - 74.7, - 74.7, - 74.7, - 74.7, - 74, - 74, - 74, - 74, - 74, - 74, - 74, - 75, - 75, - 75, - 75, - 75, - 75, - 75, - 75, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 74.7, - 74.7, - 74.7, - 74.7, - 74.7, - 74.7, - 74.7, - 74.7, - 74.7, - 74.7, - 74.5, - 74.5, - 74.5, - 73.5, - 73.5, - 73.5, - 73.5, - 73.5, - 73.5, - 73.5, - 73.5, - 73.5, - 73.5, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.4, - 72.5, - 72.5, - 72.5, - 72.5, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 72.1, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 71.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.5, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 69.9, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 72.3, - 72.3, - 72.3, - 72.5, - 72.5, - 72.5, - 74.8, - 74.8, - 74.8, - 74.8, - 74.8, - 74.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.8, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.1, - 75.6, - 75.5, - 75.5, - 75.5, - 75.5, - 75.5, - 75.5, - 75.5, - 75.5, - 75.5, - 75.5, - 74.5, - 74.5, - 74.5, - 73.4, - 73.4, - 73.4, - 73.4, - 73.4, - 73.4, - 73.4, - 72.3, - 72.3, - 72.3, - 72.3, - 72.3, - 72.3, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.9, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.4, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 70.5, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 69.4, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 68.5, - 67.5, - 67.5, - 67.5, - 67.5, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.4, - 67.9, - 67.9, - 67.9, - 67.9, - 67.9, - 67.9, - 67.3, - 67.3, - 67.3, - 67.3, - 67.3, - 67.3, - 67.3, - 67.3, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 67.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 68.7, - 69.7, - 69.7, - 69.7, - 69.7, - 69.7, - 69.7, - 69.7, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 70.6, - 71.7, - 71.7, - 71.7, - 71.7, - 73.3, - 73.3, - 73.3, - 73.3, - 74.2, - 74.2, - 74.2, - 74.2, - 74.2, - 74.2, - 75.8 ], - mode: 'lines', - name: '1st Floor (Nest)', - type: 'scattergl' }, - { x: - [ '2014-04-12 15:21:33', - '2014-04-12 15:26:33', - '2014-04-12 15:31:33', - '2014-04-12 15:36:33', - '2014-04-12 15:41:33', - '2014-04-12 15:46:33', - '2014-04-12 15:51:33', - '2014-04-12 15:56:33', - '2014-04-12 16:01:33', - '2014-04-12 16:06:33', - '2014-04-12 16:11:33', - '2014-04-12 16:16:33', - '2014-04-12 16:21:33', - '2014-04-12 16:26:33', - '2014-04-12 16:31:33', - '2014-04-12 16:36:34', - '2014-04-12 16:41:33', - '2014-04-12 16:46:33', - '2014-04-12 16:51:33', - '2014-04-12 16:56:33', - '2014-04-12 17:01:33', - '2014-04-12 17:06:33', - '2014-04-12 17:11:33', - '2014-04-12 17:16:34', - '2014-04-12 17:21:33', - '2014-04-12 17:26:33', - '2014-04-12 17:31:33', - '2014-04-12 17:36:33', - '2014-04-12 17:41:33', - '2014-04-12 17:46:33', - '2014-04-12 17:51:33', - '2014-04-12 17:56:33', - '2014-04-12 18:01:33', - '2014-04-12 18:06:33', - '2014-04-12 18:11:33', - '2014-04-12 18:16:33', - '2014-04-12 18:21:33', - '2014-04-12 18:26:33', - '2014-04-12 18:31:33', - '2014-04-12 18:36:33', - '2014-04-12 18:41:33', - '2014-04-12 18:46:33', - '2014-04-12 18:51:33', - '2014-04-12 18:56:33', - '2014-04-12 19:01:33', - '2014-04-12 19:06:33', - '2014-04-12 19:11:33', - '2014-04-12 19:16:33', - '2014-04-12 19:21:33', - '2014-04-12 19:26:33', - '2014-04-12 19:31:33', - '2014-04-12 19:36:33', - '2014-04-12 19:41:33', - '2014-04-12 19:46:33', - '2014-04-12 19:51:33', - '2014-04-12 19:56:33', - '2014-04-12 20:01:33', - '2014-04-12 20:06:33', - '2014-04-12 20:11:33', - '2014-04-12 20:16:33', - '2014-04-12 20:21:33', - '2014-04-12 20:26:33', - '2014-04-12 20:31:33', - '2014-04-12 20:36:33', - '2014-04-12 20:41:33', - '2014-04-12 20:46:33', - '2014-04-12 20:51:33', - '2014-04-12 20:56:33', - '2014-04-12 21:01:33', - '2014-04-12 21:06:33', - '2014-04-12 21:11:33', - '2014-04-12 21:16:33', - '2014-04-12 21:21:33', - '2014-04-12 21:26:33', - '2014-04-12 21:31:33', - '2014-04-12 21:36:33', - '2014-04-12 21:41:33', - '2014-04-12 21:46:33', - '2014-04-12 21:51:33', - '2014-04-12 21:56:34', - '2014-04-12 22:01:33', - '2014-04-12 22:06:33', - '2014-04-12 22:11:33', - '2014-04-12 22:16:33', - '2014-04-12 22:21:33', - '2014-04-12 22:26:33', - '2014-04-12 22:31:33', - '2014-04-12 22:36:33', - '2014-04-12 22:41:33', - '2014-04-12 22:46:33', - '2014-04-12 22:51:33', - '2014-04-12 22:56:33', - '2014-04-12 23:01:33', - '2014-04-12 23:06:33', - '2014-04-12 23:11:33', - '2014-04-12 23:16:33', - '2014-04-12 23:21:33', - '2014-04-12 23:26:33', - '2014-04-12 23:31:33', - '2014-04-12 23:36:33', - '2014-04-12 23:41:33', - '2014-04-12 23:46:33', - '2014-04-12 23:51:33', - '2014-04-12 23:56:33', - '2014-04-13 00:01:33', - '2014-04-13 00:06:33', - '2014-04-13 00:11:33', - '2014-04-13 00:16:33', - '2014-04-13 00:21:33', - '2014-04-13 00:26:33', - '2014-04-13 00:31:33', - '2014-04-13 00:36:33', - '2014-04-13 00:41:33', - '2014-04-13 00:46:33', - '2014-04-13 00:51:33', - '2014-04-13 00:56:33', - '2014-04-13 01:01:33', - '2014-04-13 01:06:33', - '2014-04-13 01:11:33', - '2014-04-13 01:16:33', - '2014-04-13 01:21:33', - '2014-04-13 01:26:33', - '2014-04-13 01:31:33', - '2014-04-13 01:36:33', - '2014-04-13 01:41:33', - '2014-04-13 01:46:33', - '2014-04-13 01:51:33', - '2014-04-13 01:56:33', - '2014-04-13 02:01:33', - '2014-04-13 02:06:33', - '2014-04-13 02:11:33', - '2014-04-13 02:16:33', - '2014-04-13 02:21:33', - '2014-04-13 02:26:33', - '2014-04-13 02:31:33', - '2014-04-13 02:36:33', - '2014-04-13 02:41:33', - '2014-04-13 02:46:33', - '2014-04-13 02:51:33', - '2014-04-13 02:56:33', - '2014-04-13 03:01:33', - '2014-04-13 03:06:33', - '2014-04-13 03:11:33', - '2014-04-13 03:16:33', - '2014-04-13 03:21:33', - '2014-04-13 03:26:33', - '2014-04-13 03:31:33', - '2014-04-13 03:36:33', - '2014-04-13 03:41:33', - '2014-04-13 03:46:33', - '2014-04-13 03:51:33', - '2014-04-13 03:56:33', - '2014-04-13 04:01:33', - '2014-04-13 04:06:33', - '2014-04-13 04:11:33', - '2014-04-13 04:16:33', - '2014-04-13 04:21:33', - '2014-04-13 04:26:33', - '2014-04-13 04:31:33', - '2014-04-13 04:36:33', - '2014-04-13 04:41:33', - '2014-04-13 04:46:33', - '2014-04-13 04:51:33', - '2014-04-13 04:56:33', - '2014-04-13 05:01:33', - '2014-04-13 05:06:33', - '2014-04-13 05:11:33', - '2014-04-13 05:16:33', - '2014-04-13 05:21:33', - '2014-04-13 05:26:33', - '2014-04-13 05:31:33', - '2014-04-13 05:36:33', - '2014-04-13 05:41:33', - '2014-04-13 05:46:33', - '2014-04-13 05:51:33', - '2014-04-13 05:56:33', - '2014-04-13 06:01:33', - '2014-04-13 06:06:33', - '2014-04-13 06:11:33', - '2014-04-13 06:16:33', - '2014-04-13 06:21:33', - '2014-04-13 06:26:33', - '2014-04-13 06:31:33', - '2014-04-13 06:36:33', - '2014-04-13 06:41:33', - '2014-04-13 06:46:33', - '2014-04-13 06:51:33', - '2014-04-13 06:56:33', - '2014-04-13 07:01:33', - '2014-04-13 07:06:33', - '2014-04-13 07:11:33', - '2014-04-13 07:16:33', - '2014-04-13 07:21:33', - '2014-04-13 07:26:33', - '2014-04-13 07:31:33', - '2014-04-13 07:36:33', - '2014-04-13 07:41:33', - '2014-04-13 07:46:33', - '2014-04-13 07:51:33', - '2014-04-13 07:56:33', - '2014-04-13 08:01:33', - '2014-04-13 08:06:33', - '2014-04-13 08:11:33', - '2014-04-13 08:16:33', - '2014-04-13 08:21:33', - '2014-04-13 08:26:33', - '2014-04-13 08:31:33', - '2014-04-13 08:36:33', - '2014-04-13 08:41:33', - '2014-04-13 08:46:33', - '2014-04-13 08:51:33', - '2014-04-13 08:56:33', - '2014-04-13 09:01:33', - '2014-04-13 09:06:33', - '2014-04-13 09:11:33', - '2014-04-13 09:16:33', - '2014-04-13 09:21:33', - '2014-04-13 09:26:33', - '2014-04-13 09:31:33', - '2014-04-13 09:36:33', - '2014-04-13 09:41:33', - '2014-04-13 09:46:33', - '2014-04-13 09:51:33', - '2014-04-13 09:56:33', - '2014-04-13 10:01:33', - '2014-04-13 10:06:33', - '2014-04-13 10:11:33', - '2014-04-13 10:16:33', - '2014-04-13 10:21:33', - '2014-04-13 10:26:33', - '2014-04-13 10:31:33', - '2014-04-13 10:36:33', - '2014-04-13 10:41:33', - '2014-04-13 10:46:33', - '2014-04-13 10:51:33', - '2014-04-13 10:56:33', - '2014-04-13 11:01:33', - '2014-04-13 11:06:33', - '2014-04-13 11:11:33', - '2014-04-13 11:16:33', - '2014-04-13 11:21:33', - '2014-04-13 11:26:33', - '2014-04-13 11:31:33', - '2014-04-13 11:36:33', - '2014-04-13 11:41:33', - '2014-04-13 11:46:33', - '2014-04-13 11:51:33', - '2014-04-13 11:56:33', - '2014-04-13 12:01:33', - '2014-04-13 12:06:33', - '2014-04-13 12:11:33', - '2014-04-13 12:16:33', - '2014-04-13 12:21:33', - '2014-04-13 12:26:33', - '2014-04-13 12:31:33', - '2014-04-13 12:36:33', - '2014-04-13 12:41:33', - '2014-04-13 12:46:33', - '2014-04-13 12:51:33', - '2014-04-13 12:56:33', - '2014-04-13 13:01:33', - '2014-04-13 13:06:33', - '2014-04-13 13:11:33', - '2014-04-13 13:16:33', - '2014-04-13 13:21:33', - '2014-04-13 13:26:33', - '2014-04-13 13:31:33', - '2014-04-13 13:36:33', - '2014-04-13 13:41:33', - '2014-04-13 13:46:33', - '2014-04-13 13:51:33', - '2014-04-13 13:56:33', - '2014-04-13 14:01:33', - '2014-04-13 14:06:33', - '2014-04-13 14:11:33', - '2014-04-13 15:11:10', - '2014-04-13 15:16:12', - '2014-04-13 15:21:11', - '2014-04-13 15:26:11', - '2014-04-13 15:31:11', - '2014-04-13 15:36:11', - '2014-04-13 15:41:11', - '2014-04-13 15:46:11', - '2014-04-13 15:51:11', - '2014-04-13 15:56:11', - '2014-04-13 16:01:11', - '2014-04-13 16:06:11', - '2014-04-13 16:11:11', - '2014-04-13 16:16:11', - '2014-04-13 16:21:11', - '2014-04-13 16:26:11', - '2014-04-13 16:31:11', - '2014-04-13 16:36:11', - '2014-04-13 16:41:12', - '2014-04-13 16:46:12', - '2014-04-13 16:51:11', - '2014-04-13 16:56:11', - '2014-04-13 17:01:11', - '2014-04-13 17:06:11', - '2014-04-13 17:11:11', - '2014-04-13 17:16:11', - '2014-04-13 17:21:11', - '2014-04-13 17:26:12', - '2014-04-13 17:31:11', - '2014-04-13 17:36:11', - '2014-04-13 17:41:12', - '2014-04-13 17:46:12', - '2014-04-13 17:51:11', - '2014-04-13 17:56:11', - '2014-04-13 18:01:11', - '2014-04-13 18:06:11', - '2014-04-13 18:11:12', - '2014-04-13 18:16:11', - '2014-04-13 18:21:11', - '2014-04-13 18:26:11', - '2014-04-13 18:31:11', - '2014-04-13 18:36:11', - '2014-04-13 18:41:11', - '2014-04-13 18:46:11', - '2014-04-13 18:51:11', - '2014-04-13 18:56:11', - '2014-04-13 19:01:11', - '2014-04-13 19:06:11', - '2014-04-13 19:11:11', - '2014-04-13 19:16:11', - '2014-04-13 19:21:11', - '2014-04-13 19:26:11', - '2014-04-13 19:31:11', - '2014-04-13 19:36:11', - '2014-04-13 19:41:11', - '2014-04-13 19:46:11', - '2014-04-13 19:51:11', - '2014-04-13 19:56:11', - '2014-04-13 20:01:11', - '2014-04-13 20:06:11', - '2014-04-13 20:11:11', - '2014-04-13 20:16:12', - '2014-04-13 20:21:11', - '2014-04-13 20:26:11', - '2014-04-13 20:31:11', - '2014-04-13 20:36:11', - '2014-04-13 20:41:11', - '2014-04-13 20:46:11', - '2014-04-13 20:51:11', - '2014-04-13 20:56:11', - '2014-04-13 21:01:11', - '2014-04-13 21:06:11', - '2014-04-13 21:11:11', - '2014-04-13 21:16:11', - '2014-04-13 21:21:11', - '2014-04-13 21:26:11', - '2014-04-13 21:31:11', - '2014-04-13 21:36:11', - '2014-04-13 21:41:11', - '2014-04-13 21:46:11', - '2014-04-13 21:51:11', - '2014-04-13 21:56:11', - '2014-04-13 22:01:11', - '2014-04-13 22:06:11', - '2014-04-13 22:11:12', - '2014-04-13 22:16:11', - '2014-04-13 22:21:11', - '2014-04-13 22:26:11', - '2014-04-13 22:31:12', - '2014-04-13 22:36:11', - '2014-04-13 22:41:11', - '2014-04-13 22:46:11', - '2014-04-13 22:51:11', - '2014-04-13 22:56:11', - '2014-04-13 23:01:11', - '2014-04-13 23:06:11', - '2014-04-13 23:11:11', - '2014-04-13 23:16:11', - '2014-04-13 23:21:11', - '2014-04-13 23:26:11', - '2014-04-13 23:31:11', - '2014-04-13 23:36:11', - '2014-04-13 23:41:11', - '2014-04-13 23:46:11', - '2014-04-13 23:51:11', - '2014-04-13 23:56:11', - '2014-04-14 00:01:11', - '2014-04-14 00:06:11', - '2014-04-14 00:11:12', - '2014-04-14 00:16:11', - '2014-04-14 00:21:11', - '2014-04-14 00:26:12', - '2014-04-14 00:31:11', - '2014-04-14 00:36:12', - '2014-04-14 00:41:11', - '2014-04-14 00:46:11', - '2014-04-14 00:51:11', - '2014-04-14 00:56:11', - '2014-04-14 01:01:11', - '2014-04-14 01:06:11', - '2014-04-14 01:11:11', - '2014-04-14 01:16:11', - '2014-04-14 01:21:11', - '2014-04-14 01:26:11', - '2014-04-14 01:31:11', - '2014-04-14 01:36:11', - '2014-04-14 01:41:12', - '2014-04-14 01:46:12', - '2014-04-14 01:51:11', - '2014-04-14 01:56:11', - '2014-04-14 02:01:11', - '2014-04-14 02:06:11', - '2014-04-14 02:11:11', - '2014-04-14 02:16:11', - '2014-04-14 02:21:11', - '2014-04-14 02:26:12', - '2014-04-14 02:31:11', - '2014-04-14 02:36:11', - '2014-04-14 02:41:12', - '2014-04-14 02:46:11', - '2014-04-14 02:51:11', - '2014-04-14 02:56:11', - '2014-04-14 03:01:11', - '2014-04-14 03:06:11', - '2014-04-14 03:11:11', - '2014-04-14 03:16:11', - '2014-04-14 03:21:11', - '2014-04-14 03:26:11', - '2014-04-14 03:31:11', - '2014-04-14 03:36:11', - '2014-04-14 03:41:12', - '2014-04-14 03:46:11', - '2014-04-14 03:51:11', - '2014-04-14 03:56:11', - '2014-04-14 04:01:11', - '2014-04-14 04:06:11', - '2014-04-14 04:11:12', - '2014-04-14 04:16:11', - '2014-04-14 04:21:11', - '2014-04-14 04:26:11', - '2014-04-14 04:31:12', - '2014-04-14 04:36:11', - '2014-04-14 04:41:12', - '2014-04-14 04:46:11', - '2014-04-14 04:51:11', - '2014-04-14 04:56:12', - '2014-04-14 05:01:11', - '2014-04-14 05:06:11', - '2014-04-14 05:11:12', - '2014-04-14 05:16:11', - '2014-04-14 05:21:11', - '2014-04-14 05:26:12', - '2014-04-14 05:31:11', - '2014-04-14 05:36:11', - '2014-04-14 05:41:11', - '2014-04-14 05:46:11', - '2014-04-14 05:51:11', - '2014-04-14 05:56:12', - '2014-04-14 06:01:11', - '2014-04-14 06:06:11', - '2014-04-14 06:11:11', - '2014-04-14 06:16:11', - '2014-04-14 06:21:11', - '2014-04-14 06:26:11', - '2014-04-14 06:31:11', - '2014-04-14 06:36:11', - '2014-04-14 06:41:12', - '2014-04-14 06:46:12', - '2014-04-14 06:51:11', - '2014-04-14 06:56:11', - '2014-04-14 07:01:11', - '2014-04-14 07:06:11', - '2014-04-14 07:11:12', - '2014-04-14 07:16:11', - '2014-04-14 07:21:11', - '2014-04-14 07:26:11', - '2014-04-14 07:31:11', - '2014-04-14 07:36:12', - '2014-04-14 07:41:11', - '2014-04-14 07:46:11', - '2014-04-14 07:51:11', - '2014-04-14 07:56:11', - '2014-04-14 08:01:11', - '2014-04-14 08:06:12', - '2014-04-14 08:11:11', - '2014-04-14 08:16:11', - '2014-04-14 08:21:11', - '2014-04-14 08:26:12', - '2014-04-14 08:31:12', - '2014-04-14 08:36:11', - '2014-04-14 08:41:12', - '2014-04-14 08:46:11', - '2014-04-14 08:51:11', - '2014-04-14 08:56:12', - '2014-04-14 09:01:11', - '2014-04-14 09:06:11', - '2014-04-14 09:11:12', - '2014-04-14 09:16:11', - '2014-04-14 09:21:11', - '2014-04-14 09:26:12', - '2014-04-14 09:31:11', - '2014-04-14 09:36:11', - '2014-04-14 09:41:12', - '2014-04-14 09:46:12', - '2014-04-14 09:51:11', - '2014-04-14 09:56:12', - '2014-04-14 10:01:11', - '2014-04-14 10:06:11', - '2014-04-14 10:11:11', - '2014-04-14 10:16:11', - '2014-04-14 10:21:11', - '2014-04-14 10:26:12', - '2014-04-14 10:31:11', - '2014-04-14 10:36:11', - '2014-04-14 10:41:11', - '2014-04-14 10:46:11', - '2014-04-14 10:51:11', - '2014-04-14 10:56:12', - '2014-04-14 11:01:11', - '2014-04-14 11:06:11', - '2014-04-14 11:11:12', - '2014-04-14 11:16:12', - '2014-04-14 11:21:12', - '2014-04-14 11:26:11', - '2014-04-14 11:31:11', - '2014-04-14 11:36:11', - '2014-04-14 11:41:11', - '2014-04-14 11:46:12', - '2014-04-14 11:51:11', - '2014-04-14 11:56:12', - '2014-04-14 12:01:11', - '2014-04-14 12:06:11', - '2014-04-14 12:11:11', - '2014-04-14 12:16:11', - '2014-04-14 12:21:11', - '2014-04-14 12:26:12', - '2014-04-14 12:31:11', - '2014-04-14 12:36:11', - '2014-04-14 12:41:11', - '2014-04-14 12:46:11', - '2014-04-14 12:51:11', - '2014-04-14 12:56:11', - '2014-04-14 13:01:11', - '2014-04-14 13:06:11', - '2014-04-14 13:11:12', - '2014-04-14 13:16:11', - '2014-04-14 13:21:11', - '2014-04-14 13:26:12', - '2014-04-14 13:31:11', - '2014-04-14 13:36:11', - '2014-04-14 13:41:12', - '2014-04-14 13:46:12', - '2014-04-14 13:51:11', - '2014-04-14 13:56:11', - '2014-04-14 14:01:11', - '2014-04-14 14:06:11', - '2014-04-14 14:11:11', - '2014-04-14 14:16:12', - '2014-04-14 14:21:11', - '2014-04-14 14:26:11', - '2014-04-14 14:31:11', - '2014-04-14 14:36:11', - '2014-04-14 14:41:11', - '2014-04-14 14:46:11', - '2014-04-14 14:51:11', - '2014-04-14 14:56:11', - '2014-04-14 15:01:12', - '2014-04-14 15:06:11', - '2014-04-14 15:11:11', - '2014-04-14 15:16:11' ], - y: - [ 72.95, - 73.0616, - 73.0616, - 73.0616, - 73.0616, - 73.0616, - 73.0616, - 73.175, - 73.175, - 73.2866, - 73.2866, - 73.4, - 73.5116, - 73.625, - 73.73660000000001, - 73.85, - 73.9616, - 74.075, - 74.075, - 74.1866, - 74.1866, - 74.1866, - 74.3, - 74.3, - 74.4116, - 74.4116, - 74.4116, - 74.525, - 74.525, - 74.525, - 74.6366, - 74.6366, - 74.525, - 74.6366, - 74.75, - 74.75, - 74.6366, - 74.6366, - 74.86160000000001, - 74.75, - 74.6366, - 74.6366, - 74.525, - 74.4116, - 74.4116, - 74.4116, - 74.3, - 74.3, - 73.9616, - 72.95, - 72.3866, - 71.825, - 71.48660000000001, - 71.15, - 71.15, - 71.7116, - 72.05, - 72.1616, - 72.3866, - 72.3866, - 72.3866, - 72.5, - 72.3866, - 72.3866, - 72.3866, - 72.3866, - 72.3866, - 72.275, - 72.275, - 72.275, - 72.1616, - 72.1616, - 72.1616, - 72.1616, - 72.05, - 72.05, - 72.05, - 71.9366, - 71.9366, - 71.9366, - 71.825, - 71.825, - 71.825, - 71.825, - 71.825, - 71.7116, - 71.7116, - 71.6, - 71.6, - 71.6, - 71.48660000000001, - 71.48660000000001, - 71.48660000000001, - 71.48660000000001, - 71.48660000000001, - 71.375, - 71.375, - 71.375, - 71.375, - 71.375, - 71.2616, - 71.2616, - 71.2616, - 71.2616, - 71.2616, - 71.2616, - 71.15, - 71.15, - 71.15, - 71.15, - 71.0366, - 71.0366, - 71.0366, - 71.0366, - 70.925, - 70.925, - 70.925, - 70.925, - 70.8116, - 70.8116, - 70.8116, - 70.8116, - 70.8116, - 70.7, - 70.7, - 70.7, - 70.7, - 70.7, - 70.5866, - 70.5866, - 70.7, - 70.5866, - 70.5866, - 70.5866, - 70.475, - 70.475, - 70.475, - 70.36160000000001, - 70.36160000000001, - 70.36160000000001, - 70.25, - 70.25, - 70.25, - 70.25, - 70.25, - 70.25, - 70.1366, - 70.1366, - 70.1366, - 70.1366, - 70.1366, - 70.1366, - 70.025, - 70.025, - 69.9116, - 69.9116, - 69.9116, - 69.9116, - 69.9116, - 69.9116, - 69.8, - 69.8, - 69.8, - 69.8, - 69.8, - 69.8, - 69.6866, - 69.6866, - 69.6866, - 69.6866, - 69.575, - 69.575, - 69.575, - 69.575, - 69.575, - 69.4616, - 69.4616, - 69.4616, - 69.4616, - 69.4616, - 69.4616, - 69.4616, - 69.35, - 69.35, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.125, - 69.125, - 69.23660000000001, - 69.125, - 69.125, - 69.125, - 69.125, - 69.0116, - 69.0116, - 69.125, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.0116, - 69.125, - 69.125, - 69.125, - 69.125, - 69.125, - 69.125, - 69.125, - 69.125, - 69.125, - 69.125, - 69.23660000000001, - 69.125, - 69.23660000000001, - 69.23660000000001, - 69.35, - 69.35, - 69.35, - 69.35, - 69.35, - 69.35, - 69.575, - 69.6866, - 69.8, - 69.8, - 69.8, - 69.9116, - 70.025, - 70.025, - 70.025, - 70.025, - 70.025, - 70.025, - 70.1366, - 70.1366, - 70.25, - 70.36160000000001, - 70.475, - 70.475, - 70.8116, - 70.8116, - 70.925, - 70.925, - 70.925, - 70.925, - 70.925, - 71.0366, - 71.0366, - 71.15, - 71.15, - 71.2616, - 71.2616, - 71.375, - 71.375, - 71.48660000000001, - 71.6, - 71.7116, - 71.825, - 71.825, - 71.825, - 72.05, - 72.275, - 73.5116, - 73.625, - 73.625, - 73.73660000000001, - 73.73660000000001, - 73.85, - 73.85, - 73.9616, - 73.9616, - 74.075, - 74.075, - 73.9616, - 73.9616, - 73.9616, - 73.9616, - 73.9616, - 74.075, - 74.075, - 74.1866, - 74.3, - 74.4116, - 74.4116, - 74.525, - 74.525, - 74.525, - 74.6366, - 74.525, - 74.6366, - 74.6366, - 74.75, - 74.75, - 74.75, - 74.75, - 74.86160000000001, - 74.86160000000001, - 74.86160000000001, - 74.86160000000001, - 74.86160000000001, - 74.86160000000001, - 74.86160000000001, - 74.75, - 74.75, - 74.86160000000001, - 74.75, - 74.75, - 74.75, - 74.75, - 74.6366, - 74.6366, - 74.6366, - 74.6366, - 74.525, - 74.525, - 74.525, - 74.4116, - 74.4116, - 74.4116, - 74.3, - 74.3, - 74.3, - 74.1866, - 74.1866, - 74.075, - 74.075, - 74.075, - 73.9616, - 73.85, - 73.85, - 73.73660000000001, - 73.73660000000001, - 73.73660000000001, - 73.625, - 73.625, - 73.625, - 73.5116, - 73.5116, - 73.5116, - 73.4, - 73.4, - 73.4, - 73.2866, - 73.2866, - 73.2866, - 73.2866, - 73.0616, - 73.175, - 73.0616, - 73.0616, - 72.95, - 72.95, - 72.8366, - 72.8366, - 72.725, - 72.725, - 72.725, - 72.61160000000001, - 72.61160000000001, - 72.5, - 72.5, - 72.5, - 72.3866, - 72.3866, - 72.3866, - 72.275, - 72.275, - 72.1616, - 72.1616, - 72.1616, - 72.05, - 72.05, - 72.05, - 71.9366, - 71.9366, - 71.9366, - 71.825, - 71.825, - 71.825, - 71.825, - 71.7116, - 71.7116, - 71.6, - 71.6, - 71.48660000000001, - 71.48660000000001, - 71.48660000000001, - 71.48660000000001, - 71.375, - 71.2616, - 71.2616, - 71.15, - 71.15, - 71.15, - 71.0366, - 71.0366, - 70.925, - 70.925, - 70.8116, - 70.8116, - 70.7, - 70.7, - 70.5866, - 70.5866, - 70.475, - 70.5866, - 70.475, - 70.475, - 70.36160000000001, - 70.36160000000001, - 70.25, - 70.25, - 70.25, - 70.1366, - 70.1366, - 70.1366, - 70.025, - 70.025, - 69.9116, - 69.9116, - 69.8, - 69.8, - 69.8, - 69.8, - 69.6866, - 69.575, - 69.575, - 69.575, - 69.4616, - 69.4616, - 69.35, - 69.35, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.23660000000001, - 69.125, - 69.0116, - 69.0116, - 69.0116, - 68.9, - 68.9, - 68.9, - 68.7866, - 68.675, - 68.675, - 68.675, - 68.675, - 68.5616, - 68.5616, - 68.45, - 68.45, - 68.45, - 68.3366, - 68.3366, - 68.3366, - 68.3366, - 68.225, - 68.225, - 68.225, - 68.225, - 68.11160000000001, - 67.775, - 67.2116, - 66.875, - 66.65, - 66.425, - 66.3116, - 66.2, - 66.0866, - 65.975, - 66.0866, - 65.975, - 65.975, - 65.86160000000001, - 65.86160000000001, - 65.86160000000001, - 65.86160000000001, - 65.975, - 65.975, - 65.975, - 65.975, - 66.0866, - 66.2, - 66.2, - 66.3116, - 66.425, - 66.5366, - 66.65, - 66.7616, - 66.875, - 66.875, - 66.98660000000001, - 66.98660000000001, - 67.1, - 67.1, - 67.2116, - 67.325, - 67.325, - 67.4366, - 67.55, - 67.6616, - 67.6616, - 67.775, - 67.8866, - 67.8866, - 68.11160000000001, - 68.225, - 68.45, - 68.5616, - 68.675, - 68.7866, - 69.0116, - 69.125, - 69.23660000000001, - 69.575, - 69.6866, - 69.8, - 69.9116, - 70.1366, - 70.25, - 70.25, - 70.7, - 70.7, - 70.925, - 71.0366, - 71.0366, - 71.375, - 71.48660000000001, - 71.6, - 71.7116, - 71.825, - 71.9366, - 72.05, - 72.275, - 72.3866, - 72.61160000000001, - 72.61160000000001, - 72.8366, - 72.95, - 73.175, - 73.2866, - 73.4, - 73.625, - 73.73660000000001, - 73.9616, - 74.1866, - 74.3, - 74.525, - 74.6366, - 74.75, - 74.975 ], - mode: 'lines', - name: '2nd Floor (Raspberry Pi)', - type: 'scattergl' }, - { x: - [ '2014-04-12 15:21:37', - '2014-04-12 15:26:37', - '2014-04-12 15:31:37', - '2014-04-12 15:36:37', - '2014-04-12 15:41:37', - '2014-04-12 15:46:37', - '2014-04-12 15:51:38', - '2014-04-12 15:56:37', - '2014-04-12 16:01:37', - '2014-04-12 16:06:37', - '2014-04-12 16:11:37', - '2014-04-12 16:16:37', - '2014-04-12 16:21:37', - '2014-04-12 16:26:37', - '2014-04-12 16:31:37', - '2014-04-12 16:36:38', - '2014-04-12 16:41:37', - '2014-04-12 16:46:37', - '2014-04-12 16:51:37', - '2014-04-12 16:56:37', - '2014-04-12 17:01:37', - '2014-04-12 17:06:37', - '2014-04-12 17:11:37', - '2014-04-12 17:16:37', - '2014-04-12 17:21:37', - '2014-04-12 17:26:37', - '2014-04-12 17:31:37', - '2014-04-12 17:36:37', - '2014-04-12 17:41:37', - '2014-04-12 17:46:37', - '2014-04-12 17:51:37', - '2014-04-12 17:56:37', - '2014-04-12 18:01:38', - '2014-04-12 18:06:37', - '2014-04-12 18:11:37', - '2014-04-12 18:16:37', - '2014-04-12 18:21:37', - '2014-04-12 18:26:37', - '2014-04-12 18:31:37', - '2014-04-12 18:36:37', - '2014-04-12 18:41:37', - '2014-04-12 18:46:37', - '2014-04-12 18:51:37', - '2014-04-12 18:56:37', - '2014-04-12 19:01:37', - '2014-04-12 19:06:37', - '2014-04-12 19:11:37', - '2014-04-12 19:16:37', - '2014-04-12 19:21:37', - '2014-04-12 19:26:37', - '2014-04-12 19:31:37', - '2014-04-12 19:36:38', - '2014-04-12 19:41:37', - '2014-04-12 19:46:37', - '2014-04-12 19:51:37', - '2014-04-12 19:56:37', - '2014-04-12 20:01:37', - '2014-04-12 20:06:37', - '2014-04-12 20:11:37', - '2014-04-12 20:16:37', - '2014-04-12 20:21:37', - '2014-04-12 20:26:37', - '2014-04-12 20:31:37', - '2014-04-12 20:36:37', - '2014-04-12 20:41:37', - '2014-04-12 20:46:37', - '2014-04-12 20:51:37', - '2014-04-12 20:56:37', - '2014-04-12 21:01:37', - '2014-04-12 21:06:37', - '2014-04-12 21:11:37', - '2014-04-12 21:16:37', - '2014-04-12 21:21:37', - '2014-04-12 21:26:37', - '2014-04-12 21:31:37', - '2014-04-12 21:36:37', - '2014-04-12 21:41:37', - '2014-04-12 21:46:37', - '2014-04-12 21:51:37', - '2014-04-12 21:56:37', - '2014-04-12 22:01:37', - '2014-04-12 22:06:37', - '2014-04-12 22:11:38', - '2014-04-12 22:16:37', - '2014-04-12 22:21:37', - '2014-04-12 22:26:37', - '2014-04-12 22:31:37', - '2014-04-12 22:36:37', - '2014-04-12 22:41:37', - '2014-04-12 22:46:38', - '2014-04-12 22:51:37', - '2014-04-12 22:56:46', - '2014-04-12 23:01:38', - '2014-04-12 23:06:37', - '2014-04-12 23:11:37', - '2014-04-12 23:16:37', - '2014-04-12 23:21:37', - '2014-04-12 23:26:37', - '2014-04-12 23:31:37', - '2014-04-12 23:36:37', - '2014-04-12 23:41:38', - '2014-04-12 23:46:37', - '2014-04-12 23:51:37', - '2014-04-12 23:56:37', - '2014-04-13 00:01:37', - '2014-04-13 00:06:38', - '2014-04-13 00:11:37', - '2014-04-13 00:16:37', - '2014-04-13 00:21:37', - '2014-04-13 00:26:37', - '2014-04-13 00:31:39', - '2014-04-13 00:36:37', - '2014-04-13 00:41:37', - '2014-04-13 00:46:37', - '2014-04-13 00:51:37', - '2014-04-13 00:56:37', - '2014-04-13 01:01:37', - '2014-04-13 01:06:38', - '2014-04-13 01:11:37', - '2014-04-13 01:16:37', - '2014-04-13 01:21:37', - '2014-04-13 01:26:37', - '2014-04-13 01:31:38', - '2014-04-13 01:36:37', - '2014-04-13 01:41:37', - '2014-04-13 01:46:37', - '2014-04-13 01:51:37', - '2014-04-13 01:56:37', - '2014-04-13 02:01:37', - '2014-04-13 02:06:38', - '2014-04-13 02:11:37', - '2014-04-13 02:16:37', - '2014-04-13 02:21:37', - '2014-04-13 02:26:37', - '2014-04-13 02:31:37', - '2014-04-13 02:36:37', - '2014-04-13 02:41:37', - '2014-04-13 02:46:37', - '2014-04-13 02:51:38', - '2014-04-13 02:56:37', - '2014-04-13 03:01:37', - '2014-04-13 03:06:37', - '2014-04-13 03:11:37', - '2014-04-13 03:16:37', - '2014-04-13 03:21:38', - '2014-04-13 03:26:37', - '2014-04-13 03:31:38', - '2014-04-13 03:36:38', - '2014-04-13 03:41:37', - '2014-04-13 03:46:37', - '2014-04-13 03:51:37', - '2014-04-13 03:56:37', - '2014-04-13 04:01:37', - '2014-04-13 04:06:37', - '2014-04-13 04:11:37', - '2014-04-13 04:16:37', - '2014-04-13 04:21:38', - '2014-04-13 04:26:37', - '2014-04-13 04:31:37', - '2014-04-13 04:36:37', - '2014-04-13 04:41:37', - '2014-04-13 04:46:37', - '2014-04-13 04:51:38', - '2014-04-13 04:56:37', - '2014-04-13 05:01:37', - '2014-04-13 05:06:38', - '2014-04-13 05:11:37', - '2014-04-13 05:16:37', - '2014-04-13 05:21:37', - '2014-04-13 05:26:37', - '2014-04-13 05:31:37', - '2014-04-13 05:36:37', - '2014-04-13 05:41:37', - '2014-04-13 05:46:37', - '2014-04-13 05:51:37', - '2014-04-13 05:56:37', - '2014-04-13 06:01:37', - '2014-04-13 06:06:37', - '2014-04-13 06:11:42', - '2014-04-13 06:16:37', - '2014-04-13 06:21:37', - '2014-04-13 06:26:37', - '2014-04-13 06:31:37', - '2014-04-13 06:36:37', - '2014-04-13 06:41:37', - '2014-04-13 06:46:37', - '2014-04-13 06:51:38', - '2014-04-13 06:56:37', - '2014-04-13 07:01:37', - '2014-04-13 07:06:38', - '2014-04-13 07:11:46', - '2014-04-13 07:16:38', - '2014-04-13 07:21:37', - '2014-04-13 07:26:37', - '2014-04-13 07:31:37', - '2014-04-13 07:36:37', - '2014-04-13 07:41:37', - '2014-04-13 07:46:37', - '2014-04-13 07:51:37', - '2014-04-13 07:56:37', - '2014-04-13 08:01:46', - '2014-04-13 08:06:37', - '2014-04-13 08:11:37', - '2014-04-13 08:16:37', - '2014-04-13 08:21:37', - '2014-04-13 08:26:37', - '2014-04-13 08:31:37', - '2014-04-13 08:36:37', - '2014-04-13 08:41:37', - '2014-04-13 08:46:37', - '2014-04-13 08:51:37', - '2014-04-13 08:56:37', - '2014-04-13 09:01:37', - '2014-04-13 09:06:37', - '2014-04-13 09:11:37', - '2014-04-13 09:16:37', - '2014-04-13 09:21:37', - '2014-04-13 09:26:37', - '2014-04-13 09:31:37', - '2014-04-13 09:36:37', - '2014-04-13 09:41:37', - '2014-04-13 09:46:37', - '2014-04-13 09:51:37', - '2014-04-13 09:56:37', - '2014-04-13 10:01:37', - '2014-04-13 10:06:37', - '2014-04-13 10:11:37', - '2014-04-13 10:16:37', - '2014-04-13 10:21:37', - '2014-04-13 10:26:38', - '2014-04-13 10:31:37', - '2014-04-13 10:36:37', - '2014-04-13 10:41:37', - '2014-04-13 10:46:37', - '2014-04-13 10:51:37', - '2014-04-13 10:56:37', - '2014-04-13 11:01:37', - '2014-04-13 11:06:37', - '2014-04-13 11:11:37', - '2014-04-13 11:16:37', - '2014-04-13 11:21:37', - '2014-04-13 11:26:37', - '2014-04-13 11:31:37', - '2014-04-13 11:36:37', - '2014-04-13 11:41:37', - '2014-04-13 11:46:37', - '2014-04-13 11:51:37', - '2014-04-13 11:56:37', - '2014-04-13 12:01:37', - '2014-04-13 12:06:37', - '2014-04-13 12:11:37', - '2014-04-13 12:16:37', - '2014-04-13 12:21:37', - '2014-04-13 12:26:37', - '2014-04-13 12:31:37', - '2014-04-13 12:36:37', - '2014-04-13 12:41:38', - '2014-04-13 12:46:37', - '2014-04-13 12:51:37', - '2014-04-13 12:56:37', - '2014-04-13 13:01:37', - '2014-04-13 13:06:37', - '2014-04-13 13:11:37', - '2014-04-13 13:16:37', - '2014-04-13 13:21:37', - '2014-04-13 13:26:37', - '2014-04-13 13:31:37', - '2014-04-13 13:36:38', - '2014-04-13 13:41:37', - '2014-04-13 13:46:37', - '2014-04-13 13:51:37', - '2014-04-13 13:56:37', - '2014-04-13 14:01:37', - '2014-04-13 14:06:37', - '2014-04-13 14:11:38', - '2014-04-13 15:26:34', - '2014-04-13 15:31:33', - '2014-04-13 15:36:33', - '2014-04-13 15:41:33', - '2014-04-13 15:46:33', - '2014-04-13 15:51:33', - '2014-04-13 15:56:33', - '2014-04-13 16:01:33', - '2014-04-13 16:06:34', - '2014-04-13 16:11:33', - '2014-04-13 16:16:33', - '2014-04-13 16:21:33', - '2014-04-13 16:26:33', - '2014-04-13 16:31:33', - '2014-04-13 16:36:33', - '2014-04-13 16:41:33', - '2014-04-13 16:46:33', - '2014-04-13 16:51:33', - '2014-04-13 16:56:33', - '2014-04-13 17:01:33', - '2014-04-13 17:06:33', - '2014-04-13 17:11:33', - '2014-04-13 17:16:33', - '2014-04-13 17:21:33', - '2014-04-13 17:26:33', - '2014-04-13 17:31:33', - '2014-04-13 17:36:33', - '2014-04-13 17:41:33', - '2014-04-13 17:46:33', - '2014-04-13 17:51:33', - '2014-04-13 17:56:33', - '2014-04-13 18:01:34', - '2014-04-13 18:06:33', - '2014-04-13 18:11:33', - '2014-04-13 18:16:33', - '2014-04-13 18:21:33', - '2014-04-13 18:26:33', - '2014-04-13 18:31:33', - '2014-04-13 18:36:33', - '2014-04-13 18:41:33', - '2014-04-13 18:46:33', - '2014-04-13 18:51:33', - '2014-04-13 18:56:33', - '2014-04-13 19:01:33', - '2014-04-13 19:06:33', - '2014-04-13 19:11:33', - '2014-04-13 19:16:33', - '2014-04-13 19:21:33', - '2014-04-13 19:26:33', - '2014-04-13 19:31:33', - '2014-04-13 19:36:33', - '2014-04-13 19:41:33', - '2014-04-13 19:46:33', - '2014-04-13 19:51:33', - '2014-04-13 19:56:33', - '2014-04-13 20:01:33', - '2014-04-13 20:06:33', - '2014-04-13 20:11:33', - '2014-04-13 20:16:33', - '2014-04-13 20:21:34', - '2014-04-13 20:26:33', - '2014-04-13 20:31:33', - '2014-04-13 20:36:33', - '2014-04-13 20:41:34', - '2014-04-13 20:46:33', - '2014-04-13 20:51:34', - '2014-04-13 20:56:33', - '2014-04-13 21:01:33', - '2014-04-13 21:06:33', - '2014-04-13 21:11:33', - '2014-04-13 21:16:33', - '2014-04-13 21:21:33', - '2014-04-13 21:26:33', - '2014-04-13 21:31:33', - '2014-04-13 21:36:33', - '2014-04-13 21:41:33', - '2014-04-13 21:46:34', - '2014-04-13 21:51:33', - '2014-04-13 21:56:33', - '2014-04-13 22:01:33', - '2014-04-13 22:06:33', - '2014-04-13 22:11:33', - '2014-04-13 22:16:33', - '2014-04-13 22:21:33', - '2014-04-13 22:26:33', - '2014-04-13 22:31:33', - '2014-04-13 22:36:33', - '2014-04-13 22:41:33', - '2014-04-13 22:46:33', - '2014-04-13 22:51:33', - '2014-04-13 22:56:33', - '2014-04-13 23:01:33', - '2014-04-13 23:06:33', - '2014-04-13 23:11:33', - '2014-04-13 23:16:33', - '2014-04-13 23:21:33', - '2014-04-13 23:26:33', - '2014-04-13 23:31:33', - '2014-04-13 23:36:33', - '2014-04-13 23:41:33', - '2014-04-13 23:46:33', - '2014-04-13 23:51:33', - '2014-04-13 23:56:33', - '2014-04-14 00:01:33', - '2014-04-14 00:06:34', - '2014-04-14 00:11:33', - '2014-04-14 00:16:33', - '2014-04-14 00:21:33', - '2014-04-14 00:26:33', - '2014-04-14 00:31:33', - '2014-04-14 00:36:34', - '2014-04-14 00:41:33', - '2014-04-14 00:46:33', - '2014-04-14 00:51:33', - '2014-04-14 00:56:33', - '2014-04-14 01:01:33', - '2014-04-14 01:06:33', - '2014-04-14 01:11:33', - '2014-04-14 01:16:33', - '2014-04-14 01:21:33', - '2014-04-14 01:26:33', - '2014-04-14 01:31:33', - '2014-04-14 01:36:33', - '2014-04-14 01:41:33', - '2014-04-14 01:46:33', - '2014-04-14 01:51:33', - '2014-04-14 01:56:33', - '2014-04-14 02:01:33', - '2014-04-14 02:06:34', - '2014-04-14 02:11:34', - '2014-04-14 02:16:33', - '2014-04-14 02:21:33', - '2014-04-14 02:26:34', - '2014-04-14 02:31:33', - '2014-04-14 02:36:33', - '2014-04-14 02:41:33', - '2014-04-14 02:46:33', - '2014-04-14 02:51:33', - '2014-04-14 02:56:33', - '2014-04-14 03:01:33', - '2014-04-14 03:06:33', - '2014-04-14 03:11:33', - '2014-04-14 03:16:33', - '2014-04-14 03:21:33', - '2014-04-14 03:26:33', - '2014-04-14 03:31:33', - '2014-04-14 03:36:33', - '2014-04-14 03:41:33', - '2014-04-14 03:46:33', - '2014-04-14 03:51:33', - '2014-04-14 03:56:33', - '2014-04-14 04:01:34', - '2014-04-14 04:06:33', - '2014-04-14 04:11:42', - '2014-04-14 04:16:33', - '2014-04-14 04:21:33', - '2014-04-14 04:26:33', - '2014-04-14 04:31:33', - '2014-04-14 04:36:33', - '2014-04-14 04:41:33', - '2014-04-14 04:46:33', - '2014-04-14 04:51:33', - '2014-04-14 04:56:33', - '2014-04-14 05:01:33', - '2014-04-14 05:06:34', - '2014-04-14 05:11:33', - '2014-04-14 05:16:33', - '2014-04-14 05:21:33', - '2014-04-14 05:26:33', - '2014-04-14 05:31:34', - '2014-04-14 05:36:33', - '2014-04-14 05:41:33', - '2014-04-14 05:46:33', - '2014-04-14 05:51:33', - '2014-04-14 05:56:33', - '2014-04-14 06:01:33', - '2014-04-14 06:06:33', - '2014-04-14 06:11:33', - '2014-04-14 06:16:33', - '2014-04-14 06:21:33', - '2014-04-14 06:26:33', - '2014-04-14 06:31:33', - '2014-04-14 06:36:33', - '2014-04-14 06:41:33', - '2014-04-14 06:46:34', - '2014-04-14 06:51:33', - '2014-04-14 06:56:33', - '2014-04-14 07:01:33', - '2014-04-14 07:06:34', - '2014-04-14 07:11:33', - '2014-04-14 07:16:33', - '2014-04-14 07:21:33', - '2014-04-14 07:26:33', - '2014-04-14 07:31:33', - '2014-04-14 07:36:33', - '2014-04-14 07:41:33', - '2014-04-14 07:46:34', - '2014-04-14 07:51:33', - '2014-04-14 07:56:33', - '2014-04-14 08:01:33', - '2014-04-14 08:06:34', - '2014-04-14 08:11:33', - '2014-04-14 08:16:33', - '2014-04-14 08:21:33', - '2014-04-14 08:26:33', - '2014-04-14 08:31:33', - '2014-04-14 08:36:33', - '2014-04-14 08:41:33', - '2014-04-14 08:46:33', - '2014-04-14 08:51:33', - '2014-04-14 08:56:33', - '2014-04-14 09:01:33', - '2014-04-14 09:06:33', - '2014-04-14 09:11:33', - '2014-04-14 09:16:33', - '2014-04-14 09:21:33', - '2014-04-14 09:26:33', - '2014-04-14 09:31:33', - '2014-04-14 09:36:33', - '2014-04-14 09:41:33', - '2014-04-14 09:46:33', - '2014-04-14 09:51:33', - '2014-04-14 09:56:33', - '2014-04-14 10:01:35', - '2014-04-14 10:06:33', - '2014-04-14 10:11:33', - '2014-04-14 10:16:33', - '2014-04-14 10:21:33', - '2014-04-14 10:26:33', - '2014-04-14 10:31:33', - '2014-04-14 10:36:33', - '2014-04-14 10:41:33', - '2014-04-14 10:46:33', - '2014-04-14 10:51:33', - '2014-04-14 10:56:34', - '2014-04-14 11:01:34', - '2014-04-14 11:06:33', - '2014-04-14 11:11:33', - '2014-04-14 11:16:33', - '2014-04-14 11:21:33', - '2014-04-14 11:26:33', - '2014-04-14 11:31:33', - '2014-04-14 11:36:33', - '2014-04-14 11:41:33', - '2014-04-14 11:46:33', - '2014-04-14 11:51:33', - '2014-04-14 11:56:33', - '2014-04-14 12:01:33', - '2014-04-14 12:06:33', - '2014-04-14 12:11:34', - '2014-04-14 12:16:33', - '2014-04-14 12:21:33', - '2014-04-14 12:26:33', - '2014-04-14 12:31:33', - '2014-04-14 12:36:33', - '2014-04-14 12:41:33', - '2014-04-14 12:46:33', - '2014-04-14 12:51:33', - '2014-04-14 12:56:33', - '2014-04-14 13:01:33', - '2014-04-14 13:06:33', - '2014-04-14 13:11:33', - '2014-04-14 13:16:33', - '2014-04-14 13:21:33', - '2014-04-14 13:26:33', - '2014-04-14 13:31:35', - '2014-04-14 13:36:33', - '2014-04-14 13:41:33', - '2014-04-14 13:46:33', - '2014-04-14 13:51:34', - '2014-04-14 13:56:33', - '2014-04-14 14:01:33', - '2014-04-14 14:06:33', - '2014-04-14 14:11:33', - '2014-04-14 14:16:33', - '2014-04-14 14:21:33', - '2014-04-14 14:26:33', - '2014-04-14 14:31:33', - '2014-04-14 14:36:33', - '2014-04-14 14:41:33', - '2014-04-14 14:46:33', - '2014-04-14 14:51:33', - '2014-04-14 14:56:33', - '2014-04-14 15:01:33', - '2014-04-14 15:06:33', - '2014-04-14 15:11:33', - '2014-04-14 15:16:33' ], - y: - [ 96.24, - 95.9, - 96.01, - 96.12, - 95.79, - 95.34, - 95.22, - 95.11, - 94.89, - 94.55, - 94.32, - 94.1, - 93.99, - 93.76, - 93.54, - 93.54, - 93.43, - 93.43, - 93.2, - 92.97, - 92.97, - 92.86, - 92.64, - 92.41, - 92.19, - 91.74, - 91.51, - 91.29, - 90.84, - 90.39, - 89.71, - 89.15, - 88.7, - 88.14, - 87.69, - 87.24, - 86.68, - 86, - 85.32, - 84.76, - 84.2, - 83.64, - 82.96, - 82.4, - 81.72, - 81.27, - 80.71, - 80.15, - 77.22, - 74.75, - 73.74, - 73.06, - 72.61, - 72.05, - 72.61, - 73.06, - 73.06, - 72.95, - 72.84, - 72.61, - 72.39, - 72.05, - 71.82, - 71.49, - 71.26, - 71.04, - 70.93, - 70.7, - 70.47, - 70.25, - 70.02, - 69.8, - 69.57, - 69.46, - 69.35, - 69.12, - 69.01, - 68.79, - 68.56, - 68.45, - 68.34, - 68.22, - 68, - 67.89, - 67.77, - 67.66, - 67.55, - 67.44, - 67.32, - 67.21, - 67.1, - 66.99, - 66.87, - 66.76, - 66.65, - 66.65, - 66.54, - 66.43, - 66.31, - 66.2, - 66.09, - 66.09, - 65.97, - 65.86, - 65.86, - 65.75, - 65.64, - 65.64, - 65.52, - 65.52, - 65.41, - 65.3, - 65.3, - 65.3, - 65.19, - 65.07, - 65.07, - 65.07, - 64.96, - 64.96, - 64.85, - 64.74, - 64.74, - 64.74, - 64.74, - 64.62, - 64.62, - 64.62, - 64.51, - 64.51, - 64.4, - 64.4, - 64.29, - 64.4, - 64.29, - 64.18, - 64.18, - 64.18, - 64.06, - 64.06, - 64.06, - 63.95, - 63.95, - 63.95, - 63.95, - 63.84, - 63.72, - 63.72, - 63.72, - 63.72, - 63.61, - 63.61, - 63.61, - 63.61, - 63.61, - 63.5, - 63.5, - 63.5, - 63.39, - 63.39, - 63.28, - 63.39, - 63.28, - 63.28, - 63.16, - 63.16, - 63.16, - 63.05, - 63.05, - 63.05, - 63.05, - 62.94, - 62.94, - 62.94, - 62.94, - 62.82, - 62.82, - 62.82, - 62.71, - 62.71, - 62.71, - 62.71, - 62.6, - 62.6, - 62.6, - 62.49, - 62.49, - 62.49, - 62.49, - 62.38, - 62.38, - 62.38, - 62.38, - 62.38, - 62.38, - 62.38, - 62.49, - 62.49, - 62.6, - 62.6, - 62.71, - 62.71, - 62.71, - 62.71, - 62.94, - 63.16, - 63.39, - 63.5, - 63.84, - 64.06, - 64.4, - 64.62, - 64.96, - 65.3, - 65.52, - 65.86, - 66.2, - 66.54, - 66.87, - 67.32, - 67.66, - 68.11, - 68.68, - 69.12, - 69.46, - 69.91, - 70.59, - 71.26, - 72.16, - 73.29, - 74.3, - 75.2, - 75.76, - 76.32, - 76.77, - 77.22, - 77.79, - 78.24, - 78.91, - 79.36, - 79.81, - 80.37, - 80.82, - 81.39, - 81.95, - 82.51, - 83.52, - 84.43, - 85.21, - 86.34, - 87.35, - 88.14, - 89.04, - 89.71, - 90.5, - 91.29, - 91.85, - 92.19, - 92.52, - 92.75, - 93.31, - 93.65, - 94.1, - 94.55, - 94.77, - 95.22, - 95.68, - 96.01, - 96.46, - 96.91, - 96.91, - 97.59, - 98.15, - 98.71, - 98.94, - 98.49, - 98.94, - 99.27, - 99.72, - 99.84, - 99.84, - 99.84, - 99.84, - 99.61, - 99.16, - 99.05, - 98.6, - 98.15, - 97.59, - 97.25, - 96.91, - 96.69, - 96.46, - 96.35, - 96.12, - 95.9, - 95.34, - 95.11, - 94.55, - 94.21, - 93.87, - 93.43, - 93.09, - 92.64, - 92.19, - 91.51, - 91.18, - 90.5, - 89.94, - 89.49, - 88.93, - 88.36, - 87.69, - 87.12, - 86.45, - 85.77, - 85.1, - 84.43, - 83.64, - 83.07, - 82.4, - 81.84, - 81.16, - 80.49, - 80.04, - 79.36, - 78.69, - 78.12, - 77.45, - 77, - 76.44, - 75.99, - 75.54, - 75.2, - 74.64, - 74.3, - 73.85, - 73.62, - 73.18, - 72.95, - 72.61, - 72.39, - 72.16, - 71.82, - 71.6, - 71.37, - 71.15, - 70.93, - 70.7, - 70.59, - 70.36, - 70.14, - 69.91, - 69.8, - 69.57, - 69.46, - 69.24, - 69.12, - 68.9, - 68.79, - 68.56, - 68.34, - 68.11, - 68, - 67.66, - 67.55, - 67.32, - 67.1, - 66.87, - 66.76, - 66.54, - 66.31, - 66.09, - 65.97, - 65.86, - 65.64, - 65.41, - 65.3, - 65.19, - 64.96, - 64.85, - 64.62, - 64.51, - 64.29, - 64.06, - 63.95, - 63.72, - 63.61, - 63.5, - 63.28, - 63.16, - 62.94, - 62.82, - 62.6, - 62.38, - 62.26, - 62.15, - 62.04, - 61.81, - 61.7, - 61.59, - 61.36, - 61.25, - 61.14, - 61.03, - 60.91, - 60.8, - 60.69, - 60.46, - 60.35, - 60.35, - 60.13, - 60.01, - 59.9, - 59.79, - 59.68, - 59.45, - 59.45, - 59.34, - 59.22, - 59.11, - 59, - 58.89, - 58.78, - 58.66, - 58.44, - 58.44, - 58.32, - 58.21, - 58.1, - 57.99, - 57.99, - 57.88, - 57.88, - 57.76, - 57.65, - 57.65, - 57.54, - 57.54, - 57.43, - 57.43, - 57.31, - 57.2, - 57.09, - 56.97, - 56.97, - 56.86, - 56.75, - 56.75, - 56.53, - 56.53, - 56.53, - 56.41, - 56.3, - 56.19, - 56.19, - 56.19, - 56.07, - 55.96, - 55.96, - 55.85, - 55.85, - 55.74, - 55.74, - 55.63, - 55.74, - 55.74, - 55.85, - 55.96, - 55.96, - 56.07, - 56.19, - 60.69, - 61.59, - 61.93, - 62.26, - 62.49, - 62.71, - 63.05, - 63.28, - 63.5, - 63.84, - 64.06, - 64.29, - 64.62, - 64.85, - 65.07, - 65.41, - 65.64, - 65.97, - 66.2, - 66.54, - 66.76, - 67.1, - 67.44, - 67.77, - 69.24, - 70.81, - 72.16, - 73.29, - 74.41, - 75.54, - 76.55, - 77.79, - 78.91, - 79.93, - 81.16, - 82.29, - 83.3, - 84.09, - 84.99, - 86.11, - 86.68, - 87.8, - 88.59, - 89.71, - 90.61, - 91.4, - 92.41, - 93.31, - 94.21, - 95.22, - 96.12, - 97.02, - 97.7, - 98.71, - 99.5, - 100.17, - 100.85, - 101.52, - 102.2, - 102.65, - 102.99, - 103.1, - 103.66, - 103.77, - 104.11, - 104.45, - 105.01, - 105.46, - 106.02, - 106.36, - 106.59, - 107.15, - 107.37, - 107.6, - 107.94, - 108.39, - 108.72, - 109.29, - 109.51, - 110.07, - 110.19, - 110.52, - 110.64, - 110.64, - 110.41, - 110.52, - 110.52, - 110.52, - 110.3, - 110.41 ], - mode: 'lines', - name: 'Attic (Arduino)', - type: 'scattergl' } ], - layout: - { title: 'Home Temperature', - titlefont: { color: 'black', family: 'Open Sans, sans-serif', size: 25 }, - font: { family: 'Open Sans, sans-serif', size: 12, color: 'black' }, - showlegend: true, - autosize: true, - width: 1366, - height: 713, - xaxis: - { title: 'Time', - titlefont: { color: 'black', family: 'Open Sans, sans-serif', size: 18 }, - range: [ 1397330493000, 1397502993000 ], - domain: [ 0, 1 ], - type: 'date', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 946702800000, - dtick: 21600000, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Temperature (F)', - titlefont: { color: 'black', family: 'Open Sans, sans-serif', size: 18 }, - range: [ 48.00333333333333, 113.93666666666667 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 10, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: 'Open Sans, sans-serif', size: 12, color: 'black' }, - bgcolor: 'rgba(0, 0, 0, 0)', - bordercolor: 'rgba(0, 0, 0, 0)', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - annotations: - [ { x: 1, - y: -0.1, - xref: 'paper', - yref: 'paper', - text: 'View the code used to generate this plot here', - font: { family: 'Open Sans, sans-serif', size: '12' }, - align: 'left', - showarrow: false, - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.3046875, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - tag: '', - ref: 'paper' } ], - margin: { l: 80, r: 170, b: 80, t: 80, pad: 2, autoexpand: true }, - paper_bgcolor: 'white', - plot_bgcolor: 'white', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_29.png b/devtools/test_dashboard/testplots-2d/gl2d_29.png deleted file mode 100644 index 0c62a7d0315..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_29.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_2dhistogram_contour_subplots.json b/devtools/test_dashboard/testplots-2d/gl2d_2dhistogram_contour_subplots.json deleted file mode 100644 index 5b618691ecd..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_2dhistogram_contour_subplots.json +++ /dev/null @@ -1,4019 +0,0 @@ -{ data: - [ { x: - [ -1.19135367378, - -0.80989540227, - -0.925158804666, - -0.87760783274, - -0.51146935321, - -1.17957514063, - -0.401418220261, - -1.16183935054, - -1.11475081154, - -1.22853581376, - -0.592529542681, - -0.43889541224, - -0.602495595365, - -0.990669110038, - -0.544050558932, - -0.966319543401, - -0.742404606095, - -0.761971981579, - -1.20675028294, - -1.00477577758, - -0.481383102169, - -1.06112704596, - -0.757674558511, - -1.49815569515, - -0.970093584719, - -1.45254984021, - -0.576371884233, - -0.763406941577, - -0.780284124171, - -0.806043909481, - -1.55782557842, - -1.06434375708, - -1.31581468891, - -0.934525295676, - -0.888735643704, - -1.00872731608, - -1.3438472338, - -0.852218952389, - -0.371683097125, - -1.40320542743, - -1.0832056523, - -0.891090334561, - -0.798498677304, - -1.18624151422, - -0.938598836322, - -0.539133240628, - -0.913480647128, - -1.12361851539, - -0.910415167429, - -1.02319461744, - -1.07471542573, - -1.16720777925, - -0.993295733365, - -1.00852358867, - -0.818434616344, - -0.744391767723, - -1.12507674596, - -0.742197235594, - -0.81451542008, - -1.49006940204, - -0.457370819133, - -0.332094332449, - -1.1176381713, - -0.685073127085, - -0.786926212385, - -1.20598896074, - -0.713407846539, - -0.742377006164, - -0.62141792276, - -0.981492851317, - -0.770923853817, - -0.348012810767, - -0.998069394961, - -0.958035962316, - -0.665111325933, - -0.747991979091, - -0.446744435998, - -0.762137062821, - -0.643478406408, - -0.210678336658, - -0.328454834705, - -0.252863408144, - -0.775271437295, - -0.781159325916, - -0.878817686305, - -0.857326243909, - -0.431976934937, - -1.34450897918, - -1.10682503725, - -0.711020187579, - -0.842150840212, - -0.53066253457, - -0.417785420417, - -0.698471751472, - -0.605532341444, - -0.956364519927, - -0.757959473357, - -0.98731611084, - -0.362915429005, - -0.626373224718, - -0.381295921657, - -0.669227367462, - -1.35162201428, - -0.500320375896, - -0.92894912864, - -0.9470084272, - -0.951280704712, - -0.947229481546, - -0.865023951433, - -0.593243938738, - -0.547410115313, - -0.862082117158, - -0.96987866046, - -0.905987087726, - -0.404605638525, - -0.405332881411, - -0.572658386496, - -0.205625468925, - -0.872193534078, - -0.37744247924, - -0.613315924488, - -0.338737903404, - -0.74501079892, - -1.34221517759, - -0.154504118159, - -0.468062988679, - -0.56336122959, - -0.48157694381, - -0.143151817852, - -0.869588824529, - -0.579557514387, - -1.11592789851, - -0.876362802868, - -0.53320364861, - -0.340498919317, - -0.917659492801, - -0.499263733892, - -0.3104747395, - -0.534825842355, - -0.79168687442, - -1.04395586496, - -0.727757579127, - -1.29392901746, - -0.856085080792, - -0.389288678763, - -0.232567176757, - -0.812366222494, - -0.303510509979, - -0.180606944397, - -0.421086935007, - -1.20177040951, - -0.696555010949, - -0.6045892542, - -0.0531746343099, - -0.838611087964, - -0.375927824162, - -0.707820635893, - -0.472547901815, - -0.497928976328, - -1.01478101156, - -0.645511105508, - -0.587394982864, - -0.816969998617, - -0.573377638698, - -0.306091691779, - -0.445022339908, - -0.187125918025, - -0.991538036615, - -0.42926181917, - -0.0836789188442, - -0.193013270333, - -0.748006934716, - -0.606028707226, - -0.625166716385, - -0.238888014557, - -0.737029641206, - -0.814333080667, - -0.91690961036, - 0.125202292842, - -0.598522430464, - -0.363273877468, - -0.265005904528, - -0.55023851096, - -0.590315786584, - -0.742558086661, - -0.347205651014, - -0.315542648542, - -0.0511501712559, - -0.375678609587, - -0.44848027679, - -0.480506735012, - -0.634513449279, - -0.499436042048, - -0.377372400729, - -0.979504245361, - -0.228850821502, - -0.177322269152, - -0.993243529345, - -0.0834706631689, - -0.178292652993, - -0.423336614399, - -0.437489594692, - -0.387867078964, - 0.0359032544345, - -0.768400323361, - -0.880436293083, - -0.113434009833, - -0.156985461632, - -0.474975508261, - -0.534973518655, - -0.134487878512, - 0.256187865309, - -0.0953085265153, - -0.555594766333, - -0.837272447995, - -0.409021752419, - -0.760281212606, - -0.797614414686, - -0.431258146069, - -0.908206739304, - -0.359746353402, - -0.0697050500641, - -0.0169458943088, - -0.249397303667, - -0.186916145075, - -0.49546600706, - -0.626011000651, - -0.209598082338, - -0.611755095467, - -0.701846867205, - -0.588528378346, - -0.739044784952, - -0.743195020912, - -0.648526254769, - -0.0939483521405, - -0.328064660955, - -0.802859403674, - -0.670122188743, - -0.0788047108045, - -0.115589159147, - -0.0412229069184, - -0.129879658969, - -0.150322176973, - -0.457673152061, - -0.58282986866, - -0.128431856528, - -0.280004806329, - -0.147760442915, - -0.125994645226, - -0.351319127648, - -0.916986960238, - -0.0682023283687, - -0.369887858856, - -0.310110916539, - -0.417303598907, - -0.401821425308, - -0.0654416767524, - 0.0837918851735, - -0.298760158278, - -0.461214719893, - 0.0409868012426, - -0.179163337758, - -0.480056286711, - -0.214327607809, - 0.0666088918964, - -0.0642578583873, - -0.588495024071, - -0.333334771365, - -0.732590956163, - 0.0646945023666, - -0.452521277814, - 0.00187401454126, - -0.431848482619, - -0.52705814528, - -0.50805102327, - -0.188526523792, - -0.387118866173, - -0.218075835362, - -0.521755687113, - -0.487507541963, - 0.29333099797, - -0.652457885382, - -0.503657873063, - -0.0593586418365, - -0.507547871741, - -0.346414799302, - -0.199616570882, - 0.043799436223, - -0.249310266621, - -0.0696223049976, - 0.216258615773, - 0.179590046404, - -0.268291470073, - -0.0726955234052, - -0.266086636369, - -0.45321832241, - -0.380589204893, - 0.0849131342107, - -0.267797909958, - 0.0643343240858, - -0.66964184137, - -0.515411428621, - 0.0684760613136, - -0.146478678563, - -0.416205681858, - -0.83098834909, - -0.725868612635, - 0.119365847099, - -0.0954378087244, - 0.0920794028818, - -0.0392517721198, - 0.0445528273561, - -0.414402497179, - -0.258815616515, - -0.478076131055, - -0.49710114898, - -0.318258703027, - -0.240497642309, - -0.147983756068, - -0.292952083077, - -0.410054376636, - 0.169142127399, - -0.699050261513, - -0.200237281792, - 0.197956462189, - -0.15202393118, - -0.722133735535, - -0.465721105987, - -0.285254489895, - -0.496592731249, - -0.344438874787, - -0.182172671133, - -0.222715500031, - -0.23273380159, - -0.10581486955, - -0.567800633852, - -0.269075930778, - -0.192718803442, - -0.703425114984, - 0.00149398546997, - -0.659867123557, - -0.472730872244, - -0.516057526798, - -0.421011682873, - -0.760942799303, - -0.0992656221964, - -0.681315761021, - -0.0601557252497, - -0.486645256605, - -0.655160021725, - -0.273061296311, - -0.176444193885, - 0.157325706089, - -0.148781341998, - 0.047790898396, - -0.098647803393, - -0.179633408155, - -0.538101159545, - 0.470759769586, - 0.00697928358721, - 0.282091559658, - -0.290912826109, - 0.153999006273, - -0.278279476158, - -0.452187088574, - 0.0818493913191, - -0.392381375946, - 0.00786063447283, - -0.354022952017, - -0.15875369511, - 0.0595993118041, - -0.149106224832, - -0.946526026507, - -0.147262595371, - 0.0188733279786, - -0.486012986434, - 0.468892419733, - -0.0255097586154, - 0.167727012362, - -0.0634299114357, - -0.141436098323, - -0.0343921491763, - -0.0144164665342, - 0.118361021003, - -0.394661349125, - -0.475782241563, - -0.337388130346, - 0.185511362969, - -0.241866098332, - 0.255421706515, - -0.152430994918, - -0.708539265764, - 0.0947223382126, - 0.0765117661216, - -0.357792879549, - -0.352146670158, - -0.210204123446, - -0.751706432018, - 0.303672190883, - 0.00050174509462, - -0.513495867459, - -0.0682437606033, - -0.0135104540718, - 0.0631202188709, - 0.08167607506, - 0.0192124724736, - -0.215758248082, - -0.392485804018, - -0.51959779115, - -0.723237932736, - -0.299522971408, - 0.227338090169, - 0.123793659909, - -0.0573294976281, - -0.289504566444, - -0.341724591535, - -0.116585276423, - -0.341705274087, - -0.380633967224, - 0.0273683325878, - -0.305979550523, - -0.0820969766266, - -0.158350207107, - 0.132538481499, - -0.0243086219284, - 0.0866660948003, - -0.285908910484, - -0.165308626059, - -0.207671046831, - 0.0428814927132, - -0.752145091757, - -0.837324041459, - -0.274435578823, - -0.528294104662, - -0.239734165383, - 0.24880804911, - -0.0762859216464, - -0.357203583315, - -0.0973632551199, - -0.530197503041, - -0.0636309860897, - -0.382219599884, - -0.359867911142, - 0.676109523542, - -0.732849891257, - -0.315582479856, - -0.119894362467, - 0.367229600453, - -0.349632890692, - -0.394222965779, - 0.062733115263, - 0.095347541381, - 0.358739592031, - -0.347205689436, - -0.455756869216, - -0.21455941705, - -0.018355190646, - -0.117181313624, - -0.12936444109, - 0.218450994811, - -0.0266384643863, - -0.126250405431, - -0.32352931943, - 0.119914647848, - -0.635663219347, - 0.446417977493, - 0.322889539183, - -0.32341595554, - -0.159694741723, - -0.000920684658562, - -0.18515448334, - -0.529224184143, - -0.30920100643, - -0.0807547496362, - 0.0083411150766, - 0.093036841578, - -0.56276561686, - 0.415094706323, - -0.427866381473, - 0.0867371191597, - -0.425319185365, - -0.117917745028, - -0.200432749888, - -0.184199306974, - 0.0466752392136, - -0.37923770405, - -0.264388865231, - 0.114831869293, - 0.606838233269, - -0.0840846691926, - -0.171458058636, - -0.217417244561, - 0.211396562645, - -0.115220714293, - -0.225410413316, - -0.236539403577, - -0.431712655117, - -0.40043309762, - -0.167843469574, - -0.278920139837, - -0.273743304997, - -0.0129005279734, - -0.0480228435703, - -0.30669902063, - -0.124184779236, - -0.43987145949, - 0.441109325734, - -0.381071561808, - -0.010256882341, - 0.257523528461, - -0.625025420995, - 0.246134478623, - -0.114346964225, - 0.132064676675, - -0.0333069273585, - -0.0962803011569, - 0.323702769148, - -0.219676814751, - -0.435541800416, - -0.282350612921, - 0.0945698261817, - -0.146723683563, - -0.305066494512, - -0.247480208963, - -0.193653529159, - -0.1647221428, - 0.146549925264, - -0.160683500042, - 0.236707508024, - -0.34583351183, - -0.232016296133, - -0.320764763893, - -0.192817053495, - -0.339810153259, - -0.23473225583, - -0.0793945449217, - -0.0828887080015, - 0.0385788966512, - -0.80684119366, - -0.210169618061, - -0.316840014073, - 0.200830533799, - -0.131113014899, - -0.66111337767, - -0.0173465601361, - -0.292357430889, - 0.0627152801907, - 0.479810068942, - -0.55096114455, - -0.398627836838, - 0.139260233217, - -0.151048302899, - -0.224802643594, - -0.614935519577, - -0.316709027695, - 0.484400512569, - 0.150520666689, - 0.335240972167, - 0.133289167759, - 0.341902548673, - -0.0484056680416, - 0.0275021664581, - 0.123151627609, - -0.228032134566, - 0.0144223601186, - -0.154960086559, - -0.305249623632, - -0.291721269332, - -0.41855277202, - -0.326252721105, - 0.175611917491, - -0.564700962124, - -0.163840043891, - -0.222211867876, - -0.152585039264, - 0.510753591373, - -0.211351596819, - 0.288908919139, - 0.115697853351, - -0.273753140125, - -0.0604490543128, - 0.0965428271609, - -1.0039116105, - -0.286264917357, - 0.070103472738, - 0.303178930022, - -0.202704131932, - 0.0251795325152, - 0.409689480989, - -0.258780166004, - 0.261138124434, - 0.00901456124037, - -0.104063587425, - 0.317363181144, - -0.455572141893, - -0.53436692428, - 0.112482030583, - -0.579337050673, - -0.270255915433, - -0.197006054342, - -0.678363951146, - -0.375823549518, - 0.0996542613761, - 0.0579399608972, - -0.291986960898, - -0.332394202862, - 0.0248556566456, - 0.0781675939344, - 0.00543640168091, - 0.241408254884, - -0.0116647695811, - -0.436155422587, - -0.141685842047, - -0.0556084898602, - -0.541790715567, - 0.330534481002, - 0.150075717805, - -0.291867998496, - 0.0388547687461, - 0.066174485449, - -0.195600723385, - -0.0478082264031, - 0.0580312179716, - 0.0000849638101149, - 0.210862125531, - 0.176483853277, - -0.189242551585, - -0.616887540776, - -0.5130666759, - 0.580687834058, - 0.436337687656, - -0.155555921104, - -0.0507910982818, - -0.462026629076, - -0.061209771324, - 0.13714088749, - -0.243400685872, - -0.0728598538998, - -0.0455896053393, - 0.236724767056, - -0.271748525513, - 0.363351708765, - 0.00321539324397, - -0.393579952457, - 0.00111930238007, - 0.044751746023, - -0.331739271561, - 0.0546314980786, - -0.262427693426, - -0.387379137482, - -0.598872528347, - -0.00208209147732, - 0.20867255083, - 0.342661720147, - -0.123812258102, - -0.347497502803, - 0.211690518537, - -0.0369538805502, - -0.101642513344, - -0.514351417759, - 0.25946587855, - 0.337155209667, - 0.0353093142018, - 0.254171734868, - -0.00885172335769, - 0.00667283486279, - 0.0985896253693, - -0.459496439621, - -0.186750765445, - -0.169047076532, - 0.0486291034378, - 0.280323305652, - 0.345825938655, - 0.398011528234, - 0.110409892018, - -0.401082095829, - -0.200763578573, - -0.506140115094, - -0.0853994928239, - -0.124972532982, - -0.0722483067074, - 0.108349380919, - -0.0308624552808, - 0.265662632283, - -0.275173157869, - -0.298687997797, - -0.248975984442, - 0.314155814452, - -0.156797479108, - 0.588937914051, - 0.00913339818521, - 0.231051775406, - 0.0759203741183, - 0.128593397038, - 0.217338711025, - 0.305047000719, - 0.0750524610939, - 0.103742650734, - 0.238970021357, - -0.526813737125, - -0.0968849039039, - 0.223394122561, - -0.585511535454, - 0.136863516373, - -0.0671048868047, - 0.270008215096, - -0.0978533804993, - -0.100505946012, - 0.324510815626, - -0.0136994830976, - -0.151695646832, - 0.33735762683, - -0.525500886485, - 0.234405616641, - 0.141631244156, - -0.238247513507, - 0.0154845130683, - -0.545778083975, - -0.262350689114, - -0.0895612576352, - 0.555609133354, - -0.103049446692, - -0.116495095349, - 0.445974315123, - -0.283613853956, - -0.11284964095, - -0.43510334591, - -0.0307632060173, - 0.227351442264, - -0.133682588731, - -0.130166313296, - -0.189781540487, - -0.336892797674, - -0.561341544105, - 0.468575416458, - -0.52785476207, - 0.0836719781697, - -0.187430911798, - 0.297294009792, - 0.202290452653, - 0.118980719079, - 0.422397346159, - 0.410544874459, - 0.83899288922, - -0.140417107808, - 0.0325785903962, - 0.0231557933716, - 0.185284717282, - 0.137094210787, - -0.296208530477, - -0.401116505279, - 0.244160743332, - 0.0159801016478, - 0.0653760476988, - -0.233105300989, - -0.019979141975, - -0.400259526, - 0.379735283518, - 0.138779753555, - 0.329509814932, - 0.582887989653, - -0.425053379924, - 0.250684405386, - 0.122280365022, - -0.350310307869, - 0.249770890486, - -0.368483401823, - 0.0838904984214, - 0.1559845851, - -0.302336453024, - -0.813298778244, - 0.505582726337, - 0.439775606116, - 0.757681422666, - 0.32037421082, - -0.499453248206, - -0.0807282965582, - -0.11499441908, - -0.28127951713, - -0.336393953653, - 0.152591431207, - -0.134206118719, - 0.356826176621, - -0.0711225676897, - -0.0231414190216, - -0.838846530246, - 0.194394489854, - 0.210848814286, - -0.284100211897, - -0.154704273285, - 0.128038904044, - 0.117654917275, - 0.143051953626, - -0.137693822142, - 0.0401470831961, - -0.0836702464699, - -0.559557494709, - -0.429624750811, - 0.226258343562, - -0.129615995069, - 0.12589719058, - 0.0163146913938, - -0.180664458083, - 0.318585247497, - 0.171999731099, - -0.293944242925, - 0.685187283697, - 0.0910195788297, - -0.612089557562, - 0.102540460265, - -0.0332360409378, - -0.611924043575, - -0.090061815255, - 0.197422125894, - -0.437780453076, - 0.0100196221381, - 0.79548843861, - -0.167184871467, - 0.0907830884498, - -0.272475735432, - 0.256327762144, - -0.0944207729951, - 0.356999691317, - -0.292595815835, - 0.450172790429, - -0.0879719035327, - -0.463215510637, - -0.17210461229, - 0.0755485147146, - -0.0196942804073, - 0.129312377011, - -0.203875329709, - 0.162368868391, - -0.00340445556973, - -0.171968385786, - -0.104917932493, - 0.19003579863, - 0.803390871168, - 0.140797222948, - -0.113667716743, - -0.225648212174, - -0.41658060355, - 0.148496177866, - -0.245223409681, - -0.212045037634, - -0.273715306554, - 0.0586326027761, - -0.209186669154, - -0.307024292504, - -0.128614158982, - -0.12958725156, - 0.197018467819, - 0.0762195243649, - -0.282688324249, - 0.510296307573, - 0.17942223049, - 0.0383683570954, - 0.0962041484363, - 0.00875315270551, - -0.155332966454, - -0.0297246533167, - 0.157746283923, - -0.168464667464, - 0.170879478843, - 0.477431192049, - -0.0952240888658, - 0.208116037147, - 0.316909347673, - -0.27632218974, - 0.0530365658804, - -0.0236717633168, - -0.328514201592, - 0.0969486898694, - 0.312906865288, - -0.34255621396, - 0.176150047021, - -0.228577138372, - 0.287942669864, - -0.640328276618, - -0.161695908841, - -0.312108100275, - -0.00558865872818, - 0.18511896352, - -0.0255537664455, - 0.0731308235112, - -0.0921654980273, - 0.177329974819, - 0.147534854912, - -0.073194283383, - 0.190977353506, - -0.101759595819, - 0.10172207452, - 0.0676630933452, - -0.529779772547, - 0.0211788458584, - -0.0592627292774, - -0.00410965148025, - 0.489616981085, - -0.660998522068, - -0.0483173520289, - 0.0527836656231, - -0.335968021967, - -0.278093867206, - 0.0955757085784, - -0.0828714659638, - -0.250671647361, - 0.499255341743, - 0.177223079624, - 0.113621125514, - -0.169726671856, - 0.192193096101, - -0.737188986318, - 0.234889972003, - 0.265548448408, - -0.223080846034, - 0.322786906627, - 0.164117217437, - 0.043929815193, - 0.125433623586, - 0.118513689462, - 0.294041814848, - -0.256669274552, - 0.135587036437, - 0.574639757137, - -0.0406343402632, - -0.130136234502, - 0.225531550217, - -0.134127263765, - -0.917875059147, - -0.158508958819, - -0.0275205685044, - -0.0475982623286, - 0.697997906371, - -0.709213889168, - 0.226496864801, - 0.321008847288, - -0.208185155977, - 0.0439335031534, - 0.296880790602, - 0.198523123676, - 0.113044378791, - -0.475140358636, - -0.0539969184274, - -0.194506994113, - 0.118542515101, - -0.0835159869162, - 0.440623091287, - -0.519977307968, - -0.0962711284438, - 0.13764103895, - 0.0941191249761, - 0.436001369777, - -0.238717199103, - 0.0607881510739, - 0.131443899458, - -0.365125196586, - -0.32007395013, - -0.202347619026, - 0.442922671754, - 0.11735469862, - 0.241674463338, - 0.427937344678, - -0.241747763743, - 0.0456843303988, - 0.156565192694, - 0.0739776199681, - -0.257470936337, - 0.0276603820499, - -0.26864371662, - -0.0612444179423, - 0.0155906308716, - 0.111907849882, - 0.442422035681, - 0.234070487245, - -0.117221275614, - 0.171927520854, - 0.114133060263, - -0.111428582758, - -0.573340823559, - -0.149734923157, - -0.302474093389, - 0.217749343355, - 0.458911814024, - 0.282510448805, - -0.330308346164, - 0.210990788921, - -0.224447866977, - 0.0343429651954, - 0.119434430628, - -0.173730940073, - 0.29994643864, - 0.249636971158, - 0.325063958604, - 0.0281502285555, - -0.345387810533, - -0.0366964494252, - -0.0163079411626, - -0.0673124930164, - 0.373689593844, - 0.054399547869, - -0.281250135196, - 0.0732683878375, - -0.201729414513, - -0.019880974051, - -0.0643202341666, - -0.237868186507, - -0.335117032503, - -0.106678581186, - 0.181335294188, - 0.215940716362, - 0.0132612792814, - 0.247980996895, - 0.307049178831, - 0.442555685549, - -0.0731032181992, - 0.27593297332, - -0.358924711633, - -0.436083438032, - -0.339564169995, - 0.00197384390122, - 0.0390397433053, - 0.266213125588, - 0.58365871518, - 0.285815577065, - -0.0185020020416, - 0.0681939719893, - 0.195648121923, - -0.197338050297, - 0.0765331792103, - -0.128958764661, - 0.119086176053, - 0.00282454321406, - -0.312947206315, - -0.695964401167, - 0.553239774023, - -0.0376879201897, - 0.0746397518185, - -0.176950259932, - -0.539628816011, - 0.516822108129, - -0.0622217985455, - 0.150926764091, - 0.0105252148421, - -0.0399099182141, - 0.241303517604, - 0.149541831072, - -0.10893577126, - 0.290634236282, - 0.241512343063, - 0.12203163533, - 0.0542806812104, - -0.502567942781, - -0.454161777539, - -0.199479307882, - 0.438411665049, - -0.0641438807352, - 0.00594461911697, - 0.239920358582, - -0.41998733054, - 0.371973299782, - 0.588003757256, - -0.262176941033, - 0.173621192572, - -0.25766576834, - -0.00965134256269, - -0.223307469429, - -0.356565589984, - -0.547550930495, - -0.143957201672, - 0.200328892021, - 0.500515827125, - 0.139532730512, - -0.543648406397, - 0.107904823323, - -0.0356731632355, - -0.0708056100558, - -0.511627016889, - 0.165933002149, - 0.619878225607, - 0.116931235693, - 0.345863463859, - 0.0517921868435, - -0.227110996032, - -0.332289758136, - -0.437738102645, - 0.00408070682058, - -0.210225019182, - -0.706774085568, - 0.266253898061, - 0.307942412599, - -0.339109940764, - -0.752690007293, - 0.177559825543, - 0.14747008255, - -0.0425676491291, - 0.157885178461, - 0.104164775971, - 0.387627860985, - -0.707867528286, - 0.334999096451, - -0.189684258708, - 0.572253554318, - -0.137323556885, - -0.19114713855, - -0.0688812083589, - 0.23351459852, - 0.392166474454, - 0.336396189118, - -0.380858373114, - 0.20508502413, - -0.25853384522, - 0.0530446418702, - 0.0681919588066, - 0.148177885756, - 0.240202152085, - 0.185186218601, - -0.213638399254, - -0.342717973358, - 0.152967439734, - -0.514902498319, - 0.243831772953, - -0.314853254444, - 0.149778402644, - 0.0466057025477, - -0.0481525976904, - -0.108658987573, - -0.419283102067, - 0.396228113786, - 0.198734513953, - -0.314060288959, - 0.0204589878278, - 0.0390433530684, - -0.163529556693, - -0.0248469139999, - 0.0827430352635, - -0.385160839068, - 0.190355620369, - 0.734164602564, - 0.385362784494, - -0.0745966822104, - 0.445076205239, - 0.0321274976509, - 0.0612078853499, - -0.0221726101469, - -0.195237127187, - 0.109911393427, - -0.212841741942, - 0.0791356462832, - -0.209871066639, - -0.123012301344, - -0.00477279105379, - -0.0361132859132, - -0.5366574356, - 0.0617332497372, - 0.204923416937, - 0.199909195072, - 0.130106472837, - 0.0637009544758, - 0.0990587525174, - 0.125143769129, - -0.231967013973, - -0.756104944965, - 0.411061327646, - -0.00120166481615, - 0.0178389817873, - -0.0198600319551, - -0.119465104176, - 0.294216946987, - -0.196086458215, - 0.378339666513, - -0.332729311165, - -0.302519191423, - 0.166620706661, - -0.28641018466, - 0.10831007804, - 0.24896644621, - 0.452718429403, - 0.231927473009, - -0.478445403976, - -0.256712872314, - -0.430090235381, - 0.0376316359898, - -0.28381847539, - -0.367661611668, - 0.0877064333425, - 0.376750784251, - -0.265560654647, - 0.501181497381, - 0.108032149009, - 0.889711415547, - -0.137525983149, - 0.134708662242, - -0.119213498324, - -0.137377924061, - 0.19946584583, - 0.20501999232, - 0.575311534307, - 0.307794811402, - 0.139171914562, - 0.356485953565, - -0.315761592406, - -0.210584241272, - 0.392558448326, - 0.241199260719, - -0.147875910219, - 0.112497602132, - 0.179914814888, - -0.0229983132652, - -0.397803354683, - 0.0671250322881, - -0.331323687431, - -0.00912602706332, - 0.334527896269, - 0.205953475887, - -0.0234617894485, - -0.253416488078, - 0.00583198173737, - 0.451965496671, - 0.165643675439, - 0.281642160743, - 0.0748306941871, - 0.702511267951, - 0.350164048778, - -0.0207171017099, - 0.35984049302, - -0.0726923355015, - 0.0302373164135, - 0.0401325474357, - -0.0379731780604, - -0.255532767225, - -0.278660772664, - -0.139171356288, - 0.343988609434, - 0.400045852442, - 0.0391050092126, - 0.0869111313014, - 0.122449955787, - 0.150959641768, - -0.15990891272, - 0.0160108959812, - -0.148992391859, - -0.0107758097286, - 0.326746851849, - 0.0460898055773, - -0.745788977551, - -0.32524348583, - -0.327433874558, - 0.130470876216, - -0.329628459927, - -0.330464310425, - -0.198990335733, - -0.158585846199, - 0.0226292641789, - 0.169445490883, - -0.103529163554, - 0.207200055765, - 0.0611726352167, - -0.0913039242659, - 0.343145918842, - 0.0119649160912, - 0.150188551554, - 0.219424706567, - 0.154683380898, - -0.0283950822091, - 0.625517112525, - -0.111131025284, - 0.131077324556, - 0.384626572335, - 0.040990805625, - 0.244877888818, - -0.472381432844, - -0.157368813469, - 0.055396454516, - 0.390699709925, - 0.165143065213, - 0.184998840495, - 0.287459019165, - 0.336639465269, - 0.333387087283, - 0.0528129607628, - 0.240339309265, - -0.262063296851, - -0.283110443776, - 0.0136420406289, - 0.167731809827, - 0.356346996689, - -0.0765016359879, - 0.391493953251, - -0.0630058956113, - 0.0745304449461, - 0.596222608149, - -0.243341219837, - -0.200244421222, - 0.0236231142023, - -0.0380332736732, - -0.136528905352, - 0.849841716491, - 0.483117275117, - 0.483071903054, - 0.236816725832, - -0.0877016097925, - -0.198849713175, - 0.0466306531206, - -0.0301779519697, - -0.669582112462, - 0.604692440069, - 0.337833454047, - 0.0795558977701, - -0.0870327641076, - -0.0171336296122, - 0.0762582953265, - 0.398458247808, - 0.144000961383, - -0.129076290781, - 0.654224951592, - 0.946824064275, - 0.00883670493073, - 0.0723593417974, - -0.00926134842245, - -0.149870621907, - 0.149386511946, - 0.0371237757845, - 0.657029499902, - 0.493098299946, - 0.0587914474409, - -0.405821759181, - -0.182329954439, - -0.216274308297, - 0.569920240556, - 0.293891122521, - 0.0451597236263, - -0.27085159243, - 0.212511374238, - 0.325038666916, - 0.161286614271, - -0.138355560198, - 0.0313363280993, - 0.290431694104, - 0.171537284357, - -0.193279249717, - 0.298074938405, - 0.378722826511, - 0.0827504635306, - -0.16688630569, - 0.0102853021697, - 0.362829335614, - 0.24220061619, - 0.449517326386, - 0.170559248039, - 0.490123827701, - 0.250879258179, - 0.285932030997, - -0.0739778740296, - 0.102257802629, - -0.32459096433, - 0.270067477768, - -0.161672119435, - -0.0966975672494, - -0.00139797947837, - 0.0688232304139, - 0.171232534373, - 0.362531827399, - -0.0493624909231, - -0.582594813359, - -0.184499259733, - -0.0580714142616, - 0.274822457899, - 0.461765536712, - -0.0942197152278, - -0.0740275694596, - 0.464980895012, - 0.3744176828, - -0.297899143985, - 0.278340883023, - 0.166263046813, - -0.123518461853, - -0.241375644537, - 0.700138624804, - -0.207351570172, - 0.54262199023, - 0.0504709608346, - 0.177050121803, - 0.0768182557539, - 0.270115367083, - 0.702981235552, - 0.0458715929153, - 0.50781491875, - -0.17987227472, - 0.243046525929, - 0.344830890972, - -0.327152937323, - -0.0163151262048, - -0.204070623997, - 0.167383101548, - 0.0520900117659, - -0.289746089936, - 0.370835347612, - -0.22106626109, - 0.71349926576, - 0.298336035023, - 0.340857605676, - 0.169403522413, - 0.441908759225, - 0.0388038442397, - 0.072783783723, - 0.696843369097, - 0.546458528808, - 0.547175674341, - 0.761523294965, - -0.0938650877598, - 0.0918351189311, - 0.599514199765, - -0.181457858582, - 0.538509640706, - -0.355421241481, - 0.136713674944, - 0.508328627754, - -0.476262398017, - 0.22593294104, - -0.220834461505, - 0.361612427822, - -0.204115546657, - 0.420050760489, - 0.138319966911, - 0.272335399297, - 0.177680623374, - 0.311499042797, - -0.017826721055, - 0.388055452832, - 0.603236701294, - 0.116836461312, - 0.160522605245, - -0.514190645612, - 0.300956472986, - -0.137887647125, - 0.441411988539, - -0.0066129626654, - 0.487800083166, - 0.0909370291456, - 0.527284160093, - 0.105079630996, - 0.0617405085786, - -0.195843373329, - -0.118960693362, - 0.249640844802, - 0.796865076978, - -0.0330337923031, - -0.104212489171, - 0.257292502696, - 0.558313672984, - 0.219054734464, - -0.0561029237627, - 0.659262100888, - 0.0339585263205, - 0.550715213607, - 0.312441834183, - -0.306097659683, - 0.519345366615, - 0.148227250176, - 0.322224963362, - -0.184292571206, - 0.254347252911, - 0.248586000224, - 0.174216377853, - 0.251486381611, - 0.209387150177, - 0.693914444904, - -0.0498059636847, - 0.280546423054, - -0.0979564011935, - 0.381982732182, - 0.264122597126, - 0.563390400357, - 0.31512988223, - 0.422172658101, - -0.0158852986109, - -0.00932571597003, - 0.16482826548, - 0.24710507505, - 0.432082044492, - 0.378007551706, - -0.118945421588, - 0.444658580642, - 0.219907873818, - 0.886122548269, - 1.10953721601, - -0.453075551421, - -0.028687335687, - 0.399694963446, - 0.624948061864, - 0.176653396316, - 0.414213479212, - 0.354364114871, - 0.154644372851, - 0.129284565006, - 0.597048571661, - -0.0985434720048, - -0.21580778762, - -0.110298465877, - 0.497898879023, - 0.0290393132821, - 0.242449981961, - 0.163441128326, - 0.347325731566, - 1.17799903007, - 0.156185241978, - 0.601482106279, - 0.352871145956, - 0.0468123060371, - 0.481458075834, - -0.278398675214, - -0.245019663736, - 0.67237970864, - 0.331479952036, - 0.0494138271299, - -0.362297663396, - 0.733395012527, - 0.477535282366, - 0.206681234505, - 0.240857542086, - 0.549164304819, - 0.536978276837, - 0.443112205231, - 0.756129359431, - 0.924050894485, - 0.285098087199, - 0.115270680623, - 0.157000312225, - 0.452880880575, - 0.0170567762705, - 0.268932123755, - 0.36843948358, - -0.450676457022, - 0.860323423916, - 0.091322050349, - -0.0637040030499, - 0.318506961762, - 0.43391951377, - 0.436554996882, - 0.233038729, - 0.501325920865, - 0.228223560073, - 0.251881058691, - 0.248429087063, - 0.473598261663, - 0.392715755593, - 0.147755534034, - -0.268630674588, - 0.72540126066, - 0.425750816551, - 0.657509261484, - 0.384841406971, - 0.0192592705212, - 0.386054741553, - 0.346773045855, - 0.576407790785, - 0.0488951930226, - 0.0555852598323, - 0.315092869311, - 0.618047548558, - 0.784124042259, - 0.430086062059, - -0.0701380984036, - 0.433178928013, - 0.344378455015, - -0.0286496915042, - 0.364301102306, - 0.484912905208, - 0.824468678568, - 0.307437414102, - 0.108759185533, - 0.190474749389, - 0.548242041113, - 0.276722424459, - 0.701758620157, - 0.30541292431, - 0.32101754489, - 1.08365020507, - 0.740749547082, - 0.640744498656, - 0.795630741761, - 0.765137138556, - 0.256660943679, - 0.0906429933848, - 0.356284659497, - 1.44521617714, - 0.151774969644, - 0.676471712029, - 1.01135404929, - 0.345252516335, - 0.519366777595, - 0.541388158704, - 0.373607478697, - 0.171804998959, - 0.163623938073, - 0.578772194587, - 0.853212066894, - 0.729925969659, - 0.477194529646, - 1.14879775942, - 0.286671774202, - 0.487017197952, - -0.151756399147, - 0.011162145632, - 0.0242201403285, - 0.19486189468, - 0.146677217959, - 0.941538591988, - 0.480452112006, - 0.98938462865, - 0.485268463107, - 0.885613965288, - 0.466887106232, - -0.0123987300925, - 0.966306771319, - 0.351899040244, - 0.347773584249, - 0.509239005689, - 0.596878613203, - 0.149425688966, - 0.324788797106, - 0.0729090183224, - 0.491741772434, - 0.51252904314, - 0.0381160561583, - 0.267352751905, - 0.348484842162, - 0.442371637055, - 0.589408666005, - 0.575937937527, - 0.60131735028, - -0.354144152664, - 0.931537065157, - 0.241814017504, - 0.683093286271, - 0.187683593789, - 0.807608198902, - 1.0989055685, - 0.269008766803, - 0.529974207757, - 0.517324980167, - 0.96121601012, - 0.577925934342, - 0.748228052265, - 0.772267464828, - 0.512694627835, - 0.798084693337, - 0.804367971235, - -0.0209476922623, - 0.0552848803472, - 0.86721428767, - 0.371502321177, - 0.990960709781, - 0.547789006763, - 0.797843508832, - 0.852936291051, - 0.568996365556, - 0.519905414674, - 0.776886211867, - -0.0508252917084, - 0.406816881954, - 0.622308430896, - 0.369363003748, - 0.880194285992, - 0.692844402758, - 1.31742621633, - 0.471492897365, - -0.0197746714894, - -0.18903987504, - 0.407894939264, - 0.085408350746, - 0.689369451715, - 0.565132557183, - -0.11771936782, - 0.684910420288, - 0.932235891875, - 0.57600416727, - 0.117623583739, - 0.314806191307, - 0.332681512165, - 0.474178800481, - 0.890747110179, - 0.319609347441, - 0.255622385693, - 0.674694630558, - 0.503290578697, - 0.452697886849, - 0.811715674304, - 0.663228362069, - 0.714378186964, - 0.437137008263, - 0.749964067784, - 0.561800588263, - 0.416577472948, - 0.591946647762, - 0.591970512269, - 0.765361052995, - 1.06202577403, - 0.256355123962, - 0.666657778147, - 0.978625915106, - 0.235944473101, - 0.72285388076, - 0.531229633232, - 1.21876420579, - 0.975581782093, - 0.893261359176, - 0.474058131282, - 0.309775017257, - 0.909727622684, - 0.782760283514, - 0.0512693950018, - 1.19949424388, - 0.637982607341, - 0.97843506165, - 0.880492471707, - 1.08218168782, - 0.395267647614, - 0.607737025959, - 0.353190784993, - 0.604590667762, - 0.828543192226, - 1.04899631186, - 1.03900721803, - 0.219341618423, - 0.0919975396421, - 0.811317242676, - 0.727220971223, - 0.635227363761, - 0.821927300839, - 0.217714244774, - 0.942378736373, - 0.844825516236, - 1.00660895354, - 1.0184454016, - 1.36583996227, - 0.630158321793, - 0.954670857035, - 0.493324490109, - 0.606812403726, - 1.69023554401, - 0.860347965511, - 0.296146773694, - 0.873827016382, - 0.98936019584, - 1.0033117667, - 0.507165544186, - 0.695225477996, - 0.487200167231, - 1.12032242293, - 0.418330308095, - 0.284917123511, - 0.537745504926, - 0.878594024249, - 1.10485507812, - 1.10835679114, - 1.07079287644, - 0.742837639257, - 1.11032104605, - -0.0417423866991, - 0.253587857657, - 1.03173495618, - 0.759650286052, - 0.442889920403, - 0.960426169527, - 0.602524490308, - 0.415789534153, - 1.15306843611, - 0.439187039404, - 1.16738339081, - 0.657176390519, - 1.10868380295, - 1.09291556013, - 0.617471881828, - 0.856628336456, - 1.2614821652, - 0.684101208507, - 1.28966590338, - 0.747829769068, - 0.581463795549, - 0.196454499801, - 1.06324618055, - 0.629887978425, - 0.428857547891, - 0.624782401251, - 0.942719384636, - 0.661986862651, - 0.440975959628, - 1.20838089135, - 0.930608624773, - 0.939691222391, - 0.544457804274, - 1.41093796385, - 1.17988108494, - 1.04156810148, - 0.447135217489, - 0.967830103448, - 0.965960709317, - 0.750353992493, - 0.986505580759, - 1.2682786205, - 0.440898965113, - 1.21047804622, - 1.03390652665, - 1.23902236568, - 0.970766089445, - 1.22997991073, - 1.2403789256, - 0.714690158222, - 1.06517991737, - 0.898279267435, - 0.670027145929, - 1.28628586971, - 0.970225356617, - 1.36592073771, - 0.684773994386, - 0.526669723478, - 1.01250218142, - 0.763529561366, - 0.614285288095, - 0.770552432244, - 0.675108430848, - 1.01562026235, - 1.20481774993, - 1.14659802013, - 1.0692771944, - 1.05045697098, - 0.826206553319, - 0.974710691408, - 1.15625063318, - 0.780868973885, - 0.610608035552, - 1.30820774069, - 0.435758957449, - 0.538460050728, - 1.03594485497, - 1.01977721181, - 1.13317701751, - 0.86664676005, - 1.42232692379, - 0.838036574122, - 1.27208055898, - 0.991768940106, - 0.603616701918, - 1.03568923701, - 1.05342205299, - 0.886953274991, - 1.16479542788, - 0.889010298031, - 0.708090605132, - 1.14134209432, - 1.12678213347, - 1.06671667798, - 1.2791999104, - 1.20725671385, - 1.3105256506, - 1.84670135381, - 1.30069848063, - 1.22155213787, - 0.573368090917, - 1.06863209614, - 1.79292067497, - 1.06916237679, - 0.564074090489, - 1.02214184179, - 1.31453583845, - 0.89798666227, - 1.01240018125, - 1.31509636468, - 1.10481437329, - 1.05391268573, - 0.77191429933, - 0.77364971407, - 1.20397816594, - 1.08539463053, - 1.21292806105, - 1.08160100776, - 1.13578790124, - 1.40025929521, - 1.31436726374, - 1.52562935386, - 1.26489254693, - 1.40784254535, - 0.460307581457, - 1.60269919953, - 1.28350437992, - 1.4182003379, - 1.79217900313, - 1.2623303146, - 1.14124648059, - 1.57776038788, - 1.0054063068, - 1.3223316351, - 1.39747272582, - 1.16590837316, - 0.848852692096, - 1.16037322747, - 1.22336736517, - 0.883875742433, - 1.35896704021, - 0.876340035498, - 1.40071302548, - 1.43191692184, - 1.12207292027, - 1.23251106213, - 1.1943043139, - 1.24257365053, - 1.21031556947, - 1.6126504847, - 1.10115651514, - 0.917164641737, - 1.18842001484, - 1.09449803329, - 1.34802684538, - 1.53362095858, - 1.37824425425, - 1.55505879773, - 1.73755159173, - 1.04994805678, - 1.45006304064, - 1.56779855685, - 1.43204221002, - 1.69923271791, - 1.73649130676, - 1.20220247636, - 1.72675055145, - 1.33152784655, - 1.24485060146, - 1.29894553416, - 1.5597844907, - 1.46210412777, - 1.65290669252, - 1.07462892827, - 1.55034616171, - 1.39516848313, - 1.81364173179, - 1.47280778826, - 1.01479673003, - 1.42995534678, - 1.5576974764, - 1.07986390006, - 0.993401863796, - 1.02911178573, - 1.0222286939, - 1.06545779964, - 1.41959811122, - 1.56336506978, - 2.04437653184, - 1.13441124506, - 1.65405380758, - 2.03013140141, - 1.46863130582, - 1.45916948892, - 1.67241973534, - 1.34899612369, - 1.40300491542, - 1.3755913638, - 1.08980775603, - 1.59640072865, - 1.62443438417, - 1.6791568736, - 1.30454240649, - 1.71185783476, - 1.36035036931, - 1.33208582091, - 1.59543437272, - 1.77485766298, - 1.73863034238, - 1.56210777704, - 1.51531869303, - 1.62656104925, - 1.2767920387, - 1.19706480425, - 1.52383830413, - 1.78501775339, - 0.910281841391, - 1.69239636565, - 1.17207568884, - 1.26152308245, - 1.02401539056, - 1.56980664127, - 1.67543275807, - 1.91069537189, - 1.39867804561, - 1.46924040054, - 1.81578661083, - 2.12195211522, - 1.71697221172, - 1.6451170945, - 1.71229009241, - 1.96000396893, - 1.54114561869, - 1.38800832314, - 1.92248570169, - 1.86015323414, - 2.30746654784, - 1.87976294874, - 1.41766968511, - 2.5534658542, - 1.52466863949 ], - y: - [ 1.13132349623, - 0.879209230381, - 0.991989834632, - 1.36499103015, - 1.10227196058, - 0.540155311898, - 1.02344387239, - 1.18831592903, - 0.684126894679, - 1.20660237657, - 0.761032442186, - 0.302706638882, - 0.749726191277, - 1.10887573528, - 1.20220715172, - 1.80284252956, - 0.537494163232, - 0.592649809975, - 0.931926196208, - 0.87633097161, - 0.749048323812, - 1.14141474454, - 0.842526971143, - 0.094527659013, - 0.879743254354, - 0.947252290146, - 0.980375831968, - 1.38908509126, - 0.690005042312, - 0.423396489369, - 0.737691768675, - 0.938838072948, - 0.860536047205, - 0.964743351319, - 0.842672173885, - 0.86343516617, - 1.21361940398, - 1.06688311524, - 0.670924322975, - 0.513100262536, - 0.69521511993, - 0.77638303877, - 0.697392937568, - 1.05230488088, - 0.950375789849, - 0.629573129092, - 0.822474252111, - 0.730201242832, - 0.842346036485, - 0.576052835309, - 1.0134304435, - 0.516047404986, - 0.970761216653, - 0.696872898504, - 1.03520580953, - 0.615463334244, - 0.663187212916, - 0.659484157455, - 1.11531799505, - 0.0963762837696, - 0.495910812925, - 0.862756283073, - 0.161714728382, - 0.715401683735, - 0.638380800424, - 0.358986546939, - 0.310580326025, - 0.520808678683, - 0.621706114079, - 0.635999353172, - 0.00804482201345, - 0.639945925999, - 0.515907059974, - 0.423192222083, - 0.873069625702, - 0.086528318229, - 0.870151991407, - 0.300575532161, - 0.607242532049, - 0.766541437079, - 0.940853074577, - 0.368336365398, - 0.355235314665, - 0.516230728523, - 0.281174635168, - 0.221294308529, - 1.06971960611, - 0.995515766136, - 0.418150259075, - 0.493312949824, - 0.737374985093, - 0.247532938521, - 0.921395134817, - 0.190573432651, - 0.202565278349, - 0.738867195662, - 1.19704976751, - 0.324019206034, - 0.235748931696, - 0.595399564031, - -0.328040398356, - 0.122396384213, - -0.0914813013625, - 0.0394026942882, - 0.46506045267, - 0.280422710572, - 0.216856937401, - 0.751597641225, - 0.529946956081, - -0.104085422448, - 0.4306029547, - 0.226041275941, - 0.398741853076, - -0.0990500116451, - 0.320550121033, - 0.440367526397, - 0.0717450661852, - 0.476259727512, - 0.668824405801, - 0.110703388873, - 0.689603860463, - 0.776330990195, - 0.619669617174, - 0.522859672033, - 0.458417381922, - 0.260645278501, - 0.850189371266, - 0.14789383759, - 0.526734598751, - 0.432572117062, - 0.611929734392, - 0.472715893907, - 0.362583773703, - 0.638458440739, - 0.28713821682, - 0.293713020932, - 0.172347134781, - 0.357445931516, - 0.247380406781, - 0.637459588723, - 0.109194544793, - 0.42878764343, - 0.269352386247, - 0.201132826669, - 0.147058651319, - 0.337877750187, - -0.0795859247348, - 0.00293068034537, - -0.292271046023, - 0.186580139128, - 0.839673598682, - 0.386843793091, - 0.19368468524, - -0.0700330447528, - 0.0379415730558, - 0.710007451434, - -0.408995911309, - 0.459511195941, - 0.383484554131, - 0.122043410766, - 0.324625930598, - -0.0636105314506, - -0.156425762515, - -0.0503877125144, - 0.225850698001, - 0.179232474594, - -0.201365709381, - 0.551058135099, - 0.316684147314, - 0.243904039117, - -0.0499496584091, - 0.768743010479, - 0.198700208056, - -0.0505469803388, - 0.300997200604, - -0.383327311181, - 0.855691686816, - 0.946481177705, - 0.234511753183, - 0.56015316598, - 0.417653983227, - 0.476381533875, - -0.129623049283, - 0.39876166655, - 0.192514689108, - -0.352669595151, - -0.0392876707369, - 0.0524365913501, - 0.419523404916, - 0.287728583634, - -0.0664135854605, - -0.0463523510117, - 0.604769025646, - 0.437602223771, - 0.0744860247681, - 0.448805369256, - 0.35650335712, - 0.120226119657, - -0.125968837039, - -0.0734850284241, - 0.189226550749, - 0.362817051918, - -0.0122572771932, - 0.192143726493, - 0.9986576973, - -0.0602251774773, - 0.786354046299, - 0.720794002576, - -0.169596858757, - 0.0707274603166, - 0.159333126394, - -0.00660879679212, - 0.220225654604, - -0.193240136882, - 0.365016430739, - 0.0643353510069, - -0.0433654922699, - -0.14721834982, - 0.153806525011, - 0.478767790542, - -0.14403427331, - -0.383638073511, - -0.200176227195, - 0.220593221286, - 0.487364500487, - 0.593245444761, - 0.239850396416, - -0.173043705425, - 0.188351593691, - -0.0844410107971, - 0.185220204592, - 0.326321846937, - 0.284455912146, - 0.440336459267, - 0.105302720676, - 0.0439160061164, - 0.548973768833, - -0.124730651027, - 0.476822995568, - 0.418223253148, - -0.103079181296, - 0.266523070263, - 0.517470931911, - -0.313263504161, - -0.00164958997518, - 0.114822064324, - 0.0716526605165, - 0.581863918579, - -0.0911130733329, - -0.36569936119, - -0.13327922372, - 0.0360897944898, - 0.0780342078173, - 0.216338573694, - 0.458361927255, - 0.130440952718, - -0.0842283230038, - 0.0337146057908, - -0.0064144507093, - -0.106238109325, - -0.303162283926, - 0.339860442519, - -0.463289378792, - 0.0142066364007, - 0.201630450416, - 0.113258159889, - 0.0237301345543, - 0.312355200613, - 0.367788936139, - -0.211780313309, - -0.168545295477, - 0.354086853652, - -0.375523178573, - 0.61729577362, - -0.389740334812, - -0.575656305939, - -0.359340802611, - 0.302651272831, - 0.45839127107, - -0.064305221416, - 0.0468307608535, - -0.112409572825, - 0.710277973911, - 0.566971475451, - -0.105628434065, - 0.433968868533, - -0.149171890263, - 0.28628993014, - 0.369161938328, - 0.173774679884, - -0.114046298311, - 0.163575196741, - -0.126711910519, - 0.0739464748079, - 0.0565648925611, - 0.0613934719812, - 0.413639222402, - 0.605807815075, - -0.392146823876, - -0.039864584371, - -0.123538699942, - 0.394847175791, - 0.281746994764, - 0.091278502496, - 0.0980621884847, - -0.0539260921353, - 0.685687248289, - -0.0600984629901, - -0.353428711696, - 0.536398043221, - 0.420843708746, - 0.557119504116, - 0.0457785813989, - 0.0741010210445, - 0.377289371786, - -0.503007659557, - 0.347609227256, - -0.257774151716, - -0.310532719685, - -0.256156255908, - -0.517809659607, - -0.498574104766, - -0.0556914813574, - -0.434570686055, - 0.247644044047, - -0.157616832277, - -0.375076137867, - 0.241526492477, - -0.068892358556, - 0.213253757654, - 0.372136588119, - -0.117662533463, - -0.618331335069, - -0.666161467848, - 0.605901491997, - 0.28976310082, - -0.376856449155, - -0.211153358636, - 0.347791177682, - -0.187283964131, - -0.248397464253, - 0.112563090525, - -0.237662506355, - 0.39928567972, - -0.354056580369, - -0.323247785543, - 0.0317971848723, - 0.120702003563, - 0.193490009233, - 0.250567787093, - -0.112987287229, - 0.463132886451, - 0.0731569714014, - 0.371210235964, - -0.281549941982, - 0.313832691797, - 0.256341927341, - 0.126071780042, - -0.0211862856393, - 0.107396863643, - -0.0891863566262, - 0.167371045329, - 0.392029997143, - 0.122388554777, - -0.0301877822846, - -0.00900483396649, - 0.0346041774669, - -0.316274971745, - 0.118410400475, - 0.321021997869, - -0.294824759549, - -0.355593386651, - 0.173707081993, - -0.0325675799454, - -0.290525059893, - -0.428858881614, - 0.20585724776, - 0.481687182554, - -0.285728553348, - 0.265019719101, - -0.0581725829951, - -0.553614151036, - 0.110339505072, - -0.343697735277, - 0.0404215399059, - -0.0157604173841, - -0.595529618106, - -0.219014101118, - -0.0584568536814, - 0.540337587193, - 0.0737778036181, - 0.23363133727, - -0.218043686323, - -0.428595913015, - 0.11037581469, - 0.173843885693, - 0.286417212141, - -0.0226918925024, - 0.585587624404, - 0.182790506286, - -0.34650778426, - 0.0565521004139, - -0.143566747429, - -0.250885345431, - -0.429604643305, - 0.0049486264307, - -0.173626412557, - 0.0367372310518, - 0.271820640503, - 0.367912721164, - 0.30970208999, - -0.0167640023826, - -0.184535560843, - -0.113656378667, - -0.492285209242, - 0.21912552756, - -0.285368931705, - 0.0468703414295, - -0.070736735817, - 0.619976188109, - 0.370779179073, - -0.513941719842, - 0.168786503101, - 0.442737274282, - 0.2160827728, - -0.13135468304, - 0.438515684561, - -0.125236884151, - 0.0226131432503, - 0.261634364255, - 0.00993685057311, - -0.214940751843, - -0.173255263007, - 0.341285600546, - -0.143121724597, - -0.000691036840521, - 0.213490069016, - -0.335141190779, - -0.0859010555604, - -0.358435214561, - -0.432614969265, - -0.264173922564, - 0.65037978662, - 0.0633373423575, - 0.0488393646869, - 0.137122903747, - -0.0233456540314, - -0.202615945978, - 0.204950961851, - 0.0655598129313, - 0.0514544359248, - 0.628773896705, - -0.298063145279, - -0.217474100903, - -0.00340632660579, - -0.0409373797953, - 0.229579873113, - -0.165709908656, - 0.280372119602, - 0.108595245546, - 0.0402580601281, - -0.98579264195, - 0.199992564141, - 0.0758147605117, - -0.0840563808698, - 0.220932133476, - 0.0567455909801, - 0.0601917386876, - -0.150025658923, - -0.202934229029, - 0.192499805718, - -0.271085941005, - -0.356474603534, - -0.135044019453, - -0.385498424762, - 0.00657849106145, - -0.188410788109, - -0.196676317075, - 0.226066613329, - 0.365236543258, - -0.0832658653721, - -0.0283643542452, - -0.0425525731835, - -0.308713310909, - 0.270109874492, - -0.353014386609, - -0.138428091334, - -0.578265717312, - -0.271378070038, - -0.311706041883, - 0.19099948305, - -0.340733555298, - 0.0414639692575, - 0.273499990774, - 0.340893453208, - -0.188994060129, - -0.267430140277, - -0.382800182549, - 0.356372928232, - 0.00498438176967, - 0.216433786701, - 0.193179911705, - -0.195232901656, - -0.479198426281, - 0.659213541832, - -0.446638648649, - 0.0943525702406, - 0.0330338297066, - 0.134616086032, - 0.109855665246, - 0.331346342424, - 0.2175103193, - 0.597194181818, - -0.0120278859835, - -0.488908334733, - 0.462580560734, - 0.954410326165, - 0.190871655294, - 0.29237727253, - -0.18060084077, - -0.350726386427, - -0.124376986406, - 0.269751095661, - 0.246567448462, - 0.279955436415, - -0.0630345416457, - 0.506350894484, - -0.0299512293316, - -0.217810227996, - 0.216671542722, - 0.358488058379, - 0.367790131975, - 0.0757956883658, - -0.118578273375, - 0.0357333875203, - -0.0925612406428, - -0.50749719005, - 0.293720886392, - 0.412762345722, - -0.0480367611916, - 0.0535148802796, - -0.0356955042444, - 0.0531976972756, - -0.00892116715262, - -0.255542302166, - 0.280068808844, - 0.268098957913, - -0.0058689112366, - 0.341935836702, - -0.166265097518, - 0.111420299757, - -0.403751387891, - -0.345429640967, - 0.756116107359, - -0.552643149764, - -0.504745602106, - -0.0899623856315, - 0.127254192591, - -0.430733284788, - -0.242256734699, - -0.182843251481, - -0.0344351244605, - -0.327876881894, - -0.189495928802, - 0.324220130036, - 0.309641428814, - 0.132777501877, - -0.449729276573, - -0.319024370864, - 0.118971391494, - 0.164962487641, - -0.259219042326, - -0.407069946619, - -0.387577011274, - 0.168157136843, - 0.207816158356, - 0.101551625393, - -0.0578910155504, - -0.329441014385, - -0.347028974516, - -0.107851137974, - -0.336088676584, - 0.188104557344, - -0.182014210719, - -0.213353786721, - -0.0204792343555, - -0.395016732585, - 0.196142820928, - 0.0176567209638, - 0.353065515216, - -0.523314335013, - -0.239943052212, - -0.154623042085, - 0.132967468279, - 0.265370942072, - -0.0173610492229, - -0.227648323452, - -0.269371468159, - 0.28342888373, - 0.0213397091286, - -0.0459740872175, - -0.134415645557, - 0.109086240757, - -0.289509269027, - 0.00451763275518, - -0.360193405182, - 0.412637244523, - -0.0404479237745, - 0.629753493153, - 0.466761770292, - -0.014556956606, - 0.506014954998, - 0.182650565503, - 0.212393672309, - -0.395161186915, - 0.381485135259, - -0.514693809865, - 0.409923732538, - -0.206498848405, - 0.301688748832, - -0.386110783692, - -0.0179019133521, - -0.118381703335, - -0.34089220577, - -0.0335167310366, - -0.0898229680062, - 0.350997278346, - -0.242419112357, - 0.386595290125, - -0.119151365838, - 0.485026759426, - -0.959373470545, - 0.0381518000888, - -0.549981601643, - 0.146333982094, - 0.731770011511, - -0.0852322685056, - -0.345272688714, - 0.197905628129, - 0.00675304026311, - 0.226210973041, - -0.0485602075499, - 0.345707690727, - -0.325911870992, - -0.318202662623, - -0.13891930073, - -0.0977035303504, - 0.790061650211, - -0.0493213795245, - -0.264792309616, - 0.0721713825822, - -0.369323150945, - -0.329566771335, - -0.218620781723, - 0.292937196341, - -0.149739892081, - 0.172770377102, - 0.497846228694, - 0.21372576697, - -0.0275603692312, - 0.0956836295959, - -0.149548960785, - 0.221768712247, - -0.234942535913, - -0.174504460407, - -0.121573082788, - 0.401027574943, - -0.564272464092, - 0.253509190611, - -0.440338232444, - 0.148864676125, - 0.276833860317, - 0.510128114625, - 0.0545596155247, - -0.321478504658, - -0.318993797805, - -0.0675970081447, - -0.282929037583, - 0.113496270218, - -0.342797508271, - -0.136644733524, - -0.166722696618, - -0.0586223626588, - 0.167856345955, - 0.363716105372, - -0.296288193757, - 0.369314673289, - 0.0298926171642, - -0.341308851588, - -0.591113279055, - -0.101779247599, - -0.307005171709, - -0.200389899306, - -0.373277825529, - -0.0275460614101, - 0.170175331415, - 0.482082253919, - -0.183121703662, - 0.0558503227201, - -0.239730409157, - 0.0616810800616, - 0.0718444263537, - 0.0489460694497, - -0.592491605927, - -0.357782545957, - -0.188754345225, - 0.24318050552, - -0.164122750315, - -0.358771442338, - 0.344883421755, - 0.25402636193, - 0.0244507509991, - 0.233576861364, - -0.364546927951, - -0.00656210529066, - -0.0160728654063, - 0.326626670352, - 0.669959223418, - 0.320049345841, - -0.693125661604, - -0.251374966814, - -0.52545680859, - -0.00955722150486, - -0.0902695645522, - 0.0223671134333, - 0.375296506048, - 0.282909391589, - 0.290214975719, - 0.562985202226, - -0.277595461813, - -0.0632076603699, - 0.16487012244, - 0.160591664967, - 0.302852530166, - 0.00786289410686, - -0.277755006282, - -0.141397700248, - 0.373978836963, - 0.435537311669, - 0.558709270952, - 0.183736645194, - -0.522055352435, - 0.214357484262, - 0.0903367401568, - 0.213484819815, - 0.0361243191007, - -0.0427216286276, - 0.162201546863, - -0.435841046581, - -0.386954021172, - 0.432395122654, - -0.441730939752, - -0.199267945709, - 0.707148590409, - 0.536908377373, - -0.132473223533, - -0.283813081033, - -0.217618672587, - -0.46974569866, - 0.00577475698766, - -0.0895421855907, - -0.305228309268, - -0.0625598033338, - 0.017160380127, - -0.574378321948, - 0.107368050367, - 0.112780277962, - 0.111416102793, - 0.245289960498, - 0.0923780362849, - 0.279973392297, - -0.149580072505, - 0.268941402897, - 0.539386753065, - -0.386513413443, - -0.163042259534, - 0.00559543725657, - 0.328116664434, - 0.146308723543, - 0.588957587079, - -0.0478700516524, - -0.485467939375, - 0.0343704194685, - 0.595018370575, - 0.474176011318, - 0.0550655425218, - -0.622999471693, - -0.176737243512, - -0.154261246103, - -0.0472515058486, - -0.206891709268, - -0.225991106995, - -0.124829709486, - -0.24557753648, - 0.0838336751524, - 0.342389999515, - 0.166150988816, - -0.343992258193, - 0.341384936742, - -0.163575541231, - 0.201385690409, - -0.405474969463, - -0.207324623735, - -0.387960984883, - -0.556936144977, - 0.0607087954601, - -0.28107115429, - -0.275950341665, - 0.133866916474, - -0.199572418598, - -0.515138982743, - -0.20391825592, - 0.73981896489, - 0.0210591524725, - -0.108814038413, - 0.264489222013, - 0.146180206419, - -0.69596643819, - -0.259824406873, - 0.174776040796, - 0.234168837643, - -0.321181301803, - -0.0375422318977, - -0.0808711281857, - 0.158876047919, - 0.464891474157, - 0.0751434718452, - -0.152245124827, - -0.119421276302, - 0.130735843343, - -0.185830652164, - 0.304310079409, - -0.287116543186, - -0.0789912151156, - 0.38031525377, - 0.0548713376727, - 0.369519054598, - 0.0918759520505, - -0.391512120399, - 0.429830679824, - -0.0467843159858, - 0.0443835953734, - 0.0419221068119, - -0.482599408635, - -0.0208525968248, - 0.23650139047, - -0.130157372828, - -0.194767433747, - 0.246304031912, - 0.0583443930129, - -0.26649982949, - -0.247927202555, - -0.0392177116743, - -0.00823616798944, - -0.292239161471, - 0.199818221481, - -0.058004022256, - 0.383317792599, - 0.189994622095, - -0.0388231241034, - 0.498643784969, - -0.163695437806, - 0.516532313759, - -0.134601798633, - -0.136662512115, - -0.42743338295, - 0.227495132647, - -0.408817156873, - -0.612632706303, - -0.179565905862, - -0.741217801936, - -0.297625120172, - -0.383145169898, - -0.0154631425655, - 0.0988480002801, - -0.317347529969, - -0.350709931331, - 0.332749595307, - 0.330497759354, - 0.16718106275, - 0.0822737322912, - 0.0970078862696, - 0.151294206848, - 0.132654185288, - -0.27005394854, - -0.777806950977, - 0.111262882167, - 0.203463036954, - -0.306239035461, - 0.119709370302, - 0.130019206769, - 0.345438880275, - 0.4245004299, - -0.341492643986, - -0.337678660338, - -0.231194937825, - 0.0492167991106, - -0.221673855182, - -0.283150106829, - -0.425693916113, - -0.192803845026, - -0.184360969085, - -0.209634283046, - -0.228022279123, - -0.163038398633, - 0.315165552126, - 0.737311484819, - 0.0525336848815, - -0.191365905899, - -0.125159383946, - -0.0950306173667, - 0.555023115308, - 0.162682719786, - 0.10756224405, - 0.0417918172741, - 0.158995894948, - 0.32221139753, - -0.142514749644, - -0.0198733495425, - 0.392679495623, - -0.149595912219, - -0.155067542922, - -0.185898678248, - 0.316498073125, - 0.147142721595, - 0.148675650833, - -0.253331843154, - -0.191104060368, - 0.107317146716, - 0.0616367897605, - 0.0987855737192, - -0.0556491968998, - 0.179706792423, - -0.126005218446, - -0.581768055757, - 0.292891184242, - -0.309026882851, - -0.716639664361, - -0.601179830391, - -0.698534414478, - -0.341744548194, - 0.293656604983, - -0.258441386599, - 0.407286472562, - -0.0382476563902, - -0.157940404077, - -0.0949535496946, - -0.0339288639384, - -0.555501593531, - 0.366430448666, - -0.0830284823111, - 0.118685283264, - 0.367070309855, - 0.541284309586, - -0.473434529872, - -0.258269918207, - 0.163111720109, - 0.235315910468, - 0.393494315634, - -0.141492586659, - 0.153811507851, - 0.211219502664, - -0.371848431188, - 0.167061642811, - -0.699466396839, - -0.0246153342802, - 0.0953333825657, - -0.114820549373, - -0.19526670356, - -0.526721476381, - -0.235315209096, - -0.281696555317, - -0.165559007892, - -0.0937939982332, - -0.00103911198804, - 0.22796730481, - 0.374901322448, - -0.0339786645343, - -0.00134029029298, - 0.0222600727226, - -0.248230983818, - 0.115361202762, - 0.818511146554, - -0.148830505565, - -0.214969671177, - -0.316394196285, - 0.351815988898, - 0.193969726325, - 0.379003898175, - 0.0378857693319, - -0.242960986981, - -0.00358126134439, - 0.352544522687, - 0.366156260107, - 0.00844566966449, - 0.609655556405, - -0.00798230861241, - -0.122167004498, - 0.473583958888, - 0.28546548172, - 0.134581669057, - -0.0375820354829, - -0.268387701141, - -0.463372357782, - -0.132915116877, - -0.0292903386411, - -0.0214291392169, - 0.0686495042411, - -0.0256584877657, - -0.00109456988572, - -0.538494283693, - -0.248637624452, - -0.396894755058, - -0.0102369375804, - -0.266842446465, - 0.271453641811, - 0.0224878701847, - 0.282412951506, - 0.663816987949, - 0.00494742831485, - 0.332900741628, - -0.0999032256675, - -0.348168188718, - -0.15637991559, - -0.235322973755, - 0.052316148649, - -0.425053708389, - 0.0409885003349, - 0.261702127661, - -0.388934851294, - 0.0933089949689, - -0.115726490781, - 0.0206357615107, - 0.142947615635, - -0.417064689877, - 0.72186348893, - 0.629863561455, - 0.0669914777401, - -0.033701425419, - -0.210975902247, - -0.362104793097, - -0.0526270354425, - -0.0402991790274, - 0.175632039135, - 0.187098225671, - 0.638429654362, - -0.357723911232, - -0.631197163772, - -0.0124038722536, - 0.129543956752, - -0.203049421918, - -0.240446826072, - -0.0595262093035, - -0.2138640028, - 0.0642954233882, - 0.207542656349, - 0.491141686174, - -0.000648540233197, - -0.540262158362, - 0.226599378338, - -0.20928474923, - 0.336733639386, - 0.346004936132, - 0.448531672994, - -0.144818016132, - -0.252650780658, - 0.558728038727, - 0.35681281242, - -0.151388757459, - 0.17657318338, - 0.102934814206, - 0.622519204887, - -0.127601355362, - -0.506189700333, - -0.178573960563, - -0.0392346756265, - -0.0189674682776, - -0.393504530545, - -0.284380411192, - 0.026616425187, - -0.277652191675, - 0.109340491836, - 0.447133239987, - -0.270797504471, - 0.0454008793134, - -0.623031754945, - 0.541634986908, - 0.229528526925, - 0.0149075484122, - 0.0318251896152, - 0.152712368131, - 0.257951063427, - 0.0889490751102, - -0.0296525073664, - 0.110994495764, - -0.115808543133, - 0.490828642707, - -0.213716058095, - 0.0844445157508, - -0.307426326391, - 0.407995288656, - -0.228347285708, - -0.71505587891, - -0.102030415902, - -0.713733111789, - 0.0668113256661, - 0.489232537297, - 0.0133516237962, - 0.0535239885999, - 0.00430561540991, - -0.365216278484, - -0.0353945290387, - 0.158723260787, - 0.0724282180473, - -0.0975634796181, - -0.302340420657, - -0.310957406254, - 0.271879098179, - -0.175822844336, - 0.187308238485, - 0.20013069474, - 0.316134911796, - -0.0776979564374, - -0.036232084526, - 0.19111466291, - -0.0874825381991, - 0.0195979695199, - -0.258972010475, - 0.136668958368, - -0.372883354582, - 0.00472979082686, - 0.0339861128387, - -0.0710965982249, - 0.0643592196997, - 0.307440904917, - -0.232361271977, - -0.441529445744, - -0.0785989615995, - 0.372332755988, - 0.000662952773861, - -0.0885972346151, - 0.118760731114, - 0.261203522278, - -0.314077153507, - -0.0447634125279, - -0.21815983243, - -0.0896797201743, - -0.139313595077, - 0.0772641706323, - 0.803894584313, - -0.250226582299, - -0.0178574578852, - 0.0765865035157, - -0.471845487055, - -0.51177854378, - -0.129394839731, - -0.358612018254, - -0.180477849132, - 0.200057313574, - -0.322009020582, - -0.550348333373, - 0.423804915839, - -0.262030616674, - 0.142657799901, - 0.172463078983, - -0.0120438588003, - -0.341011296499, - 0.0971862270557, - 0.186899936747, - -0.0854905807128, - 0.177111211405, - -0.141959383084, - 0.534049206145, - -0.221070373541, - 0.34502908773, - -0.0965328354161, - 0.0268962776053, - -0.0321591075232, - 0.963493839677, - 0.0533694065936, - 0.161856036443, - -0.06344344515, - 0.192606865779, - 0.123230605243, - 0.209455010539, - -0.0795351408106, - 0.0504206589367, - -0.25122796926, - 0.0465285094014, - 0.633639976249, - 0.271977233179, - -0.618712897687, - -0.304015981319, - 0.225920022694, - 0.0161040096757, - -0.448829718533, - 0.26266410629, - -0.0671473972052, - 0.496959872344, - -0.580412410147, - -0.116235792522, - -0.298904543594, - 0.928957581209, - -0.0124436293549, - -0.111206516266, - 0.286178341528, - 0.0372591659712, - 0.00343129734089, - 0.141935229328, - -0.624185567439, - 0.800510725531, - 0.244321630365, - -0.290324096864, - 0.0307814109032, - 0.0809478467897, - -0.0972160331947, - 0.63192091473, - -0.62599927194, - -0.176413082415, - 0.0048532051561, - 0.0846635050257, - -0.0151227148804, - 0.515719296715, - 0.281886942122, - 0.115875605205, - -0.431272125434, - 0.20410081241, - -0.286037165627, - 0.313501321797, - -0.332590805984, - -0.21841619127, - -0.537480132377, - 0.0492438850152, - -0.223247278827, - -0.328346817647, - 0.120863794157, - 0.303650677451, - 0.518429895776, - -0.0933216354088, - 0.278205308048, - -0.134999508685, - 0.501182772302, - 0.147196517059, - -0.0453668206541, - 0.186134150643, - 0.124320507428, - -0.350037469645, - 0.00648081884567, - -0.108539083665, - -0.225723331687, - -0.0493310598038, - 0.439387287054, - 0.507406415029, - 0.112608159005, - 0.385369871122, - -0.314933468791, - 0.0549305163406, - 0.585461007249, - 0.159777561121, - 0.500566543256, - -0.602926445132, - -0.382748841146, - 0.00322787594932, - 0.245357223135, - 0.146494901031, - 0.3610944356, - 0.32359085137, - -0.433573918153, - -0.289064734401, - -0.298824245152, - 0.436182954387, - 0.136136508792, - -0.243361356393, - 0.353534386101, - -0.384099301146, - 0.227241275103, - -0.1327580156, - 0.0609011364587, - -0.0103931247717, - 0.037432897755, - -0.14440584289, - 0.28085799564, - 0.101362551269, - -0.551116287871, - -0.17130110729, - 0.133194338447, - -0.362858729303, - 0.121290011545, - 0.040324855077, - -0.0940164690492, - 0.399892772222, - -0.135288931611, - -0.330450904527, - 0.148656598413, - -0.115487755534, - 0.292123625024, - 0.10070076711, - 0.203892368037, - -0.151951839977, - -0.337546440805, - -0.258195662241, - 0.167613463523, - -0.466987964251, - 0.260768627491, - -0.257487745378, - -0.505688497395, - 0.171732749983, - 0.132881971252, - 0.105590808475, - 0.261292345383, - -0.115896456843, - -0.65877480246, - -0.00475172154523, - -0.0489922420486, - -0.0511285686884, - -0.811518444776, - 0.157394011232, - -0.29156649356, - 0.17424586739, - 0.169130217571, - 0.305084906456, - 0.542289935765, - 0.442230106223, - -0.313709029188, - 0.315250061266, - 0.325049772254, - 0.204376281411, - 0.256372640856, - 0.160320585283, - -0.152331949897, - -0.163942680423, - 0.484258595275, - 0.345581040953, - 0.478663730477, - 0.413703027053, - 0.0310691299325, - 0.208278994229, - -0.398774271488, - -0.537083283435, - -0.215018382661, - 0.301502757166, - 0.045771566091, - -0.0339722461661, - -0.0137410912674, - 0.399356492621, - 0.00149888484411, - 0.291503066357, - 0.520600167953, - 0.147852248372, - 0.034071226604, - -0.140631155945, - 0.0629674128697, - -0.300022706615, - 0.136123073403, - -0.322907765461, - -0.689673086804, - 0.126179270809, - -0.227050097646, - 0.367256192009, - 0.210144391121, - -0.43108769464, - -0.550976484164, - 0.00252279801073, - -0.141012981588, - 0.102235579596, - 0.0617310506314, - 0.56381177653, - 0.232191786449, - 0.391369495071, - -0.202729222582, - 0.473262288154, - -0.0764052154473, - 0.393340598204, - -0.167209269263, - 0.0929027018041, - 0.188898745941, - -0.38193567148, - 0.526760219874, - 0.0708591062034, - -0.100523868209, - -0.461750791372, - 0.219248841265, - 0.41944946992, - 0.428099209706, - 0.137191114991, - 0.196228425995, - 0.00549665778617, - -0.331378406275, - 0.219568554926, - 0.207398775765, - -0.649619174289, - 0.305023804346, - 0.0687705749218, - 0.18139520171, - -0.342418152636, - -0.293693792628, - 0.807362841073, - 0.254699595401, - 0.337494777033, - -0.286603162473, - 0.793718714698, - -0.147350469286, - 0.100997359247, - 0.159040508447, - -0.482849010577, - 0.606965317471, - 0.187932658137, - 0.562264147601, - 0.0769192402846, - 0.321111304196, - -0.190422725519, - 0.110264208354, - 0.027724561497, - 0.143974082391, - -0.105401879935, - -0.428930565419, - -0.568584384633, - 0.670612454667, - 0.204303987908, - -0.152190196305, - 0.228151079892, - 0.190956639745, - -0.265699639406, - 0.116644139674, - 0.0683421157864, - 0.267425851407, - 0.216870666881, - 0.160117905086, - 0.0734056265828, - -0.463363157867, - 0.0935224764979, - 0.0403506871815, - 0.323163623933, - 0.140314656842, - 0.647315040245, - -0.764790572631, - 0.354959300155, - 0.680724045415, - 0.139575970027, - -0.183280328881, - 0.0649891097812, - 0.341965474615, - 0.284962555123, - 0.0929185346222, - 0.0677564444217, - -0.202180607075, - -0.026363882879, - 0.96025119605, - 0.119052935136, - -0.221432693062, - -0.0571555099151, - -0.109291269649, - -0.263828563236, - -0.407075262692, - -0.142916967402, - 0.621504414187, - 0.379218175906, - -0.183180629012, - -0.227868285992, - -0.0143810375238, - -0.372244448418, - 0.320043669857, - 0.0567668214499, - -0.418901645128, - 0.371446699783, - 0.464727154973, - 0.315851025098, - 0.190169281356, - -0.0474674254502, - 0.0839715081835, - 0.114584739407, - 0.0225963513454, - 0.0141846523671, - 0.653003724564, - 0.460123470118, - 0.000724973292004, - 0.0340715192757, - -0.193524983145, - 0.291518085372, - 0.277054622132, - 0.3831906134, - 0.0676819111879, - 0.00153397384356, - 0.410233129949, - -0.284197718329, - 0.124524925646, - -0.0212187004189, - 0.485865882159, - -0.319338523686, - -0.309296125754, - -0.394189666335, - -0.082218086353, - 0.242628862525, - 0.384236304554, - -0.323595821708, - -0.131149391866, - 0.238490021343, - -0.269115359329, - -0.199727248507, - 0.2521028785, - 0.35805571713, - -0.359991334842, - 0.0089778433202, - 0.215543324483, - 0.020442997455, - -0.0932807303561, - -0.0194770106799, - -0.347996124897, - 0.477670425325, - 0.16946862924, - -0.0748463445159, - 0.322416093715, - -0.284379263482, - 0.351485850427, - 0.275133298435, - -0.140335149498, - -0.169502473099, - 0.311420733898, - -0.128365691629, - 0.136057885059, - 0.30987365673, - -0.346320622138, - 0.548246033703, - 0.123814313429, - 0.104017129137, - 0.191079104484, - -0.0353552563969, - 0.0426530147906, - 0.210954411184, - 1.01838182802, - 0.0529356735747, - 0.0926774812629, - -0.0772875526935, - 0.35882301038, - 0.293403886373, - -0.0720667337799, - -0.00692780660425, - 0.238040183172, - -0.145602185067, - 0.222402131589, - -0.0861052040969, - 0.468784196571, - 0.194328064498, - 0.206915793873, - 0.454809703375, - -0.147026187244, - 0.767740107893, - -0.10117492877, - -0.277174461951, - 0.112251966207, - -0.0120533340785, - -0.0536130220773, - 0.43227125503, - 0.107152451438, - 0.307896046522, - -0.146310071493, - 0.000325157879376, - 0.47012038408, - 0.0319059318335, - 0.277531729853, - 0.0427911140052, - -0.09943605934, - 0.240353350745, - 0.608677123763, - 0.30662639209, - -0.0516774755387, - 0.148023607147, - -0.00305931684124, - -0.281886656069, - 0.416923437696, - 0.351414224303, - 0.157847890047, - 0.633655001348, - -0.576766988475, - 0.700845871578, - 0.607653700364, - 0.613820223483, - 0.140397240595, - 0.353986143512, - 0.106071277195, - -0.145734755416, - -0.253978442581, - 0.0598900759314, - 0.0113975038206, - 0.149895474713, - 0.262395211664, - 0.274302533812, - 0.288154637962, - 0.67185610335, - 0.234608335631, - -0.0151663004899, - 0.312552262596, - 0.17876159463, - 0.0962257453695, - -0.329326196935, - 0.13649641201, - 0.665427849573, - 0.0052698732702, - 0.475122251875, - 0.525331287435, - 0.333431708244, - 0.806835876945, - 0.306392192118, - 0.103664924917, - 0.264670569995, - -0.213467286999, - 0.0813232335846, - 0.593136861868, - -0.104070949051, - 1.09199443523, - -0.0344763512544, - 0.255803564244, - -0.147514543571, - 0.0521191738254, - 0.220033299832, - -0.404845036129, - 0.470514068767, - 0.178365513796, - 0.19380914082, - 0.395931460219, - 0.620230366078, - 0.405807045424, - -0.0392115721689, - 1.05240762235, - 0.405693173796, - 0.31052182856, - 0.28855893832, - -0.094656292081, - -0.316524091729, - 0.393149693595, - -0.16291800557, - 0.338801838683, - 0.217382754407, - 0.699023424911, - 0.312602259553, - 0.560632394131, - 0.286521358311, - -0.111145724168, - -0.22813394187, - 0.176233057808, - -0.242846440779, - 0.652060712482, - -0.114370249489, - 0.939048192792, - -0.0209696263152, - 0.0573748304081, - -0.36118957988, - 0.326032345091, - 0.343588601395, - 0.634046915977, - 0.477956339871, - -0.0385333044591, - 0.30414606475, - -0.163480072089, - 0.516260476336, - -0.105165615544, - 0.368385108508, - -0.035510923968, - 0.221057974301, - 0.123572673698, - -0.135268326692, - 0.156390521708, - 0.200566028491, - 0.29668765065, - 0.697213288449, - 0.50763252289, - 0.417678566532, - 0.154135774934, - 0.765651412646, - 0.470086592379, - 0.201480075488, - 0.095829704456, - 0.105647301737, - 0.244920377178, - 0.164238312296, - 0.191790630686, - 0.309371452256, - 0.421287855916, - 0.250917743956, - 0.150279746094, - 0.673074081054, - 0.549516096609, - 0.569636377527, - 0.371048271576, - 0.461909717594, - 0.53125043069, - -0.105357281521, - 0.681434074188, - 0.394351701298, - 0.299223908876, - 0.745051595343, - 0.630956800418, - 0.585232492447, - 0.149138687374, - 0.621784497559, - 0.274413042223, - 0.828569093005, - 0.25416316262, - 0.720756519779, - 0.68862294721, - 0.484764528848, - 0.488036618011, - 0.568028000715, - 0.447568663215, - 0.128845580361, - 0.104462900828, - 0.367685336284, - 0.640935555756, - 0.329886383682, - 0.246419290497, - 0.558799026438, - 0.513709890433, - 0.0175540748514, - 0.677955372319, - 0.970620214195, - 0.293606490298, - 0.28477264013, - 0.727990429773, - 1.24330498259, - 0.556975486167, - 0.151834633108, - -0.236495607262, - 0.523888373975, - 0.689343592198, - -0.15278161931, - 0.434506019428, - 0.967007367935, - 0.614539290319, - 0.484321305497, - 0.734255226728, - 0.261240524208, - 0.624644751686, - 0.421325419145, - 0.259064166957, - 0.285948101394, - 0.541051603702, - 1.51467107166, - 0.37250378877, - 0.257768097775, - 1.29680474452, - 1.17439676563, - 0.431890071028, - 0.416193348898, - 0.897176261041, - 1.0905459488, - 0.451446169578, - 0.607737174816, - 0.684136082041, - 0.542930193702, - 0.752884064698, - 0.877773565538, - 0.213346474652, - 0.0860812418435, - 0.778406766165, - 0.660952390691, - 0.611882732631, - 1.2077187536, - 0.604844553847, - 0.325210420542, - 0.919409808423, - 0.68847808765, - 1.16484189305, - 0.192221624291, - 0.653110302352, - 0.327338008293, - 0.439506798148, - 0.416117515606, - 0.702645651026, - 0.780744650712, - 1.01510261914, - 0.786606203922, - 0.72316198658, - 0.790253083973, - 0.920034046301, - 0.00653503441716, - 0.517117929629, - 0.449911268227, - 0.55458548624, - 0.389849437185, - 0.789803843652, - 0.470524868244, - 1.29197537054, - 0.998117076659, - 1.31434980816, - 1.16152384982, - 0.623465030871, - 0.616471212971, - 1.27977873285, - 0.974853560387, - 0.52109387351, - 0.452172574784, - 1.16161017475, - 0.662777129034, - 0.452170247378, - 0.754114908556, - 0.351541088136, - 1.0034610523, - 0.712894966355, - 0.59276069228, - 0.796308627937, - 0.652179844308, - 0.717331467248, - 0.361306235474, - 0.571443822698, - 1.15711445918, - 0.776957510283, - 0.78592171242, - 1.05670973463, - 0.764834232347, - 1.24995485944, - 0.731208680596, - 0.717079759185, - 1.35453447511, - 1.22934304199, - 0.564132444772, - 1.32916714833, - 0.745208890195, - 0.931565303449, - 1.11928616945, - 0.812814479035, - 0.559295095914, - 1.09514299767, - 0.67927644527, - 1.06808059257, - 1.07625188125, - 1.42655107178, - 1.62265714147, - 1.23340163875, - 0.657900893199, - 0.981142439293, - 0.920947627918, - 1.4623932293, - 1.39932279223, - 1.17994000043, - 1.02220562217, - 1.0810785881, - 1.0552604919, - 1.55850968109, - 1.36308213887, - 0.539534920287, - 1.1476014513, - 1.2518869469, - 0.822217550005, - 1.84157818693, - 1.04860079146, - 1.44595433639, - 1.32287279603, - 1.37644373084, - 1.86614025813, - 1.51105744244, - 0.924727647119, - 1.31187547697, - 1.82489256759, - 1.12485348336, - 1.02033933003, - 1.54675372473, - 1.12481931567, - 1.43781411763, - 1.04222534571, - 1.40233711227, - 1.6594617636, - 1.20906278605, - 1.13166424795, - 1.63158565092, - 1.26317561226, - 0.902273886744, - 1.1000291584, - 1.188264971, - 1.48574191882, - 1.55664508511, - 1.22264268323, - 1.73482768631, - 2.03112501513, - 1.3675266481, - 1.41708825041, - 1.53725716325, - 1.47010715591, - 1.3158979521, - 0.971654366638, - 1.7503393987, - 0.732604359699, - 1.39706114779, - 1.56385367099, - 1.33289292691, - 1.86899530505, - 1.47054586517, - 2.16697680404, - 1.60524359391, - 1.61536910391, - 0.937152751836, - 1.49903653683, - 1.38801880891, - 1.59583551564, - 1.19934669609, - 1.95642443691, - 1.56395479658, - 1.31544681472, - 1.17342438873, - 1.94708832983, - 1.59071763854, - 1.28894592604, - 1.40444163715, - 1.77905230984, - 1.96940347111, - 1.61314188292, - 1.96680306445, - 1.50869608991, - 1.27418286571, - 1.98204944467, - 1.87976006289, - 2.08282433134, - 1.78000664991, - 2.18847631672, - 1.30301866796, - 1.33523041582, - 1.85351349973, - 2.11556941203, - 1.61576520453, - 1.59834728055, - 2.14721293954, - 1.69322083096, - 2.65800422187, - 1.82823333811, - 1.60029581159, - 1.78219847377, - 2.19737174623, - 1.72394249039, - 2.04634360445, - 2.65539624846, - 2.13056382917, - 1.59095944028, - 2.12066527401, - 2.45099625307, - 2.1364347606, - 2.09216188492, - 2.14810208967, - 3.10264795154, - 2.2746357232, - 1.96228387311, - 2.45845239934, - 2.09836639799, - 2.3455880748, - 2.01712372253, - 2.72794096044, - 1.59737661276, - 2.4629965703, - 2.10465016344, - 2.61931675099, - 2.72485237543, - 2.7694002851, - 2.1671587715, - 2.25158116907, - 2.25924070447, - 2.59320111319, - 2.72828372007, - 2.92569257455, - 2.29523623628, - 2.77348828989, - 2.67182419084, - 2.31583598032, - 2.25483740652, - 2.38879681156, - 2.59717833055, - 2.74000381154, - 2.13480765764, - 2.50211221536, - 2.49097295833, - 2.10067795242, - 3.02703202546, - 2.54538916805, - 2.50646957448, - 3.06598293772, - 2.66666273711, - 1.86237808976, - 2.17914066916, - 2.66953945431, - 3.07233020977, - 3.03198520639, - 2.80242633366, - 2.50203273776, - 2.27194515901, - 2.59945909127, - 3.53299302491, - 2.96917973815, - 2.26259668342, - 3.34852670221, - 2.46804114021, - 3.12124600288, - 3.01555731052, - 2.54002563, - 2.57138244702, - 3.09782319591, - 2.67147277103, - 3.23891446072, - 3.0520070323, - 2.9028359987, - 2.92583639894, - 2.81674927307, - 2.83812864136, - 2.60702002745 ], - mode: 'markers', - name: 'points', - marker: { color: 'rgb(102,0,0)', size: 2, opacity: 0.4 }, - type: 'scattergl' } ], - layout: - { showlegend: false, - autosize: false, - width: 600, - height: 550, - xaxis: { zeroline: false, domain: [ 0, 0.85 ], showgrid: false }, - yaxis: { zeroline: false, domain: [ 0, 0.85 ], showgrid: false }, - margin: { t: 50 }, - hovermode: 'closest', - bargap: 0, - xaxis2: { domain: [ 0.85, 1 ], showgrid: false, zeroline: false }, - yaxis2: { domain: [ 0.85, 1 ], showgrid: false, zeroline: false } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_2dhistogram_contour_subplots.png b/devtools/test_dashboard/testplots-2d/gl2d_2dhistogram_contour_subplots.png deleted file mode 100644 index b9dcef51ffc..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_2dhistogram_contour_subplots.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_30.json b/devtools/test_dashboard/testplots-2d/gl2d_30.json deleted file mode 100644 index 90328c65c7c..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_30.json +++ /dev/null @@ -1,301 +0,0 @@ -{ data: - [ { x: - [ 0, - 0.003960976008861991, - 0.03150059203293912, - 0.10526859511270904, - 0.24609022226350277, - 0.4721359549995793, - 0.7981864223520572, - 1.2350188542663474, - 1.7889371755074976, - 2.461462734490049, - 3.2491969623290635, - 4.14386115680882, - 5.132512300041106, - 6.1979275700621805, - 7.3191442169026075, - 8.472135954999576, - 9.630602171766963, - 10.766842238643621, - 11.852684178251655, - 12.860434996919306, - 13.763819204711734, - 14.538872443229218, - 15.164758710752322, - 15.624482359326736, - 15.905469744054013, - 16, - 15.905469744054013, - 15.624482359326741, - 15.164758710752327, - 14.538872443229218, - 13.763819204711739, - 12.86043499691931, - 11.852684178251652, - 10.766842238643612, - 9.63060217176696, - 8.47213595499958, - 7.31914421690261, - 6.1979275700621805, - 5.132512300041111, - 4.143861156808825, - 3.2491969623290653, - 2.4614627344900533, - 1.7889371755074963, - 1.2350188542663494, - 0.7981864223520586, - 0.4721359549995798, - 0.2460902222635041, - 0.10526859511270895, - 0.031500592032939326, - 0.00396097600886203, - 2.9386816277228384e-47, - -0.003960976008861982, - -0.03150059203293916, - -0.10526859511270932, - -0.24609022226350213, - -0.4721359549995788, - -0.7981864223520572, - -1.235018854266344, - -1.7889371755074983, - -2.4614627344900457, - -3.249196962329056, - -4.14386115680882, - -5.132512300041101, - -6.1979275700621805, - -7.319144216902614, - -8.472135954999576, - -9.630602171766972, - -10.766842238643616, - -11.852684178251664, - -12.86043499691931, - -13.763819204711734, - -14.538872443229222, - -15.164758710752327, - -15.624482359326736, - -15.905469744054013, - -16, - -15.905469744054013, - -15.624482359326741, - -15.164758710752327, - -14.538872443229218, - -13.763819204711739, - -12.860434996919315, - -11.852684178251668, - -10.766842238643608, - -9.630602171766963, - -8.472135954999583, - -7.31914421690262, - -6.197927570062197, - -5.132512300041113, - -4.14386115680882, - -3.2491969623290653, - -2.4614627344900546, - -1.7889371755075063, - -1.2350188542663503, - -0.7981864223520564, - -0.4721359549995803, - -0.24609022226350444, - -0.10526859511270918, - -0.03150059203293943, - -0.003960976008861969 ], - y: - [ 5, - 5.080616300409131, - 5.31871565962469, - 5.703227351606254, - 6.216283644631066, - 6.834062241002363, - 7.527902076780752, - 8.26563327357082, - 9.01305111818169, - 9.73545703057813, - 10.399186938124421, - 10.973049417248317, - 11.42960223964364, - 11.746206161585576, - 11.905808285637567, - 11.897423278642144, - 11.716298184929967, - 11.363764486638898, - 10.84679837593238, - 10.177325907410598, - 9.371322893124, - 8.44776935024081, - 7.427524481592261, - 6.332190267304607, - 5.183029728496285, - 4.000000000000001, - 2.800950962391234, - 1.6010279838939834, - 0.4123031224474323, - -0.7563561397601696, - -1.8991869381244164, - -3.013220672255105, - -4.097795849274035, - -5.153937953718788, - -6.183657289781863, - -7.189219346142772, - -8.172442168003817, - -9.134071563663488, - -10.073278032307813, - -10.98730959132906, - -11.871322893123999, - -12.718401966731474, - -13.51976048484151, - -14.265110541886262, - -14.943169390053491, - -15.542266173501735, - -16.05100403502769, - -16.458929465331593, - -16.75716063099873, - -16.93892963581117, - -17, - -16.938929635811174, - -16.75716063099873, - -16.458929465331586, - -16.0510040350277, - -15.542266173501735, - -14.943169390053496, - -14.265110541886274, - -13.519760484841509, - -12.718401966731482, - -11.87132289312401, - -10.987309591329064, - -10.073278032307826, - -9.134071563663484, - -8.172442168003817, - -7.1892193461427745, - -6.183657289781854, - -5.153937953718787, - -4.097795849274024, - -3.0132206722551045, - -1.8991869381244244, - -0.7563561397601599, - 0.41230312244743295, - 1.6010279838939754, - 2.800950962391238, - 3.9999999999999964, - 5.183029728496271, - 6.3321902673046, - 7.4275244815922505, - 8.447769350240813, - 9.371322893123997, - 10.17732590741059, - 10.846798375932371, - 11.363764486638901, - 11.716298184929965, - 11.897423278642144, - 11.905808285637569, - 11.746206161585583, - 11.429602239643645, - 10.973049417248319, - 10.399186938124426, - 9.735457030578136, - 9.0130511181817, - 8.265633273570824, - 7.5279020767807525, - 6.834062241002364, - 6.2162836446310745, - 5.703227351606257, - 5.318715659624693, - 5.080616300409131 ], - name: 'trace 0', - line: { color: 'red', width: 6 }, - type: 'scattergl' } ], - layout: - { title: 'Click to enter Plot title', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#444' }, - autosize: true, - width: 1366, - height: 713, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -16, 16 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -18.605878238090977, 13.511686523728546 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 5, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0 }, - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_30.png b/devtools/test_dashboard/testplots-2d/gl2d_30.png deleted file mode 100644 index f85014e6cac..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_30.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_32.json b/devtools/test_dashboard/testplots-2d/gl2d_32.json deleted file mode 100644 index 7067491e708..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_32.json +++ /dev/null @@ -1,1124 +0,0 @@ -{ data: - [ { x: - [ '2014-04-07 00:23:00.361471', - '2014-04-07 01:23:00.361471', - '2014-04-07 02:23:00.361471', - '2014-04-07 03:23:00.361471', - '2014-04-07 04:23:00.361471', - '2014-04-07 05:23:00.361471', - '2014-04-07 06:23:00.361471', - '2014-04-07 07:23:00.361471', - '2014-04-07 08:23:00.361471', - '2014-04-07 09:23:00.361471', - '2014-04-07 10:23:00.361471', - '2014-04-07 11:23:00.361471', - '2014-04-07 12:23:00.361471', - '2014-04-07 13:23:00.361471', - '2014-04-07 14:23:00.361471', - '2014-04-07 15:23:00.361471', - '2014-04-07 16:23:00.361471', - '2014-04-07 17:23:00.361471', - '2014-04-07 18:23:00.361471', - '2014-04-07 19:23:00.361471', - '2014-04-07 20:23:00.361471', - '2014-04-07 21:23:00.361471', - '2014-04-07 22:23:00.361471', - '2014-04-07 23:23:00.361471', - '2014-04-08 00:23:00.361471', - '2014-04-08 01:23:00.361471', - '2014-04-08 02:23:00.361471', - '2014-04-08 03:23:00.361471', - '2014-04-08 04:23:00.361471', - '2014-04-08 05:23:00.361471', - '2014-04-08 06:23:00.361471', - '2014-04-08 07:23:00.361471', - '2014-04-08 08:23:00.361471', - '2014-04-08 09:23:00.361471', - '2014-04-08 10:23:00.361471', - '2014-04-08 11:23:00.361471', - '2014-04-08 12:23:00.361471', - '2014-04-08 13:23:00.361471', - '2014-04-08 14:23:00.361471', - '2014-04-08 15:23:00.361471', - '2014-04-08 16:23:00.361471', - '2014-04-08 17:23:00.361471', - '2014-04-08 18:23:00.361471', - '2014-04-08 19:23:00.361471', - '2014-04-08 20:23:00.361471', - '2014-04-08 21:23:00.361471', - '2014-04-08 22:23:00.361471', - '2014-04-08 23:23:00.361471', - '2014-04-09 00:23:00.361471', - '2014-04-09 01:23:00.361471', - '2014-04-09 02:23:00.361471', - '2014-04-09 03:23:00.361471', - '2014-04-09 04:23:00.361471', - '2014-04-09 05:23:00.361471', - '2014-04-09 06:23:00.361471', - '2014-04-09 07:23:00.361471', - '2014-04-09 08:23:00.361471', - '2014-04-09 09:23:00.361471', - '2014-04-09 10:23:00.361471', - '2014-04-09 11:23:00.361471', - '2014-04-09 12:23:00.361471', - '2014-04-09 13:23:00.361471', - '2014-04-09 14:23:00.361471', - '2014-04-09 15:23:00.361471', - '2014-04-09 16:23:00.361471', - '2014-04-09 17:23:00.361471', - '2014-04-09 18:23:00.361471', - '2014-04-09 19:23:00.361471', - '2014-04-09 20:23:00.361471', - '2014-04-09 21:23:00.361471', - '2014-04-09 22:23:00.361471', - '2014-04-09 23:23:00.361471', - '2014-04-10 00:23:00.361471', - '2014-04-10 01:23:00.361471', - '2014-04-10 02:23:00.361471', - '2014-04-10 03:23:00.361471', - '2014-04-10 04:23:00.361471', - '2014-04-10 05:23:00.361471', - '2014-04-10 06:23:00.361471', - '2014-04-10 07:23:00.361471', - '2014-04-10 08:23:00.361471', - '2014-04-10 09:23:00.361471', - '2014-04-10 10:23:00.361471', - '2014-04-10 11:23:00.361471', - '2014-04-10 12:23:00.361471', - '2014-04-10 13:23:00.361471', - '2014-04-10 14:23:00.361471', - '2014-04-10 15:23:00.361471', - '2014-04-10 16:23:00.361471', - '2014-04-10 17:23:00.361471', - '2014-04-10 18:23:00.361471', - '2014-04-10 19:23:00.361471', - '2014-04-10 20:23:00.361471', - '2014-04-10 21:23:00.361471', - '2014-04-10 22:23:00.361471', - '2014-04-10 23:23:00.361471', - '2014-04-11 00:23:00.361471', - '2014-04-11 01:23:00.361471', - '2014-04-11 02:23:00.361471', - '2014-04-11 03:23:00.361471', - '2014-04-11 04:23:00.361471', - '2014-04-11 05:23:00.361471', - '2014-04-11 06:23:00.361471', - '2014-04-11 07:23:00.361471', - '2014-04-11 08:23:00.361471', - '2014-04-11 09:23:00.361471', - '2014-04-11 10:23:00.361471', - '2014-04-11 11:23:00.361471', - '2014-04-11 12:23:00.361471', - '2014-04-11 13:23:00.361471', - '2014-04-11 14:23:00.361471', - '2014-04-11 15:23:00.361471', - '2014-04-11 16:23:00.361471', - '2014-04-11 17:23:00.361471', - '2014-04-11 18:23:00.361471', - '2014-04-11 19:23:00.361471', - '2014-04-11 20:23:00.361471', - '2014-04-11 21:23:00.361471', - '2014-04-11 22:23:00.361471', - '2014-04-11 23:23:00.361471', - '2014-04-12 00:23:00.361471', - '2014-04-12 01:23:00.361471', - '2014-04-12 02:23:00.361471', - '2014-04-12 03:23:00.361471', - '2014-04-12 04:23:00.361471', - '2014-04-12 05:23:00.361471', - '2014-04-12 06:23:00.361471', - '2014-04-12 07:23:00.361471', - '2014-04-12 08:23:00.361471', - '2014-04-12 09:23:00.361471', - '2014-04-12 10:23:00.361471', - '2014-04-12 11:23:00.361471', - '2014-04-12 12:23:00.361471', - '2014-04-12 13:23:00.361471', - '2014-04-12 14:23:00.361471', - '2014-04-12 15:23:00.361471', - '2014-04-12 16:23:00.361471', - '2014-04-12 17:23:00.361471', - '2014-04-12 18:23:00.361471', - '2014-04-12 19:23:00.361471', - '2014-04-12 20:23:00.361471', - '2014-04-12 21:23:00.361471', - '2014-04-12 22:23:00.361471', - '2014-04-12 23:23:00.361471', - '2014-04-13 00:23:00.361471', - '2014-04-13 01:23:00.361471', - '2014-04-13 02:23:00.361471', - '2014-04-13 03:23:00.361471', - '2014-04-13 04:23:00.361471', - '2014-04-13 05:23:00.361471', - '2014-04-13 06:23:00.361471', - '2014-04-13 07:23:00.361471', - '2014-04-13 08:23:00.361471', - '2014-04-13 09:23:00.361471', - '2014-04-13 10:23:00.361471', - '2014-04-13 11:23:00.361471', - '2014-04-13 12:23:00.361471', - '2014-04-13 13:23:00.361471', - '2014-04-13 14:23:00.361471', - '2014-04-13 15:23:00.361471', - '2014-04-13 16:23:00.361471', - '2014-04-13 17:23:00.361471', - '2014-04-13 18:23:00.361471', - '2014-04-13 19:23:00.361471', - '2014-04-13 20:23:00.361471', - '2014-04-13 21:23:00.361471', - '2014-04-13 22:23:00.361471', - '2014-04-13 23:23:00.361471', - '2014-04-14 00:23:00.361471', - '2014-04-14 01:23:00.361471', - '2014-04-14 02:23:00.361471', - '2014-04-14 03:23:00.361471', - '2014-04-14 04:23:00.361471', - '2014-04-14 05:23:00.361471', - '2014-04-14 06:23:00.361471', - '2014-04-14 07:23:00.361471', - '2014-04-14 08:23:00.361471', - '2014-04-14 09:23:00.361471', - '2014-04-14 10:23:00.361471', - '2014-04-14 11:23:00.361471', - '2014-04-14 12:23:00.361471', - '2014-04-14 13:23:00.361471', - '2014-04-14 14:23:00.361471', - '2014-04-14 15:23:00.361471', - '2014-04-14 16:23:00.361471', - '2014-04-14 17:23:00.361471', - '2014-04-14 18:23:00.361471', - '2014-04-14 19:23:00.361471', - '2014-04-14 20:23:00.361471', - '2014-04-14 21:23:00.361471', - '2014-04-14 22:23:00.361471', - '2014-04-14 23:23:00.361471', - '2014-04-15 00:23:00.361471', - '2014-04-15 01:23:00.361471', - '2014-04-15 02:23:00.361471', - '2014-04-15 03:23:00.361471', - '2014-04-15 04:23:00.361471', - '2014-04-15 05:23:00.361471', - '2014-04-15 06:23:00.361471', - '2014-04-15 07:23:00.361471', - '2014-04-15 08:23:00.361471', - '2014-04-15 09:23:00.361471', - '2014-04-15 10:23:00.361471', - '2014-04-15 11:23:00.361471', - '2014-04-15 12:23:00.361471', - '2014-04-15 13:23:00.361471', - '2014-04-15 14:23:00.361471', - '2014-04-15 15:23:00.361471', - '2014-04-15 16:23:00.361471', - '2014-04-15 17:23:00.361471', - '2014-04-15 18:23:00.361471', - '2014-04-15 19:23:00.361471', - '2014-04-15 20:23:00.361471', - '2014-04-15 21:23:00.361471', - '2014-04-15 22:23:00.361471', - '2014-04-15 23:23:00.361471', - '2014-04-16 00:23:00.361471', - '2014-04-16 01:23:00.361471', - '2014-04-16 02:23:00.361471', - '2014-04-16 03:23:00.361471', - '2014-04-16 04:23:00.361471', - '2014-04-16 05:23:00.361471', - '2014-04-16 06:23:00.361471', - '2014-04-16 07:23:00.361471', - '2014-04-16 08:23:00.361471', - '2014-04-16 09:23:00.361471', - '2014-04-16 10:23:00.361471', - '2014-04-16 11:23:00.361471', - '2014-04-16 12:23:00.361471', - '2014-04-16 13:23:00.361471', - '2014-04-16 14:23:00.361471', - '2014-04-16 15:23:00.361471', - '2014-04-16 16:23:00.361471', - '2014-04-16 17:23:00.361471', - '2014-04-16 18:23:00.361471', - '2014-04-16 19:23:00.361471', - '2014-04-16 20:23:00.361471', - '2014-04-16 21:23:00.361471', - '2014-04-16 22:23:00.361471', - '2014-04-16 23:23:00.361471', - '2014-04-17 00:23:00.361471', - '2014-04-17 01:23:00.361471', - '2014-04-17 02:23:00.361471', - '2014-04-17 03:23:00.361471', - '2014-04-17 04:23:00.361471', - '2014-04-17 05:23:00.361471', - '2014-04-17 06:23:00.361471', - '2014-04-17 07:23:00.361471', - '2014-04-17 08:23:00.361471', - '2014-04-17 09:23:00.361471', - '2014-04-17 10:23:00.361471', - '2014-04-17 11:23:00.361471', - '2014-04-17 12:23:00.361471', - '2014-04-17 13:23:00.361471', - '2014-04-17 14:23:00.361471', - '2014-04-17 15:23:00.361471', - '2014-04-17 16:23:00.361471', - '2014-04-17 17:23:00.361471', - '2014-04-17 18:23:00.361471', - '2014-04-17 19:23:00.361471', - '2014-04-17 20:23:00.361471', - '2014-04-17 21:23:00.361471', - '2014-04-17 22:23:00.361471', - '2014-04-17 23:23:00.361471', - '2014-04-18 00:23:00.361471', - '2014-04-18 01:23:00.361471', - '2014-04-18 02:23:00.361471', - '2014-04-18 03:23:00.361471', - '2014-04-18 04:23:00.361471', - '2014-04-18 05:23:00.361471', - '2014-04-18 06:23:00.361471', - '2014-04-18 07:23:00.361471', - '2014-04-18 08:23:00.361471', - '2014-04-18 09:23:00.361471', - '2014-04-18 10:23:00.361471', - '2014-04-18 11:23:00.361471', - '2014-04-18 12:23:00.361471', - '2014-04-18 13:23:00.361471', - '2014-04-18 14:23:00.361471', - '2014-04-18 15:23:00.361471', - '2014-04-18 16:23:00.361471', - '2014-04-18 17:23:00.361471', - '2014-04-18 18:23:00.361471', - '2014-04-18 19:23:00.361471', - '2014-04-18 20:23:00.361471', - '2014-04-18 21:23:00.361471', - '2014-04-18 22:23:00.361471', - '2014-04-18 23:23:00.361471', - '2014-04-19 00:23:00.361471', - '2014-04-19 01:23:00.361471', - '2014-04-19 02:23:00.361471', - '2014-04-19 03:23:00.361471', - '2014-04-19 04:23:00.361471', - '2014-04-19 05:23:00.361471', - '2014-04-19 06:23:00.361471', - '2014-04-19 07:23:00.361471', - '2014-04-19 08:23:00.361471', - '2014-04-19 09:23:00.361471', - '2014-04-19 10:23:00.361471', - '2014-04-19 11:23:00.361471', - '2014-04-19 12:23:00.361471', - '2014-04-19 13:23:00.361471', - '2014-04-19 14:23:00.361471', - '2014-04-19 15:23:00.361471', - '2014-04-19 16:23:00.361471', - '2014-04-19 17:23:00.361471', - '2014-04-19 18:23:00.361471', - '2014-04-19 19:23:00.361471', - '2014-04-19 20:23:00.361471', - '2014-04-19 21:23:00.361471', - '2014-04-19 22:23:00.361471', - '2014-04-19 23:23:00.361471', - '2014-04-20 00:23:00.361471', - '2014-04-20 01:23:00.361471', - '2014-04-20 02:23:00.361471', - '2014-04-20 03:23:00.361471', - '2014-04-20 04:23:00.361471', - '2014-04-20 05:23:00.361471', - '2014-04-20 06:23:00.361471', - '2014-04-20 07:23:00.361471', - '2014-04-20 08:23:00.361471', - '2014-04-20 09:23:00.361471', - '2014-04-20 10:23:00.361471', - '2014-04-20 11:23:00.361471', - '2014-04-20 12:23:00.361471', - '2014-04-20 13:23:00.361471', - '2014-04-20 14:23:00.361471', - '2014-04-20 15:23:00.361471', - '2014-04-20 16:23:00.361471', - '2014-04-20 17:23:00.361471', - '2014-04-20 18:23:00.361471', - '2014-04-20 19:23:00.361471', - '2014-04-20 20:23:00.361471', - '2014-04-20 21:23:00.361471', - '2014-04-20 22:23:00.361471', - '2014-04-20 23:23:00.361471', - '2014-04-21 00:23:00.361471', - '2014-04-21 01:23:00.361471', - '2014-04-21 02:23:00.361471', - '2014-04-21 03:23:00.361471', - '2014-04-21 04:23:00.361471', - '2014-04-21 05:23:00.361471', - '2014-04-21 06:23:00.361471', - '2014-04-21 07:23:00.361471', - '2014-04-21 08:23:00.361471', - '2014-04-21 09:23:00.361471', - '2014-04-21 10:23:00.361471', - '2014-04-21 11:23:00.361471', - '2014-04-21 12:23:00.361471', - '2014-04-21 13:23:00.361471', - '2014-04-21 14:23:00.361471', - '2014-04-21 15:23:00.361471', - '2014-04-21 16:23:00.361471', - '2014-04-21 17:23:00.361471', - '2014-04-21 18:23:00.361471', - '2014-04-21 19:23:00.361471', - '2014-04-21 20:23:00.361471', - '2014-04-21 21:23:00.361471', - '2014-04-21 22:23:00.361471', - '2014-04-21 23:23:00.361471', - '2014-04-22 00:23:00.361471', - '2014-04-22 01:23:00.361471', - '2014-04-22 02:23:00.361471', - '2014-04-22 03:23:00.361471', - '2014-04-22 04:23:00.361471', - '2014-04-22 05:23:00.361471', - '2014-04-22 06:23:00.361471', - '2014-04-22 07:23:00.361471', - '2014-04-22 08:23:00.361471', - '2014-04-22 09:23:00.361471', - '2014-04-22 10:23:00.361471', - '2014-04-22 11:23:00.361471', - '2014-04-22 12:23:00.361471', - '2014-04-22 13:23:00.361471', - '2014-04-22 14:23:00.361471', - '2014-04-22 15:23:00.361471', - '2014-04-22 16:23:00.361471', - '2014-04-22 17:23:00.361471', - '2014-04-22 18:23:00.361471', - '2014-04-22 19:23:00.361471', - '2014-04-22 20:23:00.361471', - '2014-04-22 21:23:00.361471', - '2014-04-22 22:23:00.361471', - '2014-04-22 23:23:00.361471', - '2014-04-23 00:23:00.361471', - '2014-04-23 01:23:00.361471', - '2014-04-23 02:23:00.361471', - '2014-04-23 03:23:00.361471', - '2014-04-23 04:23:00.361471', - '2014-04-23 05:23:00.361471', - '2014-04-23 06:23:00.361471', - '2014-04-23 07:23:00.361471', - '2014-04-23 08:23:00.361471', - '2014-04-23 09:23:00.361471', - '2014-04-23 10:23:00.361471', - '2014-04-23 11:23:00.361471', - '2014-04-23 12:23:00.361471', - '2014-04-23 13:23:00.361471', - '2014-04-23 14:23:00.361471', - '2014-04-23 15:23:00.361471', - '2014-04-23 16:23:00.361471', - '2014-04-23 17:23:00.361471', - '2014-04-23 18:23:00.361471', - '2014-04-23 19:23:00.361471', - '2014-04-23 20:23:00.361471', - '2014-04-23 21:23:00.361471', - '2014-04-23 22:23:00.361471', - '2014-04-23 23:23:00.361471', - '2014-04-24 00:23:00.361471', - '2014-04-24 01:23:00.361471', - '2014-04-24 02:23:00.361471', - '2014-04-24 03:23:00.361471', - '2014-04-24 04:23:00.361471', - '2014-04-24 05:23:00.361471', - '2014-04-24 06:23:00.361471', - '2014-04-24 07:23:00.361471', - '2014-04-24 08:23:00.361471', - '2014-04-24 09:23:00.361471', - '2014-04-24 10:23:00.361471', - '2014-04-24 11:23:00.361471', - '2014-04-24 12:23:00.361471', - '2014-04-24 13:23:00.361471', - '2014-04-24 14:23:00.361471', - '2014-04-24 15:23:00.361471', - '2014-04-24 16:23:00.361471', - '2014-04-24 17:23:00.361471', - '2014-04-24 18:23:00.361471', - '2014-04-24 19:23:00.361471', - '2014-04-24 20:23:00.361471', - '2014-04-24 21:23:00.361471', - '2014-04-24 22:23:00.361471', - '2014-04-24 23:23:00.361471', - '2014-04-25 00:23:00.361471', - '2014-04-25 01:23:00.361471', - '2014-04-25 02:23:00.361471', - '2014-04-25 03:23:00.361471', - '2014-04-25 04:23:00.361471', - '2014-04-25 05:23:00.361471', - '2014-04-25 06:23:00.361471', - '2014-04-25 07:23:00.361471', - '2014-04-25 08:23:00.361471', - '2014-04-25 09:23:00.361471', - '2014-04-25 10:23:00.361471', - '2014-04-25 11:23:00.361471', - '2014-04-25 12:23:00.361471', - '2014-04-25 13:23:00.361471', - '2014-04-25 14:23:00.361471', - '2014-04-25 15:23:00.361471', - '2014-04-25 16:23:00.361471', - '2014-04-25 17:23:00.361471', - '2014-04-25 18:23:00.361471', - '2014-04-25 19:23:00.361471', - '2014-04-25 20:23:00.361471', - '2014-04-25 21:23:00.361471', - '2014-04-25 22:23:00.361471', - '2014-04-25 23:23:00.361471', - '2014-04-26 00:23:00.361471', - '2014-04-26 01:23:00.361471', - '2014-04-26 02:23:00.361471', - '2014-04-26 03:23:00.361471', - '2014-04-26 04:23:00.361471', - '2014-04-26 05:23:00.361471', - '2014-04-26 06:23:00.361471', - '2014-04-26 07:23:00.361471', - '2014-04-26 08:23:00.361471', - '2014-04-26 09:23:00.361471', - '2014-04-26 10:23:00.361471', - '2014-04-26 11:23:00.361471', - '2014-04-26 12:23:00.361471', - '2014-04-26 13:23:00.361471', - '2014-04-26 14:23:00.361471', - '2014-04-26 15:23:00.361471', - '2014-04-26 16:23:00.361471', - '2014-04-26 17:23:00.361471', - '2014-04-26 18:23:00.361471', - '2014-04-26 19:23:00.361471', - '2014-04-26 20:23:00.361471', - '2014-04-26 21:23:00.361471', - '2014-04-26 22:23:00.361471', - '2014-04-26 23:23:00.361471', - '2014-04-27 00:23:00.361471', - '2014-04-27 01:23:00.361471', - '2014-04-27 02:23:00.361471', - '2014-04-27 03:23:00.361471', - '2014-04-27 04:23:00.361471', - '2014-04-27 05:23:00.361471', - '2014-04-27 06:23:00.361471', - '2014-04-27 07:23:00.361471', - '2014-04-27 08:23:00.361471', - '2014-04-27 09:23:00.361471', - '2014-04-27 10:23:00.361471', - '2014-04-27 11:23:00.361471', - '2014-04-27 12:23:00.361471', - '2014-04-27 13:23:00.361471', - '2014-04-27 14:23:00.361471', - '2014-04-27 15:23:00.361471', - '2014-04-27 16:23:00.361471', - '2014-04-27 17:23:00.361471', - '2014-04-27 18:23:00.361471', - '2014-04-27 19:23:00.361471' ], - y: - [ 0.19765470068858682, - 0.20521331647372043, - 0.16755063139716098, - 0.33922566654565267, - 0.34970148839371, - 0.1555145565054959, - 0.2194166034778496, - 0.4295653784060315, - 0.512247622146756, - 0.576227442344601, - 0.5054920497654491, - 0.33281985518095775, - 0.6303979986024282, - 0.6368371903293952, - 0.5769484338035371, - 0.49788894837604897, - 0.7715926214080304, - 0.7023686769747766, - 0.8126081484506353, - 0.5359334958577814, - 0.6448244343523106, - 0.823984256646129, - 0.845399779866264, - 0.6507313136649306, - 0.7319806470017823, - 0.6506855310644194, - 0.9021873628436208, - 0.8206558625545528, - 0.9287776975455394, - 0.8053876292512482, - 0.9453842621551022, - 0.8483226958573711, - 1.038823695751795, - 0.9676387446183442, - 0.7760322498021628, - 1.066958724864698, - 0.8243867840364228, - 1.05032769254689, - 1.0634505295237573, - 0.828391939467096, - 1.1317596589053647, - 1.142189632897578, - 1.1022055678206693, - 1.1193858599591051, - 0.9565247223287424, - 0.9730944748882759, - 0.8356953331015646, - 0.9794687556227845, - 1.0629887941343463, - 0.8240294645593155, - 1.0060815063648183, - 0.9675490639904663, - 1.0227939994186659, - 1.0367259025331732, - 0.8496536757357459, - 0.8678781503129664, - 0.8320612429766577, - 0.8515676180343128, - 0.9275678115524566, - 1.0629963728079137, - 1.0569480701572997, - 0.8400454629014165, - 0.7763029538513967, - 0.9417583356472458, - 0.7677036155468753, - 0.718700313231347, - 0.9116630425455607, - 0.7500037834872255, - 0.9000336075317015, - 0.853656627207099, - 0.7126052330370088, - 0.6593050682113163, - 0.8125284412622841, - 0.6590814542881617, - 0.82753347323429, - 0.7939919695085054, - 0.7353019640208421, - 0.6073827791924317, - 0.781061226207377, - 0.572404942694392, - 0.5492635953483325, - 0.6639758734583403, - 0.5389790711449571, - 0.4392927934885033, - 0.5552084533934009, - 0.49929653233177457, - 0.5492032306434419, - 0.44131060978537356, - 0.4177672327799625, - 0.33190713716842346, - 0.5394318784380159, - 0.24366562549865498, - 0.2971797499092804, - 0.2392005314953442, - 0.1422895535333546, - 0.15059515171776372, - 0.34239880549917373, - 0.1517789398514327, - 0.21695270409910472, - 0.12087676155073471, - 0.20809270471804636, - 0.2551923513588294, - 0.0847928672604771, - 0.08853920352565883, - -0.05163534435005168, - 0.08735749676665222, - -0.020157836605359275, - -0.10913404412308525, - -0.10696960424538784, - 0.08327048779860943, - -0.1313338123292334, - 0.04628350626071781, - -0.04879200274032788, - -0.0359898566865641, - -0.11884746881102526, - -0.04265794820805635, - -0.20471154232191519, - -0.2774293314863318, - -0.003187605265057847, - -0.12046528551137412, - -0.2678464999774644, - -0.15440011634128273, - -0.36099807167200504, - -0.294063824247998, - -0.16900794801643748, - -0.17384256111360458, - -0.3644288051650968, - -0.19271208620262809, - -0.18467570426048097, - -0.23927777888230603, - -0.17978386425930531, - -0.437253981926649, - -0.4260580431820467, - -0.40440261357756474, - -0.2514236431771909, - -0.397237100329037, - -0.19690379589251433, - -0.4344113294748106, - -0.4832709449975265, - -0.3120995170754286, - -0.287183737218622, - -0.40089405399288913, - -0.34038917864411344, - -0.26767076822674485, - -0.2881141227541607, - -0.43029697159856134, - -0.4555982011934097, - -0.383984683053189, - -0.3449243661460978, - -0.2655126950699553, - -0.26814640538112633, - -0.526235690698094, - -0.27292428585004985, - -0.5193282944406485, - -0.20462333965101093, - -0.4316405922421438, - -0.4767779226343584, - -0.37662653861699424, - -0.47739472276581285, - -0.48358499829966556, - -0.35555680488893615, - -0.3295654809376622, - -0.18014967413078187, - -0.20285683290846396, - -0.34729744678389507, - -0.18600845284066903, - -0.25678692057318064, - -0.1427339298733344, - -0.3849884465594967, - -0.3261150377012011, - -0.2747984390067606, - -0.2357199021702649, - -0.23904077232737508, - -0.20120728204943442, - -0.18444384342477557, - -0.21503086036604752, - -0.15143223441666062, - -0.32493839686298387, - -0.07313129523696832, - -0.0737864078289103, - -0.18946379504336963, - 0.011322367158938307, - -0.015662903941943918, - -0.04286642972628005, - 0.02607626918033268, - -0.16032555776099733, - -0.09706908117409947, - -0.10786409160109182, - 0.07118706739745206, - 0.041445986477439245, - -0.000896263092693611, - 0.02116290631426554, - 0.17901436786307373, - 0.007777736687825693, - 0.03644709450503528, - 0.2200652792156807, - 0.193055026838177, - 0.007538548846269109, - 0.20632331694298178, - 0.0655419694566952, - 0.13746970608233003, - 0.31691473739326714, - 0.05490557153641939, - 0.34070711036081747, - 0.2620053957099667, - 0.13253261205796218, - 0.29838948202982674, - 0.15858618367589056, - 0.38515362591681823, - 0.35453979097714083, - 0.24642269834301522, - 0.31555658600572695, - 0.28322334930037907, - 0.3458190600719905, - 0.24770231698136752, - 0.3509756732432827, - 0.22150332818718257, - 0.4012778220752289, - 0.5092730176702855, - 0.49633016616556547, - 0.4511412091440035, - 0.41734571109047425, - 0.5343016529876503, - 0.550586185400687, - 0.43045413308928027, - 0.47938953946111884, - 0.3179646553699141, - 0.6211272265408118, - 0.5909460260629996, - 0.4226448480286274, - 0.41633712928423927, - 0.5171527002602441, - 0.3463849595528193, - 0.6616831299919462, - 0.3545658588859932, - 0.6099866414080936, - 0.48010389414831867, - 0.5371097751220948, - 0.6326722480836873, - 0.6439164180970759, - 0.4427292197490715, - 0.673031296607135, - 0.45257901132526657, - 0.6405597113780699, - 0.3738617358258385, - 0.4284648668412742, - 0.6383507210388615, - 0.41716187834624885, - 0.6214251193993228, - 0.5870530350524654, - 0.5092746665841432, - 0.6209086791299265, - 0.5905862210069059, - 0.4952511422940002, - 0.591306490932872, - 0.6030702848056178, - 0.6410697966874396, - 0.6713800155156342, - 0.6218983573417067, - 0.5222547086641662, - 0.5042018017894997, - 0.6581126509470454, - 0.35816874389810105, - 0.6089696271534136, - 0.5786217473350402, - 0.3535218298639705, - 0.4112266911970268, - 0.32590674586129187, - 0.605260592021148, - 0.405506337580911, - 0.4080832951602644, - 0.37234909242250347, - 0.3165226765268205, - 0.510695682130649, - 0.3127691168756638, - 0.3764140876838836, - 0.2384047497631894, - 0.2988967065312465, - 0.45525748010948497, - 0.4066362024976332, - 0.2877248726924939, - 0.23297108951390105, - 0.24348542635897719, - 0.4647466091217012, - 0.3021008812341327, - 0.23286045418698775, - 0.4640209583932114, - 0.3699032461247783, - 0.41735952796126047, - 0.3662270452373184, - 0.2982190822262639, - 0.15854252859085233, - 0.3106730085098452, - 0.12674046346038434, - 0.10062754399505451, - 0.22807701918184908, - 0.08306877920060601, - 0.29340387606315654, - 0.18483193480559906, - 0.05354872211471626, - 0.20828239045527727, - 0.09444130711598137, - 0.18290648849679794, - 0.10758208973176134, - 0.009196063742631447, - -0.009638111055282603, - 0.23207298361863657, - 0.07758769455842694, - 0.0648296703334997, - 0.07437862701238934, - -0.019391892203131755, - 0.19707273950789939, - 0.14122239998679614, - 0.0782989629551765, - -0.0555202836042981, - 0.17716233864269343, - 0.01916049058428093, - 0.0796724120798728, - 0.18137858844494972, - 0.10718607468195154, - 0.15334874056795736, - -0.08714485490491271, - 0.13769713717777382, - 0.1259064713439013, - -0.07433265413797552, - -0.013320015498367532, - 0.039110789220852954, - -0.13501115398090163, - -0.04464549416372646, - 0.0369222010313047, - -0.11511819615725465, - 0.10147609183905715, - 0.003935080349546288, - -0.08379319690989509, - -0.1083603994214701, - 0.000785096540412783, - -0.20323650770046925, - -0.03308165114802181, - 0.06395874067990776, - -0.11918343089891902, - -0.12645241802859078, - -0.11164341538848649, - 0.07802135215564432, - -0.16220214916148618, - 0.04757766577556577, - -0.058286391861309655, - -0.1953809263028491, - -0.013084153947983457, - 0.07437483850028123, - -0.13112474677514618, - -0.17756320989827756, - 0.008314429564085846, - 0.03057255537527459, - 0.026507944768350777, - 0.06966156667868759, - -0.20784206829651677, - -0.05266103232887537, - -0.008270566229588522, - -0.16264950357368618, - -0.11845069592934603, - -0.2091433227223665, - -0.0864342238752138, - 0.08352498181450138, - -0.07369060896456503, - -0.20122752894130247, - -0.10697167700051395, - 0.05265202370684466, - -0.1552037433493705, - 0.01402328013079629, - -0.1165026728545674, - 0.029286197900231264, - -0.08845257804534576, - -0.1333332232260796, - 0.0334597508602979, - 0.054225225581673364, - -0.0747503507813561, - -0.12687089352790498, - 0.17247766225959985, - 0.012608133525602139, - 0.1052134986361245, - 0.18825013643687505, - -0.02039510928529903, - -0.011552996207187777, - -0.07487982718182137, - -0.05783621930692962, - 0.134135887545773, - 0.13171960697328983, - 0.10845388147158654, - 0.003782625057040051, - 0.10285792157456236, - 0.09533699562757493, - 0.05186689207100474, - 0.1524506869367554, - -0.005379639595492286, - 0.07781427604396238, - 0.2072227682910497, - 0.15671557485356455, - 0.10560860194405271, - 0.3062149467759454, - 0.1952944697058698, - 0.17692384492400862, - 0.26235756550654654, - 0.34271058401666893, - 0.25593350370071266, - 0.2734125293118493, - 0.2607405877660304, - 0.33980199976968734, - 0.11109766934343071, - 0.30343968736045457, - 0.16813653962021263, - 0.33531774627272015, - 0.10714195986278627, - 0.16694901730204412, - 0.3235810972648848, - 0.35812200131277894, - 0.4171618141467545, - 0.35968008124870054, - 0.1351249610993187, - 0.4179281118689222, - 0.3489195371232143, - 0.3121297199161446, - 0.15624687602029003, - 0.16154715368980077, - 0.15453573419287792, - 0.26141039428731994, - 0.19492564375641586, - 0.3679907819239834, - 0.35885552144894567, - 0.3399496733311481, - 0.15900881489424307, - 0.3429370040982559, - 0.1913195841637587, - 0.3809163398756114, - 0.16679935944478053, - 0.4599748357357145, - 0.4280672133730278, - 0.3781867616998943, - 0.2386637585984039, - 0.4722417239765633, - 0.16998559009598183, - 0.2635563945137509, - 0.3282036541980837, - 0.4937616842307869, - 0.23968030455692663, - 0.3468994230768282, - 0.26642102209090596, - 0.37736041225354977, - 0.4180250865683808, - 0.4639266437846405, - 0.35042429058701874, - 0.35290850689524284, - 0.3402966170920335, - 0.4688971885646238, - 0.402422919569149, - 0.3700317740420995, - 0.37358905797951514, - 0.2201850869328622, - 0.38162058388918796, - 0.2243764710930679, - 0.4605977556979652, - 0.2606809256993072, - 0.41106002712017065, - 0.2606347326589714, - 0.332715455010289, - 0.1933229152841127, - 0.2414038280378541, - 0.2178761925475518, - 0.27600270801249616, - 0.4163362319777352, - 0.17190211606407715, - 0.43504318432484246, - 0.43631904600218413, - 0.42010956944721956, - 0.23882665546227805, - 0.4026272858540526, - 0.2936755637150322, - 0.1808080365002213, - 0.14440074435722025, - 0.321250523954253, - 0.29036357894875464, - 0.23946521904420498, - 0.14378308284128677, - 0.40424498140520165, - 0.10911267736214142, - 0.362722811666903, - 0.16823253035744085, - 0.3421472925371005, - 0.3298755467893478, - 0.15483706651579818, - 0.11784399238621912, - 0.33441011724444947, - 0.0760723066536405, - 0.16422621706589172, - 0.3242143157940129, - 0.35129719978396173, - 0.19896764249912952, - 0.18335732436477, - 0.16480078902575024, - 0.17171558892195632, - 0.1503396897328274 ], - mode: 'markers', - name: 'trace 0', - type: 'scattergl' } ], - layout: - { title: 'Datetime Decay', - titlefont: { color: '', family: '', size: 0 }, - font: - { family: '\'Open sans\', verdana, arial, sans-serif', - size: 12, - color: '#444' }, - autosize: true, - width: 1366, - height: 713, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ 1396739232835.0674, 1398746327887.8745 ], - domain: [ 0, 1 ], - type: 'date', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 946789200000, - dtick: 259200000, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { color: '', family: '', size: 0 }, - range: [ -0.6306663659031007, 1.2466203081025848 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: false, - overlaying: false, - autorange: true }, - legend: - { traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0 }, - annotations: - [ { x: 0, - y: 0, - xref: 'paper', - yref: 'paper', - text: 'The date-formatted x-axis will increase it\'s time-resolution when you zoom.
Click-and-drag your mouse on the plot to see how it responds!', - font: { family: '', size: 0, color: '' }, - align: 'center', - showarrow: false, - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -35.9765625, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1, - xanchor: 'auto', - yanchor: 'auto', - tag: '' } ], - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_32.png b/devtools/test_dashboard/testplots-2d/gl2d_32.png deleted file mode 100644 index 3913aeea43f..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_32.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_5.json b/devtools/test_dashboard/testplots-2d/gl2d_5.json deleted file mode 100644 index fac04e56fa3..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_5.json +++ /dev/null @@ -1,288 +0,0 @@ -{ data: - [ { x: - [ 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000 ], - y: - [ 4842271, - 5513847, - 6921498, - 7679621, - 9195343, - 10668782, - 11522457, - 11418079, - 10533542, - 16124617, - 20263518, - 17069801, - 16311297, - 18901950, - 19136689 ], - mode: 'lines', - name: '<5', - line: { color: 'rgb(0, 0, 0)' }, - fill: 'tonexty', - fillcolor: 'rgb(0, 0, 238)', - type: 'scattergl' }, - { x: - [ 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000 ], - y: - [ 16098979, - 19163510, - 24124931, - 29018896, - 33741590, - 38628350, - 43024221, - 47636717, - 45294230, - 51086404, - 68860098, - 77017319, - 72494656, - 71877152, - 80486664 ], - mode: 'lines', - name: '5-19', - line: { color: 'rgb(0, 0, 0)' }, - fill: 'tonexty', - fillcolor: 'rgb(0, 64, 222)', - type: 'scattergl' }, - { x: - [ 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000 ], - y: - [ 27324244, - 32813173, - 42130857, - 52246602, - 62391544, - 74497533, - 83617099, - 94659559, - 96513577, - 107748611, - 126602160, - 141435499, - 156543149, - 171609811, - 184612769 ], - mode: 'lines', - name: '20-44', - line: { color: 'rgb(0, 0, 0)' }, - fill: 'tonexty', - fillcolor: 'rgb(0, 129, 190)', - type: 'scattergl' }, - { x: - [ 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000 ], - y: - [ 30594349, - 37401619, - 48450485, - 60492752, - 72802800, - 87925483, - 100636508, - 116022417, - 122584093, - 138340175, - 162646118, - 183297155, - 200946126, - 217869847, - 246525588 ], - mode: 'lines', - name: '45-64', - line: { color: 'rgb(0, 0, 0)' }, - fill: 'tonexty', - fillcolor: 'rgb(0, 194, 157)', - type: 'scattergl' }, - { x: - [ 1860, - 1870, - 1880, - 1890, - 1900, - 1910, - 1920, - 1930, - 1940, - 1950, - 1960, - 1970, - 1980, - 1990, - 2000 ], - y: - [ 31443318, - 38558370, - 50155781, - 62947712, - 75918577, - 91880290, - 105604907, - 122652269, - 131537603, - 150546661, - 179143850, - 203211923, - 226545801, - 248958581, - 281421904 ], - mode: 'lines', - name: '65+', - line: { color: 'rgb(0, 0, 0)' }, - fill: 'tonexty', - fillcolor: 'rgb(0, 255, 127)', - type: 'scattergl' } ], - layout: - { title: 'US Population
Area Plot', - titlefont: { color: '', family: '', size: 0 }, - font: { family: 'Arial, sans-serif', size: 12, color: '#000' }, - showlegend: true, - autosize: false, - width: 540, - height: 440, - xaxis: - { title: 'Year', - titlefont: { color: '', family: '', size: 0 }, - range: [ 1860, 2000 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 10, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 20, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'y', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - yaxis: - { title: 'Population', - titlefont: { color: '', family: '', size: 0 }, - range: [ 0, 296233583.15789473 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - showgrid: true, - zeroline: true, - showline: false, - autotick: true, - nticks: 10, - ticks: '', - showticklabels: true, - tick0: 0, - dtick: 50000000, - ticklen: 5, - tickwidth: 1, - tickcolor: '#000', - tickangle: 0, - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'e', - showexponent: 'all', - gridcolor: '#ddd', - gridwidth: 1, - zerolinecolor: '#000', - zerolinewidth: 1, - linecolor: '#000', - linewidth: 1, - anchor: 'x', - position: 0, - mirror: true, - overlaying: false, - autorange: true }, - legend: - { x: 1.02, - y: 1.0178571428571428, - traceorder: 'normal', - font: { family: '', size: 14, color: '' }, - bgcolor: 'rgba(255, 255, 255, 0)', - bordercolor: 'rgba(255, 255, 255, 0)', - borderwidth: 0.1, - xanchor: 'left', - yanchor: 'auto' }, - margin: { l: 80, r: 0, b: 80, t: 80, pad: 2, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - barmode: 'stack', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - separators: '.,', - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_5.png b/devtools/test_dashboard/testplots-2d/gl2d_5.png deleted file mode 100644 index 2635e40fc5b..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_5.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_6.png b/devtools/test_dashboard/testplots-2d/gl2d_6.png deleted file mode 100644 index 1f0d2b78b1b..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_6.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes-ticks.json b/devtools/test_dashboard/testplots-2d/gl2d_axes-ticks.json deleted file mode 100644 index a106f294869..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes-ticks.json +++ /dev/null @@ -1,25 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 8, 7, 6, 5, 4, 3, 2, 1, 0 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { xaxis: - { ticks: 'outside', - tickwidth: 4, - tick0: 0, - ticklen: 8, - dtick: 0.25, - tickcolor: '#000', - autotick: false }, - yaxis: - { ticks: 'outside', - tickwidth: 3.5, - tick0: 0, - ticklen: 8, - dtick: 0.25, - tickcolor: '#000', - autotick: false, - gridwidth: 0.1 } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes-ticks.png b/devtools/test_dashboard/testplots-2d/gl2d_axes-ticks.png deleted file mode 100644 index edafb572bc5..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes-ticks.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_booleans.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_booleans.json deleted file mode 100644 index c0ad844331f..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_booleans.json +++ /dev/null @@ -1,24 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 8, 7, 6, 5, 4, 3, 2, 1, 0 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { xaxis: - { showticklabels: false, - ticks: '', - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - autorange: true }, - yaxis: - { showticklabels: false, - ticks: '', - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - autorange: true } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_booleans.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_booleans.png deleted file mode 100644 index ce99c908b68..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_booleans.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_labels.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_labels.json deleted file mode 100644 index 4957deda25d..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_labels.json +++ /dev/null @@ -1,24 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 8, 7, 6, 5, 4, 3, 2, 1, 0 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { xaxis: - { tickfont: { color: 'black', family: 'Old Standard TT, serif', size: 14 }, - showexponent: 'All', - showticklabels: true, - title: 'AXIS TITLE', - tickangle: 45, - titlefont: { color: 'lightgrey', family: 'Arial, sans-serif', size: 18 }, - exponentformat: 'e' }, - yaxis: - { tickfont: { color: 'black', family: 'Old Standard TT, serif', size: 14 }, - showexponent: 'All', - showticklabels: true, - title: 'AXIS TITLE', - tickangle: 45, - titlefont: { color: 'lightgrey', family: 'Arial, sans-serif', size: 18 }, - exponentformat: 'e' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_labels.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_labels.png deleted file mode 100644 index 4667178de4b..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_labels.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_lines.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_lines.json deleted file mode 100644 index fbbe5c15022..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_lines.json +++ /dev/null @@ -1,30 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 8, 7, 6, 5, 4, 3, 2, 1, 0 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { xaxis: - { zerolinewidth: 4, - gridwidth: 2, - showgrid: true, - zerolinecolor: '#969696', - gridcolor: '#bdbdbd', - linecolor: '#636363', - mirror: 'ticks', - zeroline: true, - showline: true, - linewidth: 6 }, - yaxis: - { zerolinewidth: 4, - gridwidth: 2, - showgrid: true, - zerolinecolor: '#969696', - gridcolor: '#bdbdbd', - linecolor: '#636363', - mirror: 'ticks', - zeroline: true, - showline: true, - linewidth: 6 } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_lines.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_lines.png deleted file mode 100644 index c9bc87d2923..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_lines.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_manual.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_range_manual.json deleted file mode 100644 index e4a1d058772..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_manual.json +++ /dev/null @@ -1,8 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 8, 7, 6, 5, 4, 3, 2, 1, 0 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: { xaxis: { range: [ 2, 5 ] }, yaxis: { range: [ 2, 5 ] } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_manual.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_range_manual.png deleted file mode 100644 index 4c4da5989e8..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_manual.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_mode.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_range_mode.json deleted file mode 100644 index 361fd7dd763..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_mode.json +++ /dev/null @@ -1,5 +0,0 @@ -{ data: [ { x: [ 2, 4, 6 ], y: [ -3, 0, 3 ], type: 'scattergl' } ], - layout: - { showlegend: false, - xaxis: { autorange: true, rangemode: 'tozero' }, - yaxis: { autorange: true, rangemode: 'nonnegative' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_mode.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_range_mode.png deleted file mode 100644 index 536d7ecfb74..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_mode.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_type.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_range_type.json deleted file mode 100644 index 41421488939..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_type.json +++ /dev/null @@ -1,10 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 8, 7, 6, 5, 4, 3, 2, 1, 0 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { xaxis: { type: 'log', autorange: true }, - yaxis: { type: 'log', autorange: true } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_type.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_range_type.png deleted file mode 100644 index 780d3907436..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_range_type.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_reversed.json b/devtools/test_dashboard/testplots-2d/gl2d_axes_reversed.json deleted file mode 100644 index 824917ffbb9..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_axes_reversed.json +++ /dev/null @@ -1,2 +0,0 @@ -{ data: [ { x: [ 1, 2 ], y: [ 1, 2 ], type: 'scattergl' } ], - layout: { xaxis: { autorange: 'reversed' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_axes_reversed.png b/devtools/test_dashboard/testplots-2d/gl2d_axes_reversed.png deleted file mode 100644 index 7fc6b47c796..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_axes_reversed.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bar_line.json b/devtools/test_dashboard/testplots-2d/gl2d_bar_line.json deleted file mode 100644 index b42ab5bc911..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_bar_line.json +++ /dev/null @@ -1,4 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5 ], - y: [ 1.5, 1, 1.3, 0.7, 0.8, 0.9 ], - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bar_line.png b/devtools/test_dashboard/testplots-2d/gl2d_bar_line.png deleted file mode 100644 index 6dbe1530977..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_bar_line.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_basic_area.json b/devtools/test_dashboard/testplots-2d/gl2d_basic_area.json deleted file mode 100644 index 5db373365c4..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_basic_area.json +++ /dev/null @@ -1,9 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], - y: [ 0, 2, 3, 5 ], - fill: 'tozeroy', - type: 'scattergl' }, - { x: [ 1, 2, 3, 4 ], - y: [ 3, 5, 1, 7 ], - fill: 'tonexty', - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_basic_area.png b/devtools/test_dashboard/testplots-2d/gl2d_basic_area.png deleted file mode 100644 index 11fbfc446a3..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_basic_area.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_basic_error_bar.json b/devtools/test_dashboard/testplots-2d/gl2d_basic_error_bar.json deleted file mode 100644 index 7ea5969858c..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_basic_error_bar.json +++ /dev/null @@ -1,5 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 6, 10, 2 ], - error_y: { type: 'data', array: [ 1, 2, 3 ], visible: true }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_basic_error_bar.png b/devtools/test_dashboard/testplots-2d/gl2d_basic_error_bar.png deleted file mode 100644 index 05288db9095..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_basic_error_bar.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_basic_line.json b/devtools/test_dashboard/testplots-2d/gl2d_basic_line.json deleted file mode 100644 index c98eb2bcb48..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_basic_line.json +++ /dev/null @@ -1,3 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], y: [ 10, 15, 13, 17 ], type: 'scattergl' }, - { x: [ 1, 2, 3, 4 ], y: [ 16, 5, 11, 9 ], type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_basic_line.png b/devtools/test_dashboard/testplots-2d/gl2d_basic_line.png deleted file mode 100644 index b576a3121c8..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_basic_line.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bubble_markersize0.json b/devtools/test_dashboard/testplots-2d/gl2d_bubble_markersize0.json deleted file mode 100644 index d6a4ab51bcd..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_bubble_markersize0.json +++ /dev/null @@ -1,20 +0,0 @@ -{ data: - [ { type: 'scattergl', - mode: 'markers', - x: [ 100.75, 157.53, 140.72, 134.03 ], - y: [ -102.63, -110.53, -96.97, -163.59 ], - marker: { size: [ 0, 20, 30, 40 ] } } ], - layout: - { title: 'Bubble with marker.size[0] === 0', - showlegend: true, - xaxis: - { type: 'linear', - range: [ 97.17617854849068, 161.79670520231213 ], - autorange: true }, - yaxis: - { type: 'linear', - range: [ -172.7879485636938, -89.02449541284403 ], - autorange: true }, - height: 598, - width: 1080, - autosize: true } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bubble_markersize0.png b/devtools/test_dashboard/testplots-2d/gl2d_bubble_markersize0.png deleted file mode 100644 index e1d06c7e647..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_bubble_markersize0.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bubble_nonnumeric-sizes.json b/devtools/test_dashboard/testplots-2d/gl2d_bubble_nonnumeric-sizes.json deleted file mode 100644 index e4597718bc7..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_bubble_nonnumeric-sizes.json +++ /dev/null @@ -1,173 +0,0 @@ -{ data: - [ { type: 'scattergl', - mode: 'markers', - x: - [ -180, - -171, - -162, - -153, - -144, - -135, - -126, - -117, - -108, - -99, - -90, - -81, - -72, - -63, - -54, - -45, - -36, - -27, - -18, - -9, - 0, - 9, - 18, - 27, - 36, - 45, - 54, - 63, - 72, - 81, - 90, - 99, - 108, - 117, - 126, - 135, - 144, - 153, - 162, - 171 ], - y: - [ 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5 ], - marker: - { size: - [ 'sup', - 679522.6183513794, - 'sup', - 783486.8911723467, - 'sup', - -559652.2230095522, - 'sup', - -869111.4676419107, - 'sup', - 426681.6061477646, - 'sup', - 934392.0656841636, - 'sup', - -283723.3159966294, - 'sup', - -977800.610791179, - 'sup', - 134123.69014247367, - 'sup', - 998321.0048695421, - 'sup', - 18615.47483921243, - 'sup', - -995472.9108508574, - 'sup', - -170918.8927014062, - 'sup', - 969322.9963208752, - 'sup', - 319221.47707400384, - 'sup', - -920483.3729785895, - 'sup', - -460051.7922556981, - 'sup', - 850097.2684543622, - 'sup', - 590113.3118508832, - 'sup', - -759812.2658780153 ], - sizeref: 10000, - sizemin: 3 }, - text: - [ 'sup', - 679522.6183513794, - 'sup', - 783486.8911723467, - 'sup', - -559652.2230095522, - 'sup', - -869111.4676419107, - 'sup', - 426681.6061477646, - 'sup', - 934392.0656841636, - 'sup', - -283723.3159966294, - 'sup', - -977800.610791179, - 'sup', - 134123.69014247367, - 'sup', - 998321.0048695421, - 'sup', - 18615.47483921243, - 'sup', - -995472.9108508574, - 'sup', - -170918.8927014062, - 'sup', - 969322.9963208752, - 'sup', - 319221.47707400384, - 'sup', - -920483.3729785895, - 'sup', - -460051.7922556981, - 'sup', - 850097.2684543622, - 'sup', - 590113.3118508832, - 'sup', - -759812.2658780153 ] } ], - layout: - { title: 'scaled bubbles with non-numeric marker sizes', - showlegend: true } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bubble_nonnumeric-sizes.png b/devtools/test_dashboard/testplots-2d/gl2d_bubble_nonnumeric-sizes.png deleted file mode 100644 index 89ddc72de28..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_bubble_nonnumeric-sizes.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bubblechart.json b/devtools/test_dashboard/testplots-2d/gl2d_bubblechart.json deleted file mode 100644 index e2c1077e77e..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_bubblechart.json +++ /dev/null @@ -1,35 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], - y: [ 10, 11, 12, 13 ], - mode: 'markers', - marker: - { color: - [ 'hsl(0,100,40)', - 'hsl(33,100,40)', - 'hsl(66,100,40)', - 'hsl(99,100,40)' ], - size: [ 12, 22, 32, 42 ], - opacity: [ 0.4, 0.3, 0.2, 0.1 ] }, - type: 'scattergl' }, - { x: [ 1, 2, 3, 4 ], - y: [ 11, 12, 13, 14 ], - mode: 'markers', - marker: - { color: 'rgb(31, 119, 180)', - size: 18, - symbol: [ 'circle', 'square', 'diamond', 'cross' ] }, - type: 'scattergl' }, - { x: [ 1, 2, 3, 4 ], - y: [ 12, 13, 14, 15 ], - mode: 'markers', - marker: - { size: 18, - line: - { color: - [ 'rgb(120,120,120)', - 'rgb(120,120,120)', - 'red', - 'rgb(120,120,120)' ], - width: [ 2, 2, 6, 2 ] } }, - type: 'scattergl' } ], - layout: { showlegend: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_bubblechart.png b/devtools/test_dashboard/testplots-2d/gl2d_bubblechart.png deleted file mode 100644 index f0f3e00b371..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_bubblechart.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_contour_scatter.json b/devtools/test_dashboard/testplots-2d/gl2d_contour_scatter.json deleted file mode 100644 index c715d91edd9..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_contour_scatter.json +++ /dev/null @@ -1,39 +0,0 @@ -{ data: - [ { x: - [ -0.8, - -0.48, - -0.288, - -0.1728, - -0.10368, - -0.062208, - -0.0373248, - -0.02239488, - -0.013436928, - -0.0080621568, - -0.00483729408, - -0.002902376448, - -0.0017414258688, - -0.00104485552128, - -0.000626913312768, - -0.000376147987661 ], - y: - [ -0.9, - -0.72, - -0.576, - -0.4608, - -0.36864, - -0.294912, - -0.2359296, - -0.18874368, - -0.150994944, - -0.1207959552, - -0.09663676416, - -0.077309411328, - -0.0618475290624, - -0.0494780232499, - -0.0395824185999, - -0.0316659348799 ], - mode: 'markers+lines', - name: 'steepest', - line: { color: 'black' }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_contour_scatter.png b/devtools/test_dashboard/testplots-2d/gl2d_contour_scatter.png deleted file mode 100644 index cc4a857e262..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_contour_scatter.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_custom_size_subplot.json b/devtools/test_dashboard/testplots-2d/gl2d_custom_size_subplot.json deleted file mode 100644 index bba0bd31137..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_custom_size_subplot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], y: [ 4, 5, 6 ], type: 'scattergl' }, - { x: [ 20, 30, 40 ], - y: [ 50, 60, 70 ], - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' } ], - layout: - { xaxis: { domain: [ 0, 0.7 ] }, - yaxis2: { anchor: 'x2' }, - xaxis2: { domain: [ 0.8, 1 ] } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_custom_size_subplot.png b/devtools/test_dashboard/testplots-2d/gl2d_custom_size_subplot.png deleted file mode 100644 index 5141f121185..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_custom_size_subplot.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_date_axes.json b/devtools/test_dashboard/testplots-2d/gl2d_date_axes.json deleted file mode 100644 index 324c94859fe..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_date_axes.json +++ /dev/null @@ -1,7 +0,0 @@ -{ data: - [ { x: - [ '2013-10-04 22:23:00', - '2013-11-04 22:23:00', - '2013-12-04 22:23:00' ], - y: [ 1, 3, 6 ], - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_date_axes.png b/devtools/test_dashboard/testplots-2d/gl2d_date_axes.png deleted file mode 100644 index 1f2de701bae..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_date_axes.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_array.json b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_array.json deleted file mode 100644 index 3dc507e290b..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_array.json +++ /dev/null @@ -1,9 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], - y: [ 2, 1, 3, 4 ], - error_y: - { type: 'data', - symmetric: false, - array: [ 0.1, 0.2, 0.1, 0.1 ], - arrayminus: [ 0.2, 0.4, 1, 0.2 ] }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_array.png b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_array.png deleted file mode 100644 index 621ea13075a..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_array.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_constant.json b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_constant.json deleted file mode 100644 index 47eabc66a9d..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_constant.json +++ /dev/null @@ -1,5 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], - y: [ 2, 1, 3, 4 ], - error_y: { type: 'percent', symmetric: false, value: 15, valueminus: 25 }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_constant.png b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_constant.png deleted file mode 100644 index afc855f5158..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_asymmetric_constant.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_horizontal.json b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_horizontal.json deleted file mode 100644 index 336413194a2..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_horizontal.json +++ /dev/null @@ -1,5 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], - y: [ 2, 1, 3, 4 ], - error_x: { type: 'percent', value: 10 }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_horizontal.png b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_horizontal.png deleted file mode 100644 index 1139b97b275..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_horizontal.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_style.json b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_style.json deleted file mode 100644 index c9e62378f82..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_style.json +++ /dev/null @@ -1,253 +0,0 @@ -{ data: - [ { x: - [ -4, - -3.91919191919, - -3.83838383838, - -3.75757575758, - -3.67676767677, - -3.59595959596, - -3.51515151515, - -3.43434343434, - -3.35353535354, - -3.27272727273, - -3.19191919192, - -3.11111111111, - -3.0303030303, - -2.94949494949, - -2.86868686869, - -2.78787878788, - -2.70707070707, - -2.62626262626, - -2.54545454545, - -2.46464646465, - -2.38383838384, - -2.30303030303, - -2.22222222222, - -2.14141414141, - -2.06060606061, - -1.9797979798, - -1.89898989899, - -1.81818181818, - -1.73737373737, - -1.65656565657, - -1.57575757576, - -1.49494949495, - -1.41414141414, - -1.33333333333, - -1.25252525253, - -1.17171717172, - -1.09090909091, - -1.0101010101, - -0.929292929293, - -0.848484848485, - -0.767676767677, - -0.686868686869, - -0.606060606061, - -0.525252525253, - -0.444444444444, - -0.363636363636, - -0.282828282828, - -0.20202020202, - -0.121212121212, - -0.040404040404, - 0.040404040404, - 0.121212121212, - 0.20202020202, - 0.282828282828, - 0.363636363636, - 0.444444444444, - 0.525252525253, - 0.606060606061, - 0.686868686869, - 0.767676767677, - 0.848484848485, - 0.929292929293, - 1.0101010101, - 1.09090909091, - 1.17171717172, - 1.25252525253, - 1.33333333333, - 1.41414141414, - 1.49494949495, - 1.57575757576, - 1.65656565657, - 1.73737373737, - 1.81818181818, - 1.89898989899, - 1.9797979798, - 2.06060606061, - 2.14141414141, - 2.22222222222, - 2.30303030303, - 2.38383838384, - 2.46464646465, - 2.54545454545, - 2.62626262626, - 2.70707070707, - 2.78787878788, - 2.86868686869, - 2.94949494949, - 3.0303030303, - 3.11111111111, - 3.19191919192, - 3.27272727273, - 3.35353535354, - 3.43434343434, - 3.51515151515, - 3.59595959596, - 3.67676767677, - 3.75757575758, - 3.83838383838, - 3.91919191919, - 4 ], - y: - [ -3.89817183252e-17, - -0.0203977985419, - -0.0403193724878, - -0.0584576295394, - -0.0735635288038, - -0.0845267627957, - -0.0904511079188, - -0.0907196677349, - -0.0850456745641, - -0.073505226971, - -0.0565492889615, - -0.0349934120018, - -0.00998490184733, - 0.0170515316115, - 0.044487306888, - 0.0705791505007, - 0.0935693553283, - 0.111791748259, - 0.123777480556, - 0.12835455837, - 0.124735175461, - 0.112585395965, - 0.0920725428959, - 0.0638867404972, - 0.0292343807019, - -0.0101972326738, - -0.052303243234, - -0.0946502243888, - -0.134586933222, - -0.16937168695, - -0.196310165005, - -0.21289670377, - -0.216951773509, - -0.206748335783, - -0.181120181105, - -0.139546125971, - -0.0822050699273, - -0.00999832175161, - 0.075462772185, - 0.171904109116, - 0.276469438182, - 0.385830975753, - 0.49632512003, - 0.604107005716, - 0.705316598492, - 0.796248356504, - 0.873516220656, - 0.934205854304, - 0.97600663017, - 0.997316829847, - 0.997316829847, - 0.97600663017, - 0.934205854304, - 0.873516220656, - 0.796248356504, - 0.705316598492, - 0.604107005716, - 0.49632512003, - 0.385830975753, - 0.276469438182, - 0.171904109116, - 0.075462772185, - -0.00999832175161, - -0.0822050699273, - -0.139546125971, - -0.181120181105, - -0.206748335783, - -0.216951773509, - -0.21289670377, - -0.196310165005, - -0.16937168695, - -0.134586933222, - -0.0946502243888, - -0.052303243234, - -0.0101972326738, - 0.029234380702, - 0.0638867404972, - 0.0920725428959, - 0.112585395965, - 0.124735175461, - 0.12835455837, - 0.123777480556, - 0.111791748259, - 0.0935693553283, - 0.0705791505007, - 0.044487306888, - 0.0170515316115, - -0.00998490184733, - -0.0349934120018, - -0.0565492889615, - -0.073505226971, - -0.0850456745641, - -0.0907196677349, - -0.0904511079188, - -0.0845267627957, - -0.0735635288038, - -0.0584576295394, - -0.0403193724878, - -0.0203977985419, - -3.89817183252e-17 ], - name: 'sinc(x)', - type: 'scattergl' }, - { x: - [ -3.8, - -3.03, - -1.91, - -1.46, - -0.89, - -0.24, - 0, - 0.41, - 0.89, - 1.01, - 1.91, - 2.28, - 2.79, - 3.56 ], - y: - [ -0.02, - 0.04, - -0.01, - -0.27, - 0.36, - 0.75, - 1.03, - 0.65, - 0.28, - 0.02, - -0.11, - 0.16, - 0.04, - -0.15 ], - mode: 'markers', - name: 'measured', - error_y: - { type: 'constant', - value: 0.1, - color: '#85144B', - thickness: 1.5, - width: 3, - opacity: 1 }, - error_x: - { type: 'constant', - value: 0.2, - color: '#85144B', - thickness: 1.5, - width: 3, - opacity: 1 }, - marker: { color: '#85144B', size: 8 }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_style.png b/devtools/test_dashboard/testplots-2d/gl2d_error_bar_style.png deleted file mode 100644 index 119fdde3889..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_error_bar_style.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_fonts.json b/devtools/test_dashboard/testplots-2d/gl2d_fonts.json deleted file mode 100644 index 3268b298fcd..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_fonts.json +++ /dev/null @@ -1,351 +0,0 @@ -{ data: - [ { x: [ '1', '2', '1', '2' ], - y: [ '1', '1', '2', '2' ], - mode: 'markers', - name: 'Col2', - type: 'scattergl' } ], - layout: - { title: 'Click to enter Plot title', - titlefont: { family: '', size: 0, color: '' }, - font: - { family: '"Open sans", verdana, arial, sans-serif', - size: 16, - color: '#444' }, - showlegend: false, - autosize: true, - width: 1785, - height: 764, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { family: '', size: 0, color: '' }, - range: [ 0.9421558530724339, 2.057844146927566 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - autorange: true, - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: false, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - mirror: false, - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - overlaying: false, - position: 0 }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { family: '', size: 0, color: '' }, - range: [ 0.9380292532717475, 2.0619707467282526 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - autorange: true, - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: false, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - mirror: false, - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - overlaying: false, - position: 0 }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - annotations: - [ { x: 0.1, - y: 1, - xref: 'paper', - yref: 'paper', - text: 'Arial Bold Italic', - showarrow: false, - font: { family: 'Arial, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.7109375, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.9090909090909091, - xref: 'paper', - yref: 'paper', - text: 'Balto Bold Italic', - showarrow: false, - font: { family: 'Balto, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.0078125, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.8181818181818181, - xref: 'paper', - yref: 'paper', - text: 'Courier New Bold Italic', - showarrow: false, - font: { family: 'Courier New, monospace', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.8046875, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.7272727272727273, - xref: 'paper', - yref: 'paper', - text: 'Droid Sans Bold', - showarrow: false, - font: { family: 'Droid Sans, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.0390625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.6363636363636364, - xref: 'paper', - yref: 'paper', - text: 'Droid Serif Bold Italic', - showarrow: false, - font: { family: 'Droid Serif, serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.0390625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.5454545454545454, - xref: 'paper', - yref: 'paper', - text: 'Droid Sans Mono', - showarrow: false, - font: { family: 'Droid Sans Mono, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.9765625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.36363636363636365, - xref: 'paper', - yref: 'paper', - text: 'Old Standard TT Bold', - showarrow: false, - font: { family: 'Old Standard TT, serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.390625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.2727272727272727, - xref: 'paper', - yref: 'paper', - text: 'Open Sans Bold Italic', - showarrow: false, - font: { family: 'Open Sans, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -28.171875, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.18181818181818177, - xref: 'paper', - yref: 'paper', - text: 'PT Sans Narrow Bold', - showarrow: false, - font: { family: 'PT Sans Narrow, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.0625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.09090909090909094, - xref: 'paper', - yref: 'paper', - text: 'Raleway Bold Italic', - showarrow: false, - font: { family: 'Raleway, sans-serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.046875, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0, - xref: 'paper', - yref: 'paper', - text: 'Times New Roman Bold', - showarrow: false, - font: { family: 'Times New Roman, Times, serif', size: 20 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.65625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 } ], - margin: { l: 80, r: 80, b: 80, t: 100, pad: 0, autoexpand: true }, - paper_bgcolor: '#fff', - plot_bgcolor: '#fff', - hovermode: 'x', - dragmode: 'zoom', - separators: '.,', - barmode: 'group', - bargap: 0.2, - bargroupgap: 0, - boxmode: 'overlay', - boxgap: 0.3, - boxgroupgap: 0.3, - hidesources: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_fonts.png b/devtools/test_dashboard/testplots-2d/gl2d_fonts.png deleted file mode 100644 index 29c01ff7bac..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_fonts.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_global_font.json b/devtools/test_dashboard/testplots-2d/gl2d_global_font.json deleted file mode 100644 index 877db04d4db..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_global_font.json +++ /dev/null @@ -1,7 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { title: 'Global Font', - font: { family: 'Courier New, monospace', size: 18, color: '#7f7f7f' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_global_font.png b/devtools/test_dashboard/testplots-2d/gl2d_global_font.png deleted file mode 100644 index 9c30bd9889f..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_global_font.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_japanese.json b/devtools/test_dashboard/testplots-2d/gl2d_japanese.json deleted file mode 100644 index 28223d05c3a..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_japanese.json +++ /dev/null @@ -1,184 +0,0 @@ -{ data: - [ { x: [ '1', '2', '1', '2' ], - y: [ '1', '1', '2', '2' ], - mode: 'markers', - name: 'Col2', - type: 'scattergl' } ], - layout: - { title: 'Japanese font test for Kanji, Romaji, Katakana, and Hiragana', - titlefont: { family: '', size: 0, color: '' }, - font: - { family: '"Open sans", verdana, arial, sans-serif', - size: 16, - color: '#444' }, - showlegend: false, - autosize: true, - width: 1785, - height: 764, - xaxis: - { title: 'Click to enter X axis title', - titlefont: { family: '', size: 0, color: '' }, - range: [ 0.9421558530724339, 2.057844146927566 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - autorange: true, - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: false, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - mirror: false, - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'y', - overlaying: false, - position: 0 }, - yaxis: - { title: 'Click to enter Y axis title', - titlefont: { family: '', size: 0, color: '' }, - range: [ 0.9380292532717475, 2.0619707467282526 ], - domain: [ 0, 1 ], - type: 'linear', - rangemode: 'normal', - autorange: true, - showgrid: false, - zeroline: false, - showline: false, - autotick: true, - nticks: 0, - ticks: '', - showticklabels: false, - tick0: 0, - dtick: 0.2, - ticklen: 5, - tickwidth: 1, - tickcolor: '#444', - tickangle: 'auto', - tickfont: { family: '', size: 0, color: '' }, - exponentformat: 'B', - showexponent: 'all', - mirror: false, - gridcolor: '#eee', - gridwidth: 1, - zerolinecolor: '#444', - zerolinewidth: 1, - linecolor: '#444', - linewidth: 1, - anchor: 'x', - overlaying: false, - position: 0 }, - legend: - { x: 1.02, - y: 1, - traceorder: 'normal', - font: { family: '', size: 0, color: '' }, - bgcolor: '#fff', - bordercolor: '#444', - borderwidth: 0, - xanchor: 'left', - yanchor: 'top' }, - annotations: - [ { x: 0.1, - y: 1, - xref: 'paper', - yref: 'paper', - text: 'Kanji: 金魚', - font: { size: 40 }, - showarrow: false, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.7109375, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.75, - xref: 'paper', - yref: 'paper', - text: 'Romaji: tōkyō', - font: { size: 40 }, - showarrow: false, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.0078125, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.5, - xref: 'paper', - yref: 'paper', - text: 'Katakana: キンギョ', - font: { size: 40 }, - showarrow: false, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -26.8046875, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 }, - { x: 0.1, - y: 0.25, - xref: 'paper', - yref: 'paper', - text: 'Hiragana: きんぎょ', - showarrow: false, - font: { size: 40 }, - xanchor: 'left', - yanchor: 'middle', - align: 'center', - arrowhead: 1, - arrowsize: 1, - arrowwidth: 0, - arrowcolor: '', - ax: -10, - ay: -27.0390625, - textangle: 0, - bordercolor: '', - borderwidth: 1, - borderpad: 1, - bgcolor: 'rgba(0,0,0,0)', - opacity: 1 } ] } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_inside.json b/devtools/test_dashboard/testplots-2d/gl2d_legend_inside.json deleted file mode 100644 index a0dc85d9e73..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_legend_inside.json +++ /dev/null @@ -1,8 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 3, 6, 4, 5, 2, 3, 5, 4 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 4, 7, 8, 3, 6, 3, 3, 4 ], - type: 'scattergl' } ], - layout: { showlegend: true, legend: { x: 1, y: 1, xanchor: 'auto' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_inside.png b/devtools/test_dashboard/testplots-2d/gl2d_legend_inside.png deleted file mode 100644 index 399fc09ce0d..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_legend_inside.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_labels.json b/devtools/test_dashboard/testplots-2d/gl2d_legend_labels.json deleted file mode 100644 index 514526d97e9..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_legend_labels.json +++ /dev/null @@ -1,9 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 3, 6, 4, 5, 2, 3, 5, 4 ], - name: 'Blue Trace', - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 4, 7, 8, 3, 6, 3, 3, 4 ], - name: 'Orange Trace', - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_labels.png b/devtools/test_dashboard/testplots-2d/gl2d_legend_labels.png deleted file mode 100644 index 82a777d7c85..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_legend_labels.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_outside.json b/devtools/test_dashboard/testplots-2d/gl2d_legend_outside.json deleted file mode 100644 index f5c5fa1723a..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_legend_outside.json +++ /dev/null @@ -1,8 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 3, 6, 4, 5, 2, 3, 5, 4 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 4, 7, 8, 3, 6, 3, 3, 4 ], - type: 'scattergl' } ], - layout: { showlegend: true, legend: { x: 1, y: 1, xanchor: 'left' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_outside.png b/devtools/test_dashboard/testplots-2d/gl2d_legend_outside.png deleted file mode 100644 index 1d2889d1150..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_legend_outside.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_style.json b/devtools/test_dashboard/testplots-2d/gl2d_legend_style.json deleted file mode 100644 index bf0ae86a125..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_legend_style.json +++ /dev/null @@ -1,17 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 3, 6, 4, 5, 2, 3, 5, 4 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 4, 7, 8, 3, 6, 3, 3, 4 ], - type: 'scattergl' } ], - layout: - { legend: - { x: 0, - y: 1, - traceorder: 'normal', - font: { family: 'Arial, sans-serif', size: 12, color: '#000' }, - bgcolor: '#E2E2E2', - bordercolor: '#FFFFFF', - borderwidth: 2, - showlegend: true } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legend_style.png b/devtools/test_dashboard/testplots-2d/gl2d_legend_style.png deleted file mode 100644 index c2c0ca60440..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_legend_style.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legendgroup.json b/devtools/test_dashboard/testplots-2d/gl2d_legendgroup.json deleted file mode 100644 index 3aa9ae6e333..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_legendgroup.json +++ /dev/null @@ -1,30 +0,0 @@ -{ data: - [ { type: 'scattergl', - x: [ 1, 2, 3 ], - y: [ 2, 1, 2 ], - legendgroup: 'group', - uid: '481c07', - visible: true }, - { type: 'scattergl', - x: [ 3, 4, 5 ], - y: [ 2, 1, 2 ], - legendgroup: 'group', - uid: 'e08ed1', - visible: true }, - { type: 'scattergl', - x: [ 3, 4, 5 ], - y: [ 1, 2, 1 ], - uid: 'c61b60', - visible: true } ], - layout: - { title: 'Toggle legend group', - legend: { tracegroupgap: 20 }, - xaxis: { type: 'linear', range: [ 0.5, 5.5 ], autorange: true }, - yaxis: - { type: 'linear', - range: [ 0, 2.136498516320475 ], - autorange: true }, - height: 450, - width: 1000, - autosize: true, - showlegend: true } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_legendgroup.png b/devtools/test_dashboard/testplots-2d/gl2d_legendgroup.png deleted file mode 100644 index 8703cb9919f..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_legendgroup.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_line_scatter.json b/devtools/test_dashboard/testplots-2d/gl2d_line_scatter.json deleted file mode 100644 index ec13c947a78..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_line_scatter.json +++ /dev/null @@ -1,13 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3, 4 ], - y: [ 10, 15, 13, 17 ], - mode: 'markers', - type: 'scattergl' }, - { x: [ 2, 3, 4, 5 ], - y: [ 16, 5, 11, 9 ], - mode: 'lines', - type: 'scattergl' }, - { x: [ 1, 2, 3, 4 ], - y: [ 12, 9, 15, 12 ], - mode: 'lines+markers', - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_line_scatter.png b/devtools/test_dashboard/testplots-2d/gl2d_line_scatter.png deleted file mode 100644 index ca61dd54805..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_line_scatter.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_line_style.json b/devtools/test_dashboard/testplots-2d/gl2d_line_style.json deleted file mode 100644 index 54cef9d5823..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_line_style.json +++ /dev/null @@ -1,68 +0,0 @@ -{ data: - [ { x: [ 52698, 43117 ], - y: [ 53, 31 ], - mode: 'markers', - name: 'North America', - text: [ 'United States', 'Canada' ], - marker: - { color: 'rgb(164, 194, 244)', - size: 12, - line: { color: 'white', width: 0.5 } }, - type: 'scattergl' }, - { x: [ 39317, 37236, 35650, 30066, 29570, 27159, 23557, 21046, 18007 ], - y: [ 33, 20, 13, 19, 27, 19, 49, 44, 38 ], - mode: 'markers', - name: 'Europe', - text: - [ 'Germany', - 'Britain', - 'France', - 'Spain', - 'Italy', - 'Czech Rep.', - 'Greece', - 'Poland' ], - marker: - { color: 'rgb(255, 217, 102)', - size: 12, - line: { color: 'white', width: 0.5 } }, - type: 'scattergl' }, - { x: [ 42952, 37037, 33106, 17478, 9813, 5253, 4692, 3899 ], - y: [ 23, 42, 54, 89, 14, 99, 93, 70 ], - mode: 'markers', - name: 'Asia/Pacific', - text: - [ 'Australia', - 'Japan', - 'South Korea', - 'Malaysia', - 'China', - 'Indonesia', - 'Philippines', - 'India' ], - marker: - { color: 'rgb(234, 153, 153)', - size: 12, - line: { color: 'white', width: 0.5 } }, - type: 'scattergl' }, - { x: [ 19097, 18601, 15595, 13546, 12026, 7434, 5419 ], - y: [ 43, 47, 56, 80, 86, 93, 80 ], - mode: 'markers', - name: 'Latin America', - text: - [ 'Chile', - 'Argentina', - 'Mexico', - 'Venezuela', - 'Venezuela', - 'El Salvador', - 'Bolivia' ], - marker: - { color: 'rgb(142, 124, 195)', - size: 12, - line: { color: 'white', width: 0.5 } }, - type: 'scattergl' } ], - layout: - { title: 'Quarter 1 Growth', - xaxis: { zeroline: false, showgrid: false, title: 'GDP per Capita' }, - yaxis: { showline: false, title: 'Percent' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_line_style.png b/devtools/test_dashboard/testplots-2d/gl2d_line_style.png deleted file mode 100644 index f7e1fdbcc8b..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_line_style.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_double.json b/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_double.json deleted file mode 100644 index f738da603c3..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_double.json +++ /dev/null @@ -1,19 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], - y: [ 40, 50, 60 ], - name: 'yaxis data', - type: 'scattergl' }, - { x: [ 2, 3, 4 ], - y: [ 4, 5, 6 ], - name: 'yaxis2 data', - yaxis: 'y2', - type: 'scattergl' } ], - layout: - { title: 'Double Y Axis Example', - yaxis: { title: 'yaxis title' }, - yaxis2: - { title: 'yaxis2 title', - titlefont: { color: 'rgb(148, 103, 189)' }, - tickfont: { color: 'rgb(148, 103, 189)' }, - side: 'right', - overlaying: 'y' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_double.png b/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_double.png deleted file mode 100644 index 5c42a91549c..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_double.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_multiple.json b/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_multiple.json deleted file mode 100644 index a00d28a04f0..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_multiple.json +++ /dev/null @@ -1,51 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], - y: [ 4, 5, 6 ], - name: 'yaxis1 data', - type: 'scattergl' }, - { x: [ 2, 3, 4 ], - y: [ 40, 50, 60 ], - name: 'yaxis2 data', - yaxis: 'y2', - type: 'scattergl' }, - { x: [ 4, 5, 6 ], - y: [ 40000, 50000, 60000 ], - name: 'yaxis3 data', - yaxis: 'y3', - type: 'scattergl' }, - { x: [ 5, 6, 7 ], - y: [ 400000, 500000, 600000 ], - name: 'yaxis4 data', - yaxis: 'y4', - type: 'scattergl' } ], - layout: - { title: 'multiple y-axes example', - width: 800, - xaxis: { domain: [ 0.3, 0.7 ] }, - yaxis: - { tickfont: { color: '#1f77b4' }, - titlefont: { color: '#1f77b4' }, - title: 'yaxis title' }, - yaxis2: - { title: 'yaxis2 title', - titlefont: { color: '#ff7f0e' }, - tickfont: { color: '#ff7f0e' }, - anchor: 'free', - side: 'left', - position: 0.15, - overlaying: 'y' }, - yaxis3: - { title: 'yaxis3 title', - titlefont: { color: '#d62728' }, - tickfont: { color: '#d62728' }, - anchor: 'x', - side: 'right', - overlaying: 'y' }, - yaxis4: - { title: 'yaxis4 title', - titlefont: { color: '#9467bd' }, - tickfont: { color: '#9467bd' }, - anchor: 'free', - side: 'right', - position: 0.85, - overlaying: 'y' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_multiple.png b/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_multiple.png deleted file mode 100644 index 9f017550e9a..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_multiple_axes_multiple.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_multiple_subplots.json b/devtools/test_dashboard/testplots-2d/gl2d_multiple_subplots.json deleted file mode 100644 index 8c989abce98..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_multiple_subplots.json +++ /dev/null @@ -1,26 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], y: [ 4, 5, 6 ], type: 'scattergl' }, - { x: [ 20, 30, 40 ], - y: [ 50, 60, 70 ], - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' }, - { x: [ 300, 400, 500 ], - y: [ 600, 700, 800 ], - xaxis: 'x3', - yaxis: 'y3', - type: 'scattergl' }, - { x: [ 4000, 5000, 6000 ], - y: [ 7000, 8000, 9000 ], - xaxis: 'x4', - yaxis: 'y4', - type: 'scattergl' } ], - layout: - { xaxis: { domain: [ 0, 0.45 ] }, - yaxis: { domain: [ 0, 0.45 ] }, - xaxis4: { domain: [ 0.55, 1 ], anchor: 'y4' }, - xaxis3: { domain: [ 0, 0.45 ], anchor: 'y3' }, - xaxis2: { domain: [ 0.55, 1 ] }, - yaxis2: { domain: [ 0, 0.45 ], anchor: 'x2' }, - yaxis3: { domain: [ 0.55, 1 ] }, - yaxis4: { domain: [ 0.55, 1 ], anchor: 'x4' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_multiple_subplots.png b/devtools/test_dashboard/testplots-2d/gl2d_multiple_subplots.png deleted file mode 100644 index 7e958b58de3..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_multiple_subplots.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_percent_error_bar.json b/devtools/test_dashboard/testplots-2d/gl2d_percent_error_bar.json deleted file mode 100644 index bc3837a3fef..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_percent_error_bar.json +++ /dev/null @@ -1,5 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 6, 10, 2 ], - error_y: { type: 'percent', value: 50, visible: true }, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_percent_error_bar.png b/devtools/test_dashboard/testplots-2d/gl2d_percent_error_bar.png deleted file mode 100644 index 837e9741d72..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_percent_error_bar.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_scatter-colorscale-colorbar.json b/devtools/test_dashboard/testplots-2d/gl2d_scatter-colorscale-colorbar.json deleted file mode 100644 index 3517fadd027..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_scatter-colorscale-colorbar.json +++ /dev/null @@ -1,139 +0,0 @@ -{ data: - [ { marker: - { color: - [ 0, - -1, - -2, - -3, - -4, - -5, - -6, - -7, - -8, - -9, - -10, - -11, - -12, - -13, - -14, - -15, - -16, - -17, - -18, - -19, - -20, - -21, - -22, - -23, - -24, - -25, - -26, - -27, - -28, - -29, - -30, - -31, - -32, - -33, - -34, - -35, - -36, - -37, - -38, - -39 ], - size: - [ 0, - 10, - 14.142135623730951, - 17.320508075688775, - 20, - 22.360679774997898, - 24.49489742783178, - 26.457513110645905, - 28.284271247461902, - 30, - 31.622776601683793, - 33.166247903554, - 34.64101615137755, - 36.05551275463989, - 37.416573867739416, - 38.72983346207417, - 40, - 41.23105625617661, - 42.42640687119285, - 43.58898943540674, - 44.721359549995796, - 45.8257569495584, - 46.9041575982343, - 47.958315233127195, - 48.98979485566356, - 50, - 50.99019513592785, - 51.96152422706632, - 52.91502622129181, - 53.85164807134504, - 54.772255750516614, - 55.67764362830022, - 56.568542494923804, - 57.445626465380286, - 58.309518948453004, - 59.16079783099616, - 60, - 60.8276253029822, - 61.644140029689765, - 62.44997998398398 ], - colorbar: { title: 'WOW' } }, - y: - [ 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5 ], - type: 'scattergl', - mode: 'markers' } ], - layout: - { title: 'scatter + colorbar = <3', - xaxis: - { type: 'linear', - range: [ -2.501411175139456, 43.340777299865266 ], - autorange: true }, - yaxis: { type: 'linear', range: [ 4, 6 ], autorange: true }, - height: 598, - width: 1080, - autosize: true, - showlegend: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_scatter-colorscale-colorbar.png b/devtools/test_dashboard/testplots-2d/gl2d_scatter-colorscale-colorbar.png deleted file mode 100644 index 6b6a993902d..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_scatter-colorscale-colorbar.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_scatter-marker-line-colorscales.json b/devtools/test_dashboard/testplots-2d/gl2d_scatter-marker-line-colorscales.json deleted file mode 100644 index 2de64553c49..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_scatter-marker-line-colorscales.json +++ /dev/null @@ -1,154 +0,0 @@ -{ data: - [ { type: 'scattergl', - mode: 'markers', - y: - [ 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5, - 5 ], - marker: - { color: - [ 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39 ], - size: 30, - cmin: 0, - cmax: 45, - colorscale: - [ [ 0, 'rgb(5, 10, 172)' ], - [ 0.35, 'rgb(106, 137, 247)' ], - [ 0.5, 'rgb(190,190,190)' ], - [ 0.6, 'rgb(220, 170, 132)' ], - [ 0.7, 'rgb(230, 145, 90)' ], - [ 1, 'rgb(178, 10, 28)' ] ], - line: - { color: - [ 39, - 38, - 37, - 36, - 35, - 34, - 33, - 32, - 31, - 30, - 29, - 28, - 27, - 26, - 25, - 24, - 23, - 22, - 21, - 20, - 19, - 18, - 17, - 16, - 15, - 14, - 13, - 12, - 11, - 10, - 9, - 8, - 7, - 6, - 5, - 4, - 3, - 2, - 1, - 0 ], - width: 5, - cmin: 0, - cmax: 43, - colorscale: [ [ 0, 'rgb(220, 170, 132)' ], [ 1, 'rgb(190,190,190)' ] ] } }, - uid: '0a4533' } ], - layout: - { title: 'scatter trace with colorscales for both marker color and marker line color', - xaxis: - { type: 'linear', - range: [ -3.19449715370019, 42.19449715370019 ], - autorange: true }, - yaxis: { type: 'linear', range: [ 4, 6 ], autorange: true }, - height: 598, - width: 1080, - autosize: true, - showlegend: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_scatter-marker-line-colorscales.png b/devtools/test_dashboard/testplots-2d/gl2d_scatter-marker-line-colorscales.png deleted file mode 100644 index ea3eeb8918c..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_scatter-marker-line-colorscales.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_shared_axes_subplots.json b/devtools/test_dashboard/testplots-2d/gl2d_shared_axes_subplots.json deleted file mode 100644 index 7f048fe335d..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_shared_axes_subplots.json +++ /dev/null @@ -1,24 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], y: [ 2, 3, 4 ], type: 'scattergl' }, - { x: [ 20, 30, 40 ], - y: [ 5, 5, 5 ], - xaxis: 'x2', - yaxis: 'y', - type: 'scattergl' }, - { x: [ 2, 3, 4 ], - y: [ 600, 700, 800 ], - xaxis: 'x', - yaxis: 'y3', - type: 'scattergl' }, - { x: [ 4000, 5000, 6000 ], - y: [ 7000, 8000, 9000 ], - xaxis: 'x4', - yaxis: 'y4', - type: 'scattergl' } ], - layout: - { xaxis: { domain: [ 0, 0.45 ] }, - yaxis: { domain: [ 0, 0.45 ] }, - xaxis4: { domain: [ 0.55, 1 ], anchor: 'y4' }, - xaxis2: { domain: [ 0.55, 1 ] }, - yaxis3: { domain: [ 0.55, 1 ] }, - yaxis4: { domain: [ 0.55, 1 ], anchor: 'x4' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_shared_axes_subplots.png b/devtools/test_dashboard/testplots-2d/gl2d_shared_axes_subplots.png deleted file mode 100644 index 9e91725b4bd..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_shared_axes_subplots.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_show_legend.json b/devtools/test_dashboard/testplots-2d/gl2d_show_legend.json deleted file mode 100644 index 63f548ef999..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_show_legend.json +++ /dev/null @@ -1,11 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 1, 2, 3 ], - name: 'First Trace', - showlegend: false, - type: 'scattergl' }, - { x: [ 0, 1, 2, 3 ], - y: [ 8, 4, 2, 0 ], - name: 'Second Trace', - showlegend: true, - type: 'scattergl' } ] } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_show_legend.png b/devtools/test_dashboard/testplots-2d/gl2d_show_legend.png deleted file mode 100644 index 562d67e8260..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_show_legend.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_simple_annotation.json b/devtools/test_dashboard/testplots-2d/gl2d_simple_annotation.json deleted file mode 100644 index 7382ae4c585..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_simple_annotation.json +++ /dev/null @@ -1,19 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 3, 2, 4, 3, 4, 6, 5 ], - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 4, 5, 1, 2, 2, 3, 4, 2 ], - type: 'scattergl' } ], - layout: - { showlegend: false, - annotations: - [ { x: 2, - y: 5, - xref: 'x', - yref: 'y', - text: 'Annotation Text', - showarrow: true, - arrowhead: 7, - ax: 0, - ay: -40 } ] } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_simple_annotation.png b/devtools/test_dashboard/testplots-2d/gl2d_simple_annotation.png deleted file mode 100644 index 7f7638294d2..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_simple_annotation.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_simple_inset.json b/devtools/test_dashboard/testplots-2d/gl2d_simple_inset.json deleted file mode 100644 index 6a39866bf28..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_simple_inset.json +++ /dev/null @@ -1,10 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], y: [ 4, 3, 2 ], type: 'scattergl' }, - { x: [ 20, 30, 40 ], - y: [ 30, 40, 50 ], - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' } ], - layout: - { yaxis2: { domain: [ 0.6, 0.95 ], anchor: 'x2' }, - xaxis2: { domain: [ 0.6, 0.95 ], anchor: 'y2' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_simple_inset.png b/devtools/test_dashboard/testplots-2d/gl2d_simple_inset.png deleted file mode 100644 index ec92cd296c9..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_simple_inset.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_simple_subplot.json b/devtools/test_dashboard/testplots-2d/gl2d_simple_subplot.json deleted file mode 100644 index e4453d66f18..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_simple_subplot.json +++ /dev/null @@ -1,11 +0,0 @@ -{ data: - [ { x: [ 1, 2, 3 ], y: [ 4, 5, 6 ], type: 'scattergl' }, - { x: [ 20, 30, 40 ], - y: [ 50, 60, 70 ], - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' } ], - layout: - { xaxis: { domain: [ 0, 0.45 ] }, - yaxis2: { anchor: 'x2' }, - xaxis2: { domain: [ 0.55, 1 ] } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_simple_subplot.png b/devtools/test_dashboard/testplots-2d/gl2d_simple_subplot.png deleted file mode 100644 index 5cc2eca0bd1..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_simple_subplot.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_size_margins.json b/devtools/test_dashboard/testplots-2d/gl2d_size_margins.json deleted file mode 100644 index 56963c23414..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_size_margins.json +++ /dev/null @@ -1,11 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - type: 'scattergl' } ], - layout: - { autosize: false, - width: 500, - height: 500, - margin: { l: 50, r: 50, b: 100, t: 100, pad: 4 }, - paper_bgcolor: '#7f7f7f', - plot_bgcolor: '#c7c7c7' } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_size_margins.png b/devtools/test_dashboard/testplots-2d/gl2d_size_margins.png deleted file mode 100644 index acca50e24c3..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_size_margins.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_stacked_coupled_subplots.json b/devtools/test_dashboard/testplots-2d/gl2d_stacked_coupled_subplots.json deleted file mode 100644 index cfc074b5808..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_stacked_coupled_subplots.json +++ /dev/null @@ -1,15 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], y: [ 10, 11, 12 ], type: 'scattergl' }, - { x: [ 2, 3, 4 ], - y: [ 100, 110, 120 ], - yaxis: 'y2', - type: 'scattergl' }, - { x: [ 3, 4, 5 ], - y: [ 1000, 1100, 1200 ], - yaxis: 'y3', - type: 'scattergl' } ], - layout: - { yaxis: { domain: [ 0, 0.33 ] }, - legend: { traceorder: 'reversed' }, - yaxis2: { domain: [ 0.33, 0.66 ] }, - yaxis3: { domain: [ 0.66, 1 ] } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_stacked_coupled_subplots.png b/devtools/test_dashboard/testplots-2d/gl2d_stacked_coupled_subplots.png deleted file mode 100644 index 736c989577d..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_stacked_coupled_subplots.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_stacked_subplots.json b/devtools/test_dashboard/testplots-2d/gl2d_stacked_subplots.json deleted file mode 100644 index 9a872c2ebe0..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_stacked_subplots.json +++ /dev/null @@ -1,19 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], y: [ 10, 11, 12 ], type: 'scattergl' }, - { x: [ 2, 3, 4 ], - y: [ 100, 110, 120 ], - xaxis: 'x2', - yaxis: 'y2', - type: 'scattergl' }, - { x: [ 3, 4, 5 ], - y: [ 1000, 1100, 1200 ], - xaxis: 'x3', - yaxis: 'y3', - type: 'scattergl' } ], - layout: - { yaxis: { domain: [ 0, 0.266 ] }, - legend: { traceorder: 'reversed' }, - xaxis3: { anchor: 'y3' }, - xaxis2: { anchor: 'y2' }, - yaxis2: { domain: [ 0.366, 0.633 ] }, - yaxis3: { domain: [ 0.733, 1 ] } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_stacked_subplots.png b/devtools/test_dashboard/testplots-2d/gl2d_stacked_subplots.png deleted file mode 100644 index 03de6f66c6c..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_stacked_subplots.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_styling_names.json b/devtools/test_dashboard/testplots-2d/gl2d_styling_names.json deleted file mode 100644 index c0627d90889..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_styling_names.json +++ /dev/null @@ -1,17 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - name: 'Name of Trace 1', - type: 'scattergl' }, - { x: [ 0, 1, 2, 3, 4, 5, 6, 7, 8 ], - y: [ 1, 0, 3, 2, 5, 4, 7, 6, 8 ], - name: 'Name of Trace 2', - type: 'scattergl' } ], - layout: - { title: 'Plot Title', - xaxis: - { titlefont: { color: '#7f7f7f', family: 'Courier New, monospace', size: 18 }, - title: 'x Axis' }, - yaxis: - { titlefont: { color: '#7f7f7f', family: 'Courier New, monospace', size: 18 }, - title: 'y Axis' } } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_styling_names.png b/devtools/test_dashboard/testplots-2d/gl2d_styling_names.png deleted file mode 100644 index 9ffc262d16a..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_styling_names.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_arrays.json b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_arrays.json deleted file mode 100644 index 921057042f6..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_arrays.json +++ /dev/null @@ -1,44 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 1, 1, 1 ], - mode: 'lines+markers+text', - name: 'Lines, Markers and Text', - text: [ 'Text A', 'Text B', 'Text C' ], - textfont: - { family: - [ 'Droid Sans, sans-serif', - 'Old Standard TT, serif', - 'PT Sans Narrow, sans-serif' ], - size: [ 20, 10, 25 ], - color: [ 'red', 'blue', 'green' ] }, - textposition: [ 'top right', 'top left', 'top left' ], - type: 'scattergl', - uid: '459c77' }, - { x: [ 0, 1, 2 ], - y: [ 2, 2, 2 ], - mode: 'lines+markers+text', - name: 'Lines and Text', - text: [ 'Text G', 'Text H', 'Text I' ], - textfont: - { family: - [ 'Droid Sans Mono, sans-serif', - 'Raleway, sans-serif', - 'Times New Roman, Times, serif' ], - size: [ 18, 20, 40 ], - color: [ 'black', '#d3d3d2', '#ed6100' ] }, - textposition: [ 'bottom right', 'bottom left', 'bottom left' ], - type: 'scattergl', - uid: 'f8361c' } ], - layout: - { showlegend: true, - xaxis: - { type: 'linear', - range: [ -0.1465172137710168, 2.1465172137710167 ], - autorange: true }, - yaxis: - { type: 'linear', - range: [ 0.9267515923566879, 2.073248407643312 ], - autorange: true }, - height: 450, - width: 1000, - autosize: true } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_arrays.png b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_arrays.png deleted file mode 100644 index 7619c6c7481..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_arrays.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_basic.json b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_basic.json deleted file mode 100644 index f3721a39c7e..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_basic.json +++ /dev/null @@ -1,23 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 1, 1, 1 ], - mode: 'lines+markers+text', - name: 'Lines, Markers and Text', - text: [ 'Text A', 'Text B', 'Text C' ], - textposition: 'top', - type: 'scattergl' }, - { x: [ 0, 1, 2 ], - y: [ 2, 2, 2 ], - mode: 'markers+text', - name: 'Markers and Text', - text: [ 'Text D', 'Text E', 'Text F' ], - textposition: 'bottom', - type: 'scattergl' }, - { x: [ 0, 1, 2 ], - y: [ 3, 3, 3 ], - mode: 'lines+text', - name: 'Lines and Text', - text: [ 'Text G', 'Text H', 'Text I' ], - textposition: 'bottom', - type: 'scattergl' } ], - layout: { showlegend: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_basic.png b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_basic.png deleted file mode 100644 index 5356937e71e..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_basic.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_invalid-arrays.json b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_invalid-arrays.json deleted file mode 100644 index 70ecdd5d53c..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_invalid-arrays.json +++ /dev/null @@ -1,44 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 1, 1, 1 ], - mode: 'lines+markers+text', - name: 'Lines, Markers and Text', - text: [ 'Text A', 'Text B', 'Text C' ], - textfont: - { family: - [ 'Droid Sans, sans-serif', - 'Old Standard TT, serif', - 'PT Sans Narrow, sans-serif' ], - size: [ 20, 'not-a-number', null ], - color: [ 'red', 'blue', 'green' ] }, - textposition: [ 'top right', 'top left', 'top left' ], - type: 'scattergl', - uid: 'a8eecb' }, - { x: [ 0, 1, 2 ], - y: [ 2, 2, 2 ], - mode: 'lines+markers+text', - name: 'Lines and Text', - text: [ 'Text G', 'Text H', 'Text I' ], - textfont: - { family: - [ 'Droid Sans Mono, sans-serif', - 'Raleway, sans-serif', - 'Times New Roman, Times, serif' ], - size: [ 18, 20, 40 ], - color: [ null, 'not-a-color', '#ed6100' ] }, - textposition: [ 'bottom right', 'bottom left', 'bottom left' ], - type: 'scattergl', - uid: 'cbf13d' } ], - layout: - { showlegend: true, - xaxis: - { type: 'linear', - range: [ -0.1465172137710168, 2.1465172137710167 ], - autorange: true }, - yaxis: - { type: 'linear', - range: [ 0.9267515923566879, 2.073248407643312 ], - autorange: true }, - height: 450, - width: 1000, - autosize: true } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_invalid-arrays.png b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_invalid-arrays.png deleted file mode 100644 index 3759f3bad01..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_invalid-arrays.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_styling.json b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_styling.json deleted file mode 100644 index 8b05e30528e..00000000000 --- a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_styling.json +++ /dev/null @@ -1,18 +0,0 @@ -{ data: - [ { x: [ 0, 1, 2 ], - y: [ 1, 1, 1 ], - mode: 'lines+markers+text', - name: 'Lines, Markers and Text', - text: [ 'Text A', 'Text B', 'Text C' ], - textfont: { family: 'Arial, sans-serif', size: 18, color: '#1f77b4' }, - textposition: 'top right', - type: 'scattergl' }, - { x: [ 0, 1, 2 ], - y: [ 2, 2, 2 ], - mode: 'lines+markers+text', - name: 'Lines and Text', - text: [ 'Text G', 'Text H', 'Text I' ], - textfont: { family: 'Arial, sans-serif', size: 18, color: '#ff7f0e' }, - textposition: 'bottom', - type: 'scattergl' } ], - layout: { showlegend: false } } \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_styling.png b/devtools/test_dashboard/testplots-2d/gl2d_text_chart_styling.png deleted file mode 100644 index 46ab8aa566e..00000000000 Binary files a/devtools/test_dashboard/testplots-2d/gl2d_text_chart_styling.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/autocolorscale.png b/devtools/test_dashboard/testplots-3d/autocolorscale.png deleted file mode 100644 index e99ac3b2941..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/autocolorscale.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/autorange-zero.png b/devtools/test_dashboard/testplots-3d/autorange-zero.png deleted file mode 100644 index 61312a1feb7..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/autorange-zero.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/bunny-hull.png b/devtools/test_dashboard/testplots-3d/bunny-hull.png deleted file mode 100644 index 5ccd743906a..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/bunny-hull.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/bunny.png b/devtools/test_dashboard/testplots-3d/bunny.png deleted file mode 100644 index 0d35f8f6732..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/bunny.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/chrisp-nan-1.png b/devtools/test_dashboard/testplots-3d/chrisp-nan-1.png deleted file mode 100644 index 6343c5a13e1..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/chrisp-nan-1.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/contour-lines.png b/devtools/test_dashboard/testplots-3d/contour-lines.png deleted file mode 100644 index 13e07ac62f3..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/contour-lines.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/convex-hull.png b/devtools/test_dashboard/testplots-3d/convex-hull.png deleted file mode 100644 index 0d35f8f6732..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/convex-hull.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/cufflinks.png b/devtools/test_dashboard/testplots-3d/cufflinks.png deleted file mode 100644 index 7148509cfcf..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/cufflinks.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/delaunay.png b/devtools/test_dashboard/testplots-3d/delaunay.png deleted file mode 100644 index e5403b8c251..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/delaunay.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/ibm-plot.png b/devtools/test_dashboard/testplots-3d/ibm-plot.png deleted file mode 100644 index 6bfb01b8fac..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/ibm-plot.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/log-axis-big.png b/devtools/test_dashboard/testplots-3d/log-axis-big.png deleted file mode 100644 index d5e0b14f4f2..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/log-axis-big.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/log-axis.png b/devtools/test_dashboard/testplots-3d/log-axis.png deleted file mode 100644 index af1ba9e304f..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/log-axis.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/marker-arrays.png b/devtools/test_dashboard/testplots-3d/marker-arrays.png deleted file mode 100644 index 47882cd0b29..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/marker-arrays.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/marker-color.png b/devtools/test_dashboard/testplots-3d/marker-color.png deleted file mode 100644 index c1ac36a0f74..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/marker-color.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/mirror-ticks.png b/devtools/test_dashboard/testplots-3d/mirror-ticks.png deleted file mode 100644 index f934fb84806..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/mirror-ticks.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/mkhull.js b/devtools/test_dashboard/testplots-3d/mkhull.js deleted file mode 100644 index 6eab6c60610..00000000000 --- a/devtools/test_dashboard/testplots-3d/mkhull.js +++ /dev/null @@ -1,6 +0,0 @@ -var bunny = require('./bunny.json'); -delete bunny.data[0].i; -delete bunny.data[0].j; -delete bunny.data[0].k; -bunny.data[0].alphahull = 0.0; -console.log(JSON.stringify(bunny)) diff --git a/devtools/test_dashboard/testplots-3d/multi-scene.png b/devtools/test_dashboard/testplots-3d/multi-scene.png deleted file mode 100644 index aa410e2ff1e..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/multi-scene.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/nan-holes.png b/devtools/test_dashboard/testplots-3d/nan-holes.png deleted file mode 100644 index c36c5a67ff2..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/nan-holes.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/opacity-scaling-spikes.png b/devtools/test_dashboard/testplots-3d/opacity-scaling-spikes.png deleted file mode 100644 index c96ee5e3670..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/opacity-scaling-spikes.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/opacity-surface.png b/devtools/test_dashboard/testplots-3d/opacity-surface.png deleted file mode 100644 index caecec9a398..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/opacity-surface.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/projection-traces.png b/devtools/test_dashboard/testplots-3d/projection-traces.png deleted file mode 100644 index 06f48d605c2..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/projection-traces.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/ribbons.png b/devtools/test_dashboard/testplots-3d/ribbons.png deleted file mode 100644 index 9f2e8a102d6..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/ribbons.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/scatter-date.png b/devtools/test_dashboard/testplots-3d/scatter-date.png deleted file mode 100644 index 319f2483fad..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/scatter-date.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/scatter3d-colorscale.png b/devtools/test_dashboard/testplots-3d/scatter3d-colorscale.png deleted file mode 100644 index 2a6f6252825..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/scatter3d-colorscale.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/snowden.png b/devtools/test_dashboard/testplots-3d/snowden.png deleted file mode 100644 index 0a97e441a9b..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/snowden.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/surface-lighting.png b/devtools/test_dashboard/testplots-3d/surface-lighting.png deleted file mode 100644 index fd358c082e1..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/surface-lighting.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/text-weirdness.png b/devtools/test_dashboard/testplots-3d/text-weirdness.png deleted file mode 100644 index bd115205d0c..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/text-weirdness.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/triangle.png b/devtools/test_dashboard/testplots-3d/triangle.png deleted file mode 100644 index 3ec141e285e..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/triangle.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/wire-surface.png b/devtools/test_dashboard/testplots-3d/wire-surface.png deleted file mode 100644 index 6b464272f93..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/wire-surface.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/xy-defined-ticks.png b/devtools/test_dashboard/testplots-3d/xy-defined-ticks.png deleted file mode 100644 index 8055e733df8..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/xy-defined-ticks.png and /dev/null differ diff --git a/devtools/test_dashboard/testplots-3d/z-range.png b/devtools/test_dashboard/testplots-3d/z-range.png deleted file mode 100644 index 50007473c20..00000000000 Binary files a/devtools/test_dashboard/testplots-3d/z-range.png and /dev/null differ diff --git a/package.json b/package.json index 4ad6afafcb8..a9dec47a3dc 100644 --- a/package.json +++ b/package.json @@ -46,13 +46,16 @@ "postinstall": "npm run preprocess", "bundle": "node tasks/bundle.js", "build": "npm run preprocess && npm run bundle", + "cibuild": "node tasks/cibundle.js", "watch": "node tasks/watch_plotly.js", "lint": "cd src && jshint . || true", "test-jasmine": "karma start test/jasmine/karma.conf.js", - "test-image": "echo TODO", + "citest-jasmine": "karma start test/jasmine/karma.ciconf.js", + "test-image": "./tasks/test_image.sh", "test": "npm run test-jasmine && npm test-image", "start-test_dashboard": "node devtools/test_dashboard/server.js", - "start-image_viewer": "node devtools/image_viewer/server.js" + "start-image_viewer": "node devtools/image_viewer/server.js", + "baseline": "./tasks/baseline.sh" }, "dependencies": { "3d-view": "^2.0.0", diff --git a/tasks/baseline.sh b/tasks/baseline.sh new file mode 100755 index 00000000000..02396268504 --- /dev/null +++ b/tasks/baseline.sh @@ -0,0 +1,31 @@ +#! /bin/bash +# +# TODO adapt this for Windows +# +# TODO add package.json config arguments to configure: +# - container name, +# - ports and +# - imageserver version +# +# =============================================================================== + +CONTAINER_NAME="imagetest" +IMAGE_NAME="registry.plot.ly:5000/imageserver" +IMAGE_VERSION="1.3.0" + +# Run docker container: +# +# docker run -d --name $CONTAINER_NAME \ +# -v $PWD/plotly.js:/var/www/streambed/image_server/plotly.js \ +# -p 9010:9010 -p 2022:22 \ +# $IMAGE_NAME:[$IMAGE_VERSION] + +CMD=( + "cd /var/www/streambed/image_server/plotly.js &&" + "cp -f test/image/index.html ../server_app/index.html &&" + "monit restart nw1 &&" + "sleep 5 &&" + "node test/image/make_baseline.js $1" +) + +docker exec -i $CONTAINER_NAME /bin/bash -c "${CMD[*]}" diff --git a/tasks/cibundle.js b/tasks/cibundle.js new file mode 100644 index 00000000000..1c37f3b7cd4 --- /dev/null +++ b/tasks/cibundle.js @@ -0,0 +1,43 @@ +var fs = require('fs'); + +var browserify = require('browserify'); + +var compressAttributes = require('./util/compress_attributes'); +var appendVersion = require('./util/append_version'); +var constants = require('./util/constants'); + +/* + * Trimmed down version of ./bundle.js for CI testing + * + * Outputs plotly.js bundle in build/ and + * plotly-geo-assets.js bundle in dist/ + * in accordance with test/image/index.html + * + */ + + +// Browserify plotly.js +browserify(constants.pathToPlotlySrc, { + standalone: 'Plotly', + transform: [compressAttributes] +}) +.bundle(function(err) { + if(err) throw err; +}) +.pipe(fs.createWriteStream(constants.pathToPlotlyBuild)) +.on('finish', function() { + appendVersion(constants.pathToPlotlyBuild, {object: 'Plotly'}); +}); + + +// Browserify the geo assets +browserify(constants.pathToPlotlyGeoAssetsSrc, { + standalone: 'PlotlyGeoAssets' +}) +.bundle(function(err) { + if(err) throw err; +}) +.pipe(fs.createWriteStream(constants.pathToPlotlyGeoAssetsDist)) +.on('finish', function() { + appendVersion(constants.pathToPlotlyGeoAssetsDist, {object: 'PlotlyGeoAssets'}); +}); diff --git a/tasks/test_image.sh b/tasks/test_image.sh new file mode 100755 index 00000000000..9dee5295017 --- /dev/null +++ b/tasks/test_image.sh @@ -0,0 +1,31 @@ +#! /bin/bash +# +# TODO adapt this for Windows +# +# TODO add package.json config arguments to configure: +# - container name, +# - ports and +# - imageserver version +# +# =============================================================================== + +CONTAINER_NAME="imagetest" +IMAGE_NAME="registry.plot.ly:5000/imageserver" +IMAGE_VERSION="1.3.0" + +# Run docker container: +# +# docker run -d --name $CONTAINER_NAME \ +# -v $PWD/plotly.js:/var/www/streambed/image_server/plotly.js \ +# -p 9010:9010 -p 2022:22 \ +# $IMAGE_NAME:[$IMAGE_VERSION] + +CMD=( + "cd /var/www/streambed/image_server/plotly.js &&" + "cp -f test/image/index.html ../server_app/index.html &&" + "monit restart nw1 &&" + "sleep 5 &&" + "node test/image/compare_pixels_test.js $1" +) + +docker exec -i $CONTAINER_NAME /bin/bash -c "${CMD[*]}" diff --git a/tasks/util/constants.js b/tasks/util/constants.js index 7782d6f88f8..4d62788e845 100644 --- a/tasks/util/constants.js +++ b/tasks/util/constants.js @@ -2,6 +2,7 @@ var path = require('path'); var pathToRoot = path.join(__dirname, '../../'); var pathToSrc = path.join(pathToRoot, 'src/'); +var pathToImageTest = path.join(pathToRoot, 'test/image'); var pathToDist = path.join(pathToRoot, 'dist/'); var pathToBuild = path.join(pathToRoot, 'build/'); @@ -30,6 +31,12 @@ module.exports = { pathToTestDashboardBundle: path.join(pathToBuild, 'test_dashboard-bundle.js'), pathToImageViewerBundle: path.join(pathToBuild, 'image_viewer-bundle.js'), + pathToTestImageMocks: path.join(pathToImageTest, 'mocks/'), + pathToTestImageBaselines: path.join(pathToImageTest, 'baselines/'), + pathToTestImages: path.join(pathToBuild, 'test_images/'), + pathToTestImagesDiff: path.join(pathToBuild, 'test_images_diff/'), + pathToTestImagesDiffList: path.join(pathToBuild, 'list_of_incorrect_images.txt'), + uglifyOptions: { fromString: true, mangle: true, diff --git a/tasks/util/get_image_request_options.js b/tasks/util/get_image_request_options.js new file mode 100644 index 00000000000..73cc9c31ed5 --- /dev/null +++ b/tasks/util/get_image_request_options.js @@ -0,0 +1,17 @@ +/* + * For image testing + * + * Give it a json object for the body, + * it'll return an options object ready for request(). + */ +module.exports = function getOptions(body, url) { + + var opts = { + url: url || 'http://localhost:9010/', + method: 'POST' + }; + + if (body) opts.body = JSON.stringify(body); + + return opts; +}; diff --git a/test/image/README.md b/test/image/README.md new file mode 100644 index 00000000000..200379425cb --- /dev/null +++ b/test/image/README.md @@ -0,0 +1,83 @@ +# plotly.js image testing +----- + +Test plotly.js with Plotly Image-Server docker container. + +### Run the container + +Under your `plotly.js` folder, run + +```bash +$ docker run -d --name imagetest \ + -v $PWD:/var/www/streambed/image_server/plotly.js \ + -p 9010:9010 -p 2022:22 plotly/imageserver:[version] +``` + +where `[version]` is the latest Plotly Image-Server docker container version +as listed on +[hub.docker.com](https://hub.docker.com/r/plotly/imageserver/tags/). + +### Run the tests + +Under your `plotly.js` folder, run + +```bash +$ npm run test-image +``` + +### SSH into docker + +```bash +$ ssh -p 2022 root@localhost # with password `root` +``` + +If you got this error: + +``` +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ +@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ +IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! +Someone could be eavesdropping on you right now (man-in-the-middle attack)! +It is also possible that a host key has just been changed. +The fingerprint for the ECDSA key sent by the remote host is +dd:1e:e0:95:8d:ef:06:b8:0f:2f. +Please contact your system administrator. +Add correct host key in /home/jh/.ssh/known_hosts to get rid of this message. +Offending ECDSA key in /home/jh/.ssh/known_hosts:104 + remove with: ssh-keygen -f "/home/jh/.ssh/known_hosts" -R [localhost]:2022 +ECDSA host key for [localhost]:2022 has changed and you have requested strict checking. +Host key verification failed. +``` +simply run + +```bash +$ ssh-keygen -f "${HOME}/.ssh/known_hosts" -R [localhost]:2022 +``` + +to remove host information. + + +### List all images + +```bash +docker images +``` + +### List all containers + +```bash +docker ps -a +``` + +### Stop container + +```bash +docker stop [container hash] +``` + +### Remove container + +```bash +docker rm [container hash] +``` diff --git a/test/image/baselines/0.png b/test/image/baselines/0.png index a39913ac20c..5133fb33e13 100644 Binary files a/test/image/baselines/0.png and b/test/image/baselines/0.png differ diff --git a/test/image/baselines/1.png b/test/image/baselines/1.png index 1f0907052ec..e6fb5157b2a 100644 Binary files a/test/image/baselines/1.png and b/test/image/baselines/1.png differ diff --git a/test/image/baselines/10.png b/test/image/baselines/10.png index 999d671af7a..7ad61fc3534 100644 Binary files a/test/image/baselines/10.png and b/test/image/baselines/10.png differ diff --git a/test/image/baselines/11.png b/test/image/baselines/11.png index 2a95ce56272..ed50cb35c92 100644 Binary files a/test/image/baselines/11.png and b/test/image/baselines/11.png differ diff --git a/test/image/baselines/12.png b/test/image/baselines/12.png index 3fcf48c96d6..48dbbde6e98 100644 Binary files a/test/image/baselines/12.png and b/test/image/baselines/12.png differ diff --git a/test/image/baselines/13.png b/test/image/baselines/13.png index f80392917de..535a8896af3 100644 Binary files a/test/image/baselines/13.png and b/test/image/baselines/13.png differ diff --git a/test/image/baselines/14.png b/test/image/baselines/14.png index 9131eaa2e2d..298dda9f858 100644 Binary files a/test/image/baselines/14.png and b/test/image/baselines/14.png differ diff --git a/test/image/baselines/15.png b/test/image/baselines/15.png index 276b27de218..277d718a46d 100644 Binary files a/test/image/baselines/15.png and b/test/image/baselines/15.png differ diff --git a/test/image/baselines/16.png b/test/image/baselines/16.png index 78a9585b1a6..446891b07b4 100644 Binary files a/test/image/baselines/16.png and b/test/image/baselines/16.png differ diff --git a/test/image/baselines/17.png b/test/image/baselines/17.png index 2fcc8f37105..1e098f1a02c 100644 Binary files a/test/image/baselines/17.png and b/test/image/baselines/17.png differ diff --git a/test/image/baselines/18.png b/test/image/baselines/18.png index f6e8e1ac1c5..fa9a76433a5 100644 Binary files a/test/image/baselines/18.png and b/test/image/baselines/18.png differ diff --git a/test/image/baselines/19.png b/test/image/baselines/19.png index 2cb48b84ea9..57bb753c15f 100644 Binary files a/test/image/baselines/19.png and b/test/image/baselines/19.png differ diff --git a/test/image/baselines/20.png b/test/image/baselines/20.png index dd7248195f4..ebc003d849f 100644 Binary files a/test/image/baselines/20.png and b/test/image/baselines/20.png differ diff --git a/test/image/baselines/21.png b/test/image/baselines/21.png index de1c1e08518..887f6319bfa 100644 Binary files a/test/image/baselines/21.png and b/test/image/baselines/21.png differ diff --git a/test/image/baselines/22.png b/test/image/baselines/22.png index c66a7405c3c..706636c7ecb 100644 Binary files a/test/image/baselines/22.png and b/test/image/baselines/22.png differ diff --git a/test/image/baselines/23.png b/test/image/baselines/23.png index 3a93b7ece3f..7d0c1c793bb 100644 Binary files a/test/image/baselines/23.png and b/test/image/baselines/23.png differ diff --git a/test/image/baselines/24.png b/test/image/baselines/24.png index 1f1e8a82ddf..532d9b6a055 100644 Binary files a/test/image/baselines/24.png and b/test/image/baselines/24.png differ diff --git a/test/image/baselines/25.png b/test/image/baselines/25.png index 03315381701..8b594601ba9 100644 Binary files a/test/image/baselines/25.png and b/test/image/baselines/25.png differ diff --git a/test/image/baselines/26.png b/test/image/baselines/26.png index 8c83c0bbca7..24dbeb6bddc 100644 Binary files a/test/image/baselines/26.png and b/test/image/baselines/26.png differ diff --git a/test/image/baselines/27.png b/test/image/baselines/27.png index 9cf8fa08c47..7eb41cc8ac9 100644 Binary files a/test/image/baselines/27.png and b/test/image/baselines/27.png differ diff --git a/test/image/baselines/28.png b/test/image/baselines/28.png index b87e54ac638..594cce0b7bd 100644 Binary files a/test/image/baselines/28.png and b/test/image/baselines/28.png differ diff --git a/test/image/baselines/29.png b/test/image/baselines/29.png index 86e7db934db..a90c21934ba 100644 Binary files a/test/image/baselines/29.png and b/test/image/baselines/29.png differ diff --git a/test/image/baselines/2dhistogram_contour_subplots.png b/test/image/baselines/2dhistogram_contour_subplots.png index 299effba6e1..c420434a89a 100644 Binary files a/test/image/baselines/2dhistogram_contour_subplots.png and b/test/image/baselines/2dhistogram_contour_subplots.png differ diff --git a/test/image/baselines/30.png b/test/image/baselines/30.png index d83fc4b6a90..e55ced25e11 100644 Binary files a/test/image/baselines/30.png and b/test/image/baselines/30.png differ diff --git a/test/image/baselines/31.png b/test/image/baselines/31.png index 40fd482f54c..7f73d4b4db0 100644 Binary files a/test/image/baselines/31.png and b/test/image/baselines/31.png differ diff --git a/test/image/baselines/32.png b/test/image/baselines/32.png index 11b9d9cf9ae..e5d91547778 100644 Binary files a/test/image/baselines/32.png and b/test/image/baselines/32.png differ diff --git a/test/image/baselines/4.png b/test/image/baselines/4.png index eabcc74ed95..e90ad7c9c00 100644 Binary files a/test/image/baselines/4.png and b/test/image/baselines/4.png differ diff --git a/test/image/baselines/5.png b/test/image/baselines/5.png index 43fd826c098..fa5d18564fa 100644 Binary files a/test/image/baselines/5.png and b/test/image/baselines/5.png differ diff --git a/test/image/baselines/6.png b/test/image/baselines/6.png index ea31985b18b..e05e5738fa5 100644 Binary files a/test/image/baselines/6.png and b/test/image/baselines/6.png differ diff --git a/test/image/baselines/7.png b/test/image/baselines/7.png index db8431332ea..f223320669d 100644 Binary files a/test/image/baselines/7.png and b/test/image/baselines/7.png differ diff --git a/test/image/baselines/8.png b/test/image/baselines/8.png index ef8882689bb..42556fb16e4 100644 Binary files a/test/image/baselines/8.png and b/test/image/baselines/8.png differ diff --git a/test/image/baselines/Blackbody_heatmap.png b/test/image/baselines/Blackbody_heatmap.png index 32fcf517811..887d541ed2a 100644 Binary files a/test/image/baselines/Blackbody_heatmap.png and b/test/image/baselines/Blackbody_heatmap.png differ diff --git a/test/image/baselines/Bluered_heatmap.png b/test/image/baselines/Bluered_heatmap.png index f7c5d2cc90a..3e099a5ea05 100644 Binary files a/test/image/baselines/Bluered_heatmap.png and b/test/image/baselines/Bluered_heatmap.png differ diff --git a/test/image/baselines/Earth_heatmap.png b/test/image/baselines/Earth_heatmap.png index c0e98af955a..d5776d6dffd 100644 Binary files a/test/image/baselines/Earth_heatmap.png and b/test/image/baselines/Earth_heatmap.png differ diff --git a/test/image/baselines/Electric_heatmap.png b/test/image/baselines/Electric_heatmap.png index 98a2e481ea8..3652f1ec584 100644 Binary files a/test/image/baselines/Electric_heatmap.png and b/test/image/baselines/Electric_heatmap.png differ diff --git a/test/image/baselines/Greens_heatmap.png b/test/image/baselines/Greens_heatmap.png index 6271310c212..9d95535b404 100644 Binary files a/test/image/baselines/Greens_heatmap.png and b/test/image/baselines/Greens_heatmap.png differ diff --git a/test/image/baselines/Greys_heatmap.png b/test/image/baselines/Greys_heatmap.png index 84cf7386272..a8b540f497c 100644 Binary files a/test/image/baselines/Greys_heatmap.png and b/test/image/baselines/Greys_heatmap.png differ diff --git a/test/image/baselines/Hot_heatmap.png b/test/image/baselines/Hot_heatmap.png index 79ccc7a609c..ddacbd04b0f 100644 Binary files a/test/image/baselines/Hot_heatmap.png and b/test/image/baselines/Hot_heatmap.png differ diff --git a/test/image/baselines/Jet_heatmap.png b/test/image/baselines/Jet_heatmap.png index 1664b98545e..7386afde291 100644 Binary files a/test/image/baselines/Jet_heatmap.png and b/test/image/baselines/Jet_heatmap.png differ diff --git a/test/image/baselines/Picnic_heatmap.png b/test/image/baselines/Picnic_heatmap.png index a1161f4a9ca..e3679bd20f9 100644 Binary files a/test/image/baselines/Picnic_heatmap.png and b/test/image/baselines/Picnic_heatmap.png differ diff --git a/test/image/baselines/Portland_heatmap.png b/test/image/baselines/Portland_heatmap.png index 7177c8899e9..e4f7c0dc9eb 100644 Binary files a/test/image/baselines/Portland_heatmap.png and b/test/image/baselines/Portland_heatmap.png differ diff --git a/test/image/baselines/RdBu_heatmap.png b/test/image/baselines/RdBu_heatmap.png index 2e00acd19fe..bd111e071e3 100644 Binary files a/test/image/baselines/RdBu_heatmap.png and b/test/image/baselines/RdBu_heatmap.png differ diff --git a/test/image/baselines/Viridis_heatmap.png b/test/image/baselines/Viridis_heatmap.png index 05a97f33264..dfd5dcb4def 100644 Binary files a/test/image/baselines/Viridis_heatmap.png and b/test/image/baselines/Viridis_heatmap.png differ diff --git a/test/image/baselines/YIGnBu_heatmap.png b/test/image/baselines/YIGnBu_heatmap.png index 3755d388277..597438d9ddc 100644 Binary files a/test/image/baselines/YIGnBu_heatmap.png and b/test/image/baselines/YIGnBu_heatmap.png differ diff --git a/test/image/baselines/YIOrRd_heatmap.png b/test/image/baselines/YIOrRd_heatmap.png index f20949f7b04..79e104bee10 100644 Binary files a/test/image/baselines/YIOrRd_heatmap.png and b/test/image/baselines/YIOrRd_heatmap.png differ diff --git a/test/image/baselines/annotations-autorange.png b/test/image/baselines/annotations-autorange.png index e16797da0d8..064f9272687 100644 Binary files a/test/image/baselines/annotations-autorange.png and b/test/image/baselines/annotations-autorange.png differ diff --git a/test/image/baselines/annotations.png b/test/image/baselines/annotations.png index 576100a6942..79ebd6f5a89 100644 Binary files a/test/image/baselines/annotations.png and b/test/image/baselines/annotations.png differ diff --git a/test/image/baselines/autorange-tozero-rangemode.png b/test/image/baselines/autorange-tozero-rangemode.png index c4946dc4fc7..cb57b380158 100644 Binary files a/test/image/baselines/autorange-tozero-rangemode.png and b/test/image/baselines/autorange-tozero-rangemode.png differ diff --git a/test/image/baselines/axes-autotype-empty.png b/test/image/baselines/axes-autotype-empty.png index 394a6ba68eb..803acf873c2 100644 Binary files a/test/image/baselines/axes-autotype-empty.png and b/test/image/baselines/axes-autotype-empty.png differ diff --git a/test/image/baselines/axes-ticks.png b/test/image/baselines/axes-ticks.png index c3fda645625..2f53bf1ab3e 100644 Binary files a/test/image/baselines/axes-ticks.png and b/test/image/baselines/axes-ticks.png differ diff --git a/test/image/baselines/axes_booleans.png b/test/image/baselines/axes_booleans.png index a774283230f..b4969f1ab8e 100644 Binary files a/test/image/baselines/axes_booleans.png and b/test/image/baselines/axes_booleans.png differ diff --git a/test/image/baselines/axes_enumerated_ticks.png b/test/image/baselines/axes_enumerated_ticks.png index 4497aaeaa11..f6bed5e88b8 100644 Binary files a/test/image/baselines/axes_enumerated_ticks.png and b/test/image/baselines/axes_enumerated_ticks.png differ diff --git a/test/image/baselines/axes_free_default.png b/test/image/baselines/axes_free_default.png index 513aed789d9..ef8afc82482 100644 Binary files a/test/image/baselines/axes_free_default.png and b/test/image/baselines/axes_free_default.png differ diff --git a/test/image/baselines/axes_labels.png b/test/image/baselines/axes_labels.png index 840bd53e3f9..e0d5d95c920 100644 Binary files a/test/image/baselines/axes_labels.png and b/test/image/baselines/axes_labels.png differ diff --git a/test/image/baselines/axes_lines.png b/test/image/baselines/axes_lines.png index fa6e4bdf9c6..75302915254 100644 Binary files a/test/image/baselines/axes_lines.png and b/test/image/baselines/axes_lines.png differ diff --git a/test/image/baselines/axes_range_manual.png b/test/image/baselines/axes_range_manual.png index 1968c6ad1ec..a53988fba67 100644 Binary files a/test/image/baselines/axes_range_manual.png and b/test/image/baselines/axes_range_manual.png differ diff --git a/test/image/baselines/axes_range_mode.png b/test/image/baselines/axes_range_mode.png index 85e998611d2..04d7dab5de3 100644 Binary files a/test/image/baselines/axes_range_mode.png and b/test/image/baselines/axes_range_mode.png differ diff --git a/test/image/baselines/axes_range_type.png b/test/image/baselines/axes_range_type.png index e14baca0a8e..7f15a3325a4 100644 Binary files a/test/image/baselines/axes_range_type.png and b/test/image/baselines/axes_range_type.png differ diff --git a/test/image/baselines/axes_reversed.png b/test/image/baselines/axes_reversed.png index c101eeeaa90..5f93712d3f8 100644 Binary files a/test/image/baselines/axes_reversed.png and b/test/image/baselines/axes_reversed.png differ diff --git a/test/image/baselines/bar-colorscale-colorbar.png b/test/image/baselines/bar-colorscale-colorbar.png index 38c610ca8e0..eebca727b4f 100644 Binary files a/test/image/baselines/bar-colorscale-colorbar.png and b/test/image/baselines/bar-colorscale-colorbar.png differ diff --git a/test/image/baselines/bar-marker-line-colorscales.png b/test/image/baselines/bar-marker-line-colorscales.png index b2e95f6f281..39c1466761a 100644 Binary files a/test/image/baselines/bar-marker-line-colorscales.png and b/test/image/baselines/bar-marker-line-colorscales.png differ diff --git a/test/image/baselines/bar_group_percent.png b/test/image/baselines/bar_group_percent.png index 52914ae6337..45e909bbb0a 100644 Binary files a/test/image/baselines/bar_group_percent.png and b/test/image/baselines/bar_group_percent.png differ diff --git a/test/image/baselines/bar_line.png b/test/image/baselines/bar_line.png index 4778025481e..3d880ccccbf 100644 Binary files a/test/image/baselines/bar_line.png and b/test/image/baselines/bar_line.png differ diff --git a/test/image/baselines/bar_marker_array.png b/test/image/baselines/bar_marker_array.png index b4a967e2e0c..69e75166fbf 100644 Binary files a/test/image/baselines/bar_marker_array.png and b/test/image/baselines/bar_marker_array.png differ diff --git a/test/image/baselines/bar_stackto1.png b/test/image/baselines/bar_stackto1.png index e2074b150fd..a2a0b38089c 100644 Binary files a/test/image/baselines/bar_stackto1.png and b/test/image/baselines/bar_stackto1.png differ diff --git a/test/image/baselines/bar_stackto100_negative.png b/test/image/baselines/bar_stackto100_negative.png index fd677d75644..86300d8c214 100644 Binary files a/test/image/baselines/bar_stackto100_negative.png and b/test/image/baselines/bar_stackto100_negative.png differ diff --git a/test/image/baselines/basic_area.png b/test/image/baselines/basic_area.png index 987c7b4044a..3707ed0b84f 100644 Binary files a/test/image/baselines/basic_area.png and b/test/image/baselines/basic_area.png differ diff --git a/test/image/baselines/basic_bar.png b/test/image/baselines/basic_bar.png index 82cce421d34..3f35ac2353f 100644 Binary files a/test/image/baselines/basic_bar.png and b/test/image/baselines/basic_bar.png differ diff --git a/test/image/baselines/basic_error_bar.png b/test/image/baselines/basic_error_bar.png index b5ad7341f56..8af2d64e645 100644 Binary files a/test/image/baselines/basic_error_bar.png and b/test/image/baselines/basic_error_bar.png differ diff --git a/test/image/baselines/basic_heatmap.png b/test/image/baselines/basic_heatmap.png index aac77226391..1c60ab8cd1f 100644 Binary files a/test/image/baselines/basic_heatmap.png and b/test/image/baselines/basic_heatmap.png differ diff --git a/test/image/baselines/basic_line.png b/test/image/baselines/basic_line.png index a6d51bfa046..186174010cb 100644 Binary files a/test/image/baselines/basic_line.png and b/test/image/baselines/basic_line.png differ diff --git a/test/image/baselines/benchmarks.png b/test/image/baselines/benchmarks.png index 0a1683e0dca..4d4cd85983f 100644 Binary files a/test/image/baselines/benchmarks.png and b/test/image/baselines/benchmarks.png differ diff --git a/test/image/baselines/box_grouped.png b/test/image/baselines/box_grouped.png index 16437f95e9a..25a088e51b6 100644 Binary files a/test/image/baselines/box_grouped.png and b/test/image/baselines/box_grouped.png differ diff --git a/test/image/baselines/box_grouped_horz.png b/test/image/baselines/box_grouped_horz.png index f94774ed936..64c959bfbe2 100644 Binary files a/test/image/baselines/box_grouped_horz.png and b/test/image/baselines/box_grouped_horz.png differ diff --git a/test/image/baselines/box_plot_jitter.png b/test/image/baselines/box_plot_jitter.png index aa331dbc6c5..7c533d7c983 100644 Binary files a/test/image/baselines/box_plot_jitter.png and b/test/image/baselines/box_plot_jitter.png differ diff --git a/test/image/baselines/box_with-empty-1st-trace.png b/test/image/baselines/box_with-empty-1st-trace.png index 75227fb8701..9910ea1ba1f 100644 Binary files a/test/image/baselines/box_with-empty-1st-trace.png and b/test/image/baselines/box_with-empty-1st-trace.png differ diff --git a/test/image/baselines/boxplots_outlierColorDflt.png b/test/image/baselines/boxplots_outlierColorDflt.png index 381403e5928..8c1d85d3d2e 100644 Binary files a/test/image/baselines/boxplots_outlierColorDflt.png and b/test/image/baselines/boxplots_outlierColorDflt.png differ diff --git a/test/image/baselines/boxplots_undefined_vals.png b/test/image/baselines/boxplots_undefined_vals.png index a569e39d1fd..ea30fffdd91 100644 Binary files a/test/image/baselines/boxplots_undefined_vals.png and b/test/image/baselines/boxplots_undefined_vals.png differ diff --git a/test/image/baselines/bubble_markersize0.png b/test/image/baselines/bubble_markersize0.png index f7f84b91fc8..5d88235242f 100644 Binary files a/test/image/baselines/bubble_markersize0.png and b/test/image/baselines/bubble_markersize0.png differ diff --git a/test/image/baselines/bubble_nonnumeric-sizes.png b/test/image/baselines/bubble_nonnumeric-sizes.png index 177f0b0d7bf..7c15676b2c5 100644 Binary files a/test/image/baselines/bubble_nonnumeric-sizes.png and b/test/image/baselines/bubble_nonnumeric-sizes.png differ diff --git a/test/image/baselines/bubblechart.png b/test/image/baselines/bubblechart.png index 4d5abbb7ac4..8b163685f7f 100644 Binary files a/test/image/baselines/bubblechart.png and b/test/image/baselines/bubblechart.png differ diff --git a/test/image/baselines/category_dtick_3.png b/test/image/baselines/category_dtick_3.png index 4f795eb2bc2..1df0879cdd3 100644 Binary files a/test/image/baselines/category_dtick_3.png and b/test/image/baselines/category_dtick_3.png differ diff --git a/test/image/baselines/colorbar_enumerated_ticks.png b/test/image/baselines/colorbar_enumerated_ticks.png index d3028659af8..30ece2b78f9 100644 Binary files a/test/image/baselines/colorbar_enumerated_ticks.png and b/test/image/baselines/colorbar_enumerated_ticks.png differ diff --git a/test/image/baselines/colorbar_tick_prefix_suffix.png b/test/image/baselines/colorbar_tick_prefix_suffix.png index 00db5b9c4e4..2d78db5304d 100644 Binary files a/test/image/baselines/colorbar_tick_prefix_suffix.png and b/test/image/baselines/colorbar_tick_prefix_suffix.png differ diff --git a/test/image/baselines/colorbar_tickformat.png b/test/image/baselines/colorbar_tickformat.png index 4e698e7b3b8..2d63b13c41a 100644 Binary files a/test/image/baselines/colorbar_tickformat.png and b/test/image/baselines/colorbar_tickformat.png differ diff --git a/test/image/baselines/connectgaps_2d.png b/test/image/baselines/connectgaps_2d.png index d0792b24df5..2e5204661fd 100644 Binary files a/test/image/baselines/connectgaps_2d.png and b/test/image/baselines/connectgaps_2d.png differ diff --git a/test/image/baselines/contour_match_edges.png b/test/image/baselines/contour_match_edges.png index a4785c939d5..a0020dbe4d0 100644 Binary files a/test/image/baselines/contour_match_edges.png and b/test/image/baselines/contour_match_edges.png differ diff --git a/test/image/baselines/contour_nolines.png b/test/image/baselines/contour_nolines.png index 032a8e25bfc..da9ded0b9dc 100644 Binary files a/test/image/baselines/contour_nolines.png and b/test/image/baselines/contour_nolines.png differ diff --git a/test/image/baselines/contour_scatter.png b/test/image/baselines/contour_scatter.png index b113d2a985a..593077b6c0b 100644 Binary files a/test/image/baselines/contour_scatter.png and b/test/image/baselines/contour_scatter.png differ diff --git a/test/image/baselines/contour_transposed-irregular.png b/test/image/baselines/contour_transposed-irregular.png index d3b23b17e4a..c71f3c58352 100644 Binary files a/test/image/baselines/contour_transposed-irregular.png and b/test/image/baselines/contour_transposed-irregular.png differ diff --git a/test/image/baselines/contour_transposed.png b/test/image/baselines/contour_transposed.png index 8b58576fb2e..fe64b0bafeb 100644 Binary files a/test/image/baselines/contour_transposed.png and b/test/image/baselines/contour_transposed.png differ diff --git a/test/image/baselines/contour_valid_ses.png b/test/image/baselines/contour_valid_ses.png index 774436a0f65..3e44ef7efef 100644 Binary files a/test/image/baselines/contour_valid_ses.png and b/test/image/baselines/contour_valid_ses.png differ diff --git a/test/image/baselines/contour_xyz-gaps-on-sides.png b/test/image/baselines/contour_xyz-gaps-on-sides.png index 7daf1ea186a..fd0177c4404 100644 Binary files a/test/image/baselines/contour_xyz-gaps-on-sides.png and b/test/image/baselines/contour_xyz-gaps-on-sides.png differ diff --git a/test/image/baselines/custom_colorscale.png b/test/image/baselines/custom_colorscale.png index 23417469a90..339f45bf7be 100644 Binary files a/test/image/baselines/custom_colorscale.png and b/test/image/baselines/custom_colorscale.png differ diff --git a/test/image/baselines/custom_size_subplot.png b/test/image/baselines/custom_size_subplot.png index 1bc5b2d293b..6e080840bd1 100644 Binary files a/test/image/baselines/custom_size_subplot.png and b/test/image/baselines/custom_size_subplot.png differ diff --git a/test/image/baselines/date_axes.png b/test/image/baselines/date_axes.png index 4d38e07b08e..7d330eadcb2 100644 Binary files a/test/image/baselines/date_axes.png and b/test/image/baselines/date_axes.png differ diff --git a/test/image/baselines/date_histogram.png b/test/image/baselines/date_histogram.png index f6a17f034fe..9d38b322d04 100644 Binary files a/test/image/baselines/date_histogram.png and b/test/image/baselines/date_histogram.png differ diff --git a/test/image/baselines/empty.png b/test/image/baselines/empty.png index 9d8cca731d3..6e9598c9fa5 100644 Binary files a/test/image/baselines/empty.png and b/test/image/baselines/empty.png differ diff --git a/test/image/baselines/error_bar_asymmetric_array.png b/test/image/baselines/error_bar_asymmetric_array.png index 64aba465d26..795fb4f489a 100644 Binary files a/test/image/baselines/error_bar_asymmetric_array.png and b/test/image/baselines/error_bar_asymmetric_array.png differ diff --git a/test/image/baselines/error_bar_asymmetric_constant.png b/test/image/baselines/error_bar_asymmetric_constant.png index 953928220bf..8b9ce15a0c1 100644 Binary files a/test/image/baselines/error_bar_asymmetric_constant.png and b/test/image/baselines/error_bar_asymmetric_constant.png differ diff --git a/test/image/baselines/error_bar_bar.png b/test/image/baselines/error_bar_bar.png index 0a8b9bc3f81..5fb87aca20d 100644 Binary files a/test/image/baselines/error_bar_bar.png and b/test/image/baselines/error_bar_bar.png differ diff --git a/test/image/baselines/error_bar_horizontal.png b/test/image/baselines/error_bar_horizontal.png index dad907ce1ab..32916efe472 100644 Binary files a/test/image/baselines/error_bar_horizontal.png and b/test/image/baselines/error_bar_horizontal.png differ diff --git a/test/image/baselines/error_bar_style.png b/test/image/baselines/error_bar_style.png index 8fb568ffcd3..a93648a3237 100644 Binary files a/test/image/baselines/error_bar_style.png and b/test/image/baselines/error_bar_style.png differ diff --git a/test/image/baselines/fonts.png b/test/image/baselines/fonts.png index e9e0b29215b..8e802dd4ea9 100644 Binary files a/test/image/baselines/fonts.png and b/test/image/baselines/fonts.png differ diff --git a/test/image/baselines/geo_africa-insets.png b/test/image/baselines/geo_africa-insets.png index fec4d39fa8a..b23c20e778e 100644 Binary files a/test/image/baselines/geo_africa-insets.png and b/test/image/baselines/geo_africa-insets.png differ diff --git a/test/image/baselines/geo_bg-color.png b/test/image/baselines/geo_bg-color.png index 4093b89582f..016984c72d7 100644 Binary files a/test/image/baselines/geo_bg-color.png and b/test/image/baselines/geo_bg-color.png differ diff --git a/test/image/baselines/geo_big-frame.png b/test/image/baselines/geo_big-frame.png index 91beef11910..cea96bd27b7 100644 Binary files a/test/image/baselines/geo_big-frame.png and b/test/image/baselines/geo_big-frame.png differ diff --git a/test/image/baselines/geo_bubbles-colorscales.png b/test/image/baselines/geo_bubbles-colorscales.png index 5ea1997ce50..5c2c251addd 100644 Binary files a/test/image/baselines/geo_bubbles-colorscales.png and b/test/image/baselines/geo_bubbles-colorscales.png differ diff --git a/test/image/baselines/geo_bubbles-sizeref.png b/test/image/baselines/geo_bubbles-sizeref.png index d19a463163e..43d02b1f095 100644 Binary files a/test/image/baselines/geo_bubbles-sizeref.png and b/test/image/baselines/geo_bubbles-sizeref.png differ diff --git a/test/image/baselines/geo_canadian-cites.png b/test/image/baselines/geo_canadian-cites.png index f98d9824dcd..81771829c15 100644 Binary files a/test/image/baselines/geo_canadian-cites.png and b/test/image/baselines/geo_canadian-cites.png differ diff --git a/test/image/baselines/geo_choropleth-text.png b/test/image/baselines/geo_choropleth-text.png index 25859700543..8ef3a928b00 100644 Binary files a/test/image/baselines/geo_choropleth-text.png and b/test/image/baselines/geo_choropleth-text.png differ diff --git a/test/image/baselines/geo_choropleth-usa.png b/test/image/baselines/geo_choropleth-usa.png index a5bb2f4d4d3..73e8086453f 100644 Binary files a/test/image/baselines/geo_choropleth-usa.png and b/test/image/baselines/geo_choropleth-usa.png differ diff --git a/test/image/baselines/geo_conic-conformal.png b/test/image/baselines/geo_conic-conformal.png index b84cb19fe1c..eb8547b0b48 100644 Binary files a/test/image/baselines/geo_conic-conformal.png and b/test/image/baselines/geo_conic-conformal.png differ diff --git a/test/image/baselines/geo_country-names-text-chart.png b/test/image/baselines/geo_country-names-text-chart.png index e5b579313bc..259bba4bc9b 100644 Binary files a/test/image/baselines/geo_country-names-text-chart.png and b/test/image/baselines/geo_country-names-text-chart.png differ diff --git a/test/image/baselines/geo_country-names.png b/test/image/baselines/geo_country-names.png index 654861b0592..63f56d3e117 100644 Binary files a/test/image/baselines/geo_country-names.png and b/test/image/baselines/geo_country-names.png differ diff --git a/test/image/baselines/geo_custom-colorscale.png b/test/image/baselines/geo_custom-colorscale.png index 338585e277e..0c3070d92b8 100644 Binary files a/test/image/baselines/geo_custom-colorscale.png and b/test/image/baselines/geo_custom-colorscale.png differ diff --git a/test/image/baselines/geo_europe-bubbles.png b/test/image/baselines/geo_europe-bubbles.png index 1428ea4500f..81b0f4df828 100644 Binary files a/test/image/baselines/geo_europe-bubbles.png and b/test/image/baselines/geo_europe-bubbles.png differ diff --git a/test/image/baselines/geo_first.png b/test/image/baselines/geo_first.png index 758083ec9e4..eafb5102326 100644 Binary files a/test/image/baselines/geo_first.png and b/test/image/baselines/geo_first.png differ diff --git a/test/image/baselines/geo_kavrayskiy7.png b/test/image/baselines/geo_kavrayskiy7.png index 2602e15869c..0d5c26d9a85 100644 Binary files a/test/image/baselines/geo_kavrayskiy7.png and b/test/image/baselines/geo_kavrayskiy7.png differ diff --git a/test/image/baselines/geo_legendonly.png b/test/image/baselines/geo_legendonly.png index db258fa5660..caa3a04d6f2 100644 Binary files a/test/image/baselines/geo_legendonly.png and b/test/image/baselines/geo_legendonly.png differ diff --git a/test/image/baselines/geo_multi-geos.png b/test/image/baselines/geo_multi-geos.png index d9d29f56105..6409d1099eb 100644 Binary files a/test/image/baselines/geo_multi-geos.png and b/test/image/baselines/geo_multi-geos.png differ diff --git a/test/image/baselines/geo_multiple-usa-choropleths.png b/test/image/baselines/geo_multiple-usa-choropleths.png index fca8286d240..bf02461a9a5 100644 Binary files a/test/image/baselines/geo_multiple-usa-choropleths.png and b/test/image/baselines/geo_multiple-usa-choropleths.png differ diff --git a/test/image/baselines/geo_orthographic.png b/test/image/baselines/geo_orthographic.png index 92f1793ef0b..0fd54ffd8ee 100644 Binary files a/test/image/baselines/geo_orthographic.png and b/test/image/baselines/geo_orthographic.png differ diff --git a/test/image/baselines/geo_scattergeo-locations.png b/test/image/baselines/geo_scattergeo-locations.png index fc7a3e7da3f..60b48b26e15 100644 Binary files a/test/image/baselines/geo_scattergeo-locations.png and b/test/image/baselines/geo_scattergeo-locations.png differ diff --git a/test/image/baselines/geo_second.png b/test/image/baselines/geo_second.png index ad77b8409ad..3f7f9cfa7cd 100644 Binary files a/test/image/baselines/geo_second.png and b/test/image/baselines/geo_second.png differ diff --git a/test/image/baselines/geo_stereographic.png b/test/image/baselines/geo_stereographic.png index 14d7202ccb4..c655002b29f 100644 Binary files a/test/image/baselines/geo_stereographic.png and b/test/image/baselines/geo_stereographic.png differ diff --git a/test/image/baselines/geo_text_chart_arrays.png b/test/image/baselines/geo_text_chart_arrays.png index 26e39afa471..fdd95f847b4 100644 Binary files a/test/image/baselines/geo_text_chart_arrays.png and b/test/image/baselines/geo_text_chart_arrays.png differ diff --git a/test/image/baselines/geo_usa-states.png b/test/image/baselines/geo_usa-states.png index f8c90ce0140..805eb01f612 100644 Binary files a/test/image/baselines/geo_usa-states.png and b/test/image/baselines/geo_usa-states.png differ diff --git a/test/image/baselines/gl2d_10.png b/test/image/baselines/gl2d_10.png new file mode 100644 index 00000000000..ae7e4a3542d Binary files /dev/null and b/test/image/baselines/gl2d_10.png differ diff --git a/test/image/baselines/gl2d_12.png b/test/image/baselines/gl2d_12.png new file mode 100644 index 00000000000..353c8471ff4 Binary files /dev/null and b/test/image/baselines/gl2d_12.png differ diff --git a/test/image/baselines/gl2d_14.png b/test/image/baselines/gl2d_14.png new file mode 100644 index 00000000000..d9910467914 Binary files /dev/null and b/test/image/baselines/gl2d_14.png differ diff --git a/test/image/baselines/gl2d_17.png b/test/image/baselines/gl2d_17.png new file mode 100644 index 00000000000..3e282cd2e0d Binary files /dev/null and b/test/image/baselines/gl2d_17.png differ diff --git a/test/image/baselines/gl2d_22.png b/test/image/baselines/gl2d_22.png new file mode 100644 index 00000000000..613d7e9528a Binary files /dev/null and b/test/image/baselines/gl2d_22.png differ diff --git a/test/image/baselines/gl2d_24.png b/test/image/baselines/gl2d_24.png new file mode 100644 index 00000000000..58d31864a24 Binary files /dev/null and b/test/image/baselines/gl2d_24.png differ diff --git a/test/image/baselines/gl2d_28.png b/test/image/baselines/gl2d_28.png new file mode 100644 index 00000000000..bf2a468f429 Binary files /dev/null and b/test/image/baselines/gl2d_28.png differ diff --git a/test/image/baselines/gl2d_30.png b/test/image/baselines/gl2d_30.png new file mode 100644 index 00000000000..409b02d7406 Binary files /dev/null and b/test/image/baselines/gl2d_30.png differ diff --git a/test/image/baselines/gl2d_32.png b/test/image/baselines/gl2d_32.png new file mode 100644 index 00000000000..f596e586914 Binary files /dev/null and b/test/image/baselines/gl2d_32.png differ diff --git a/test/image/baselines/gl2d_axes_booleans.png b/test/image/baselines/gl2d_axes_booleans.png new file mode 100644 index 00000000000..7664d3d8d66 Binary files /dev/null and b/test/image/baselines/gl2d_axes_booleans.png differ diff --git a/test/image/baselines/gl2d_axes_labels.png b/test/image/baselines/gl2d_axes_labels.png new file mode 100644 index 00000000000..d062806a3e7 Binary files /dev/null and b/test/image/baselines/gl2d_axes_labels.png differ diff --git a/test/image/baselines/gl2d_axes_lines.png b/test/image/baselines/gl2d_axes_lines.png new file mode 100644 index 00000000000..75f02a0e010 Binary files /dev/null and b/test/image/baselines/gl2d_axes_lines.png differ diff --git a/test/image/baselines/gl2d_axes_range_manual.png b/test/image/baselines/gl2d_axes_range_manual.png new file mode 100644 index 00000000000..3b298f02f87 Binary files /dev/null and b/test/image/baselines/gl2d_axes_range_manual.png differ diff --git a/test/image/baselines/gl2d_axes_range_mode.png b/test/image/baselines/gl2d_axes_range_mode.png new file mode 100644 index 00000000000..12bc34ccb98 Binary files /dev/null and b/test/image/baselines/gl2d_axes_range_mode.png differ diff --git a/test/image/baselines/gl2d_axes_range_type.png b/test/image/baselines/gl2d_axes_range_type.png new file mode 100644 index 00000000000..e5c002456f1 Binary files /dev/null and b/test/image/baselines/gl2d_axes_range_type.png differ diff --git a/test/image/baselines/gl2d_basic_error_bar.png b/test/image/baselines/gl2d_basic_error_bar.png new file mode 100644 index 00000000000..1e220ece3e2 Binary files /dev/null and b/test/image/baselines/gl2d_basic_error_bar.png differ diff --git a/test/image/baselines/gl2d_bubble_markersize0.png b/test/image/baselines/gl2d_bubble_markersize0.png new file mode 100644 index 00000000000..9314bb4c86f Binary files /dev/null and b/test/image/baselines/gl2d_bubble_markersize0.png differ diff --git a/test/image/baselines/gl2d_bubble_nonnumeric-sizes.png b/test/image/baselines/gl2d_bubble_nonnumeric-sizes.png new file mode 100644 index 00000000000..c0fb3c573bc Binary files /dev/null and b/test/image/baselines/gl2d_bubble_nonnumeric-sizes.png differ diff --git a/test/image/baselines/gl2d_date_axes.png b/test/image/baselines/gl2d_date_axes.png new file mode 100644 index 00000000000..6f7f8406979 Binary files /dev/null and b/test/image/baselines/gl2d_date_axes.png differ diff --git a/test/image/baselines/gl2d_error_bar_asymmetric_array.png b/test/image/baselines/gl2d_error_bar_asymmetric_array.png new file mode 100644 index 00000000000..dab3799fa08 Binary files /dev/null and b/test/image/baselines/gl2d_error_bar_asymmetric_array.png differ diff --git a/test/image/baselines/gl2d_error_bar_asymmetric_constant.png b/test/image/baselines/gl2d_error_bar_asymmetric_constant.png new file mode 100644 index 00000000000..c2945ebd687 Binary files /dev/null and b/test/image/baselines/gl2d_error_bar_asymmetric_constant.png differ diff --git a/test/image/baselines/gl2d_error_bar_horizontal.png b/test/image/baselines/gl2d_error_bar_horizontal.png new file mode 100644 index 00000000000..2b2e77027d3 Binary files /dev/null and b/test/image/baselines/gl2d_error_bar_horizontal.png differ diff --git a/test/image/baselines/gl2d_error_bar_style.png b/test/image/baselines/gl2d_error_bar_style.png new file mode 100644 index 00000000000..b729e773fca Binary files /dev/null and b/test/image/baselines/gl2d_error_bar_style.png differ diff --git a/test/image/baselines/gl2d_fonts.png b/test/image/baselines/gl2d_fonts.png new file mode 100644 index 00000000000..7d72a4be67e Binary files /dev/null and b/test/image/baselines/gl2d_fonts.png differ diff --git a/test/image/baselines/gl2d_global_font.png b/test/image/baselines/gl2d_global_font.png new file mode 100644 index 00000000000..6687b4752e8 Binary files /dev/null and b/test/image/baselines/gl2d_global_font.png differ diff --git a/test/image/baselines/gl2d_legend_inside.png b/test/image/baselines/gl2d_legend_inside.png new file mode 100644 index 00000000000..69a7fb2d2ce Binary files /dev/null and b/test/image/baselines/gl2d_legend_inside.png differ diff --git a/test/image/baselines/gl2d_legend_labels.png b/test/image/baselines/gl2d_legend_labels.png new file mode 100644 index 00000000000..4664f8436a7 Binary files /dev/null and b/test/image/baselines/gl2d_legend_labels.png differ diff --git a/test/image/baselines/gl2d_legend_outside.png b/test/image/baselines/gl2d_legend_outside.png new file mode 100644 index 00000000000..c91cd42824d Binary files /dev/null and b/test/image/baselines/gl2d_legend_outside.png differ diff --git a/test/image/baselines/gl2d_legend_style.png b/test/image/baselines/gl2d_legend_style.png new file mode 100644 index 00000000000..290ba4b3042 Binary files /dev/null and b/test/image/baselines/gl2d_legend_style.png differ diff --git a/test/image/baselines/gl2d_line_style.png b/test/image/baselines/gl2d_line_style.png new file mode 100644 index 00000000000..6b4163c4180 Binary files /dev/null and b/test/image/baselines/gl2d_line_style.png differ diff --git a/test/image/baselines/gl2d_multiple_subplots.png b/test/image/baselines/gl2d_multiple_subplots.png new file mode 100644 index 00000000000..bbd2016fe35 Binary files /dev/null and b/test/image/baselines/gl2d_multiple_subplots.png differ diff --git a/test/image/baselines/gl2d_scatter-colorscale-colorbar.png b/test/image/baselines/gl2d_scatter-colorscale-colorbar.png new file mode 100644 index 00000000000..f9f05711184 Binary files /dev/null and b/test/image/baselines/gl2d_scatter-colorscale-colorbar.png differ diff --git a/test/image/baselines/gl2d_scatter-marker-line-colorscales.png b/test/image/baselines/gl2d_scatter-marker-line-colorscales.png new file mode 100644 index 00000000000..17cc8a8c82e Binary files /dev/null and b/test/image/baselines/gl2d_scatter-marker-line-colorscales.png differ diff --git a/test/image/baselines/gl2d_show_legend.png b/test/image/baselines/gl2d_show_legend.png new file mode 100644 index 00000000000..4da4378c3ad Binary files /dev/null and b/test/image/baselines/gl2d_show_legend.png differ diff --git a/test/image/baselines/gl2d_simple_inset.png b/test/image/baselines/gl2d_simple_inset.png new file mode 100644 index 00000000000..7028bfd10c6 Binary files /dev/null and b/test/image/baselines/gl2d_simple_inset.png differ diff --git a/test/image/baselines/gl2d_size_margins.png b/test/image/baselines/gl2d_size_margins.png new file mode 100644 index 00000000000..eddced9b51b Binary files /dev/null and b/test/image/baselines/gl2d_size_margins.png differ diff --git a/test/image/baselines/gl2d_stacked_coupled_subplots.png b/test/image/baselines/gl2d_stacked_coupled_subplots.png new file mode 100644 index 00000000000..9106b91883d Binary files /dev/null and b/test/image/baselines/gl2d_stacked_coupled_subplots.png differ diff --git a/test/image/baselines/gl2d_stacked_subplots.png b/test/image/baselines/gl2d_stacked_subplots.png new file mode 100644 index 00000000000..7483a1b7aca Binary files /dev/null and b/test/image/baselines/gl2d_stacked_subplots.png differ diff --git a/test/image/baselines/gl3d_autocolorscale.png b/test/image/baselines/gl3d_autocolorscale.png new file mode 100644 index 00000000000..bde046b3a7e Binary files /dev/null and b/test/image/baselines/gl3d_autocolorscale.png differ diff --git a/test/image/baselines/gl3d_autorange-zero.png b/test/image/baselines/gl3d_autorange-zero.png new file mode 100644 index 00000000000..50aa0c1d59e Binary files /dev/null and b/test/image/baselines/gl3d_autorange-zero.png differ diff --git a/test/image/baselines/gl3d_bunny-hull.png b/test/image/baselines/gl3d_bunny-hull.png new file mode 100644 index 00000000000..aeda74a60b3 Binary files /dev/null and b/test/image/baselines/gl3d_bunny-hull.png differ diff --git a/test/image/baselines/gl3d_bunny.png b/test/image/baselines/gl3d_bunny.png new file mode 100644 index 00000000000..8c2940123b8 Binary files /dev/null and b/test/image/baselines/gl3d_bunny.png differ diff --git a/test/image/baselines/gl3d_chrisp-nan-1.png b/test/image/baselines/gl3d_chrisp-nan-1.png new file mode 100644 index 00000000000..6640551da09 Binary files /dev/null and b/test/image/baselines/gl3d_chrisp-nan-1.png differ diff --git a/test/image/baselines/gl3d_contour-lines.png b/test/image/baselines/gl3d_contour-lines.png new file mode 100644 index 00000000000..3b72f9c26b6 Binary files /dev/null and b/test/image/baselines/gl3d_contour-lines.png differ diff --git a/test/image/baselines/gl3d_convex-hull.png b/test/image/baselines/gl3d_convex-hull.png new file mode 100644 index 00000000000..8c2940123b8 Binary files /dev/null and b/test/image/baselines/gl3d_convex-hull.png differ diff --git a/test/image/baselines/gl3d_cufflinks.png b/test/image/baselines/gl3d_cufflinks.png new file mode 100644 index 00000000000..58673475edc Binary files /dev/null and b/test/image/baselines/gl3d_cufflinks.png differ diff --git a/test/image/baselines/gl3d_delaunay.png b/test/image/baselines/gl3d_delaunay.png new file mode 100644 index 00000000000..21bd80eb1cf Binary files /dev/null and b/test/image/baselines/gl3d_delaunay.png differ diff --git a/test/image/baselines/gl3d_ibm-plot.png b/test/image/baselines/gl3d_ibm-plot.png new file mode 100644 index 00000000000..d2baae41357 Binary files /dev/null and b/test/image/baselines/gl3d_ibm-plot.png differ diff --git a/test/image/baselines/gl3d_log-axis-big.png b/test/image/baselines/gl3d_log-axis-big.png new file mode 100644 index 00000000000..abb3dd3089b Binary files /dev/null and b/test/image/baselines/gl3d_log-axis-big.png differ diff --git a/test/image/baselines/gl3d_log-axis.png b/test/image/baselines/gl3d_log-axis.png new file mode 100644 index 00000000000..d1f9cead29d Binary files /dev/null and b/test/image/baselines/gl3d_log-axis.png differ diff --git a/test/image/baselines/gl3d_marker-arrays.png b/test/image/baselines/gl3d_marker-arrays.png new file mode 100644 index 00000000000..22aea0e3065 Binary files /dev/null and b/test/image/baselines/gl3d_marker-arrays.png differ diff --git a/test/image/baselines/gl3d_marker-color.png b/test/image/baselines/gl3d_marker-color.png new file mode 100644 index 00000000000..4deaef6d03c Binary files /dev/null and b/test/image/baselines/gl3d_marker-color.png differ diff --git a/test/image/baselines/gl3d_mirror-ticks.png b/test/image/baselines/gl3d_mirror-ticks.png new file mode 100644 index 00000000000..de8ea905f7b Binary files /dev/null and b/test/image/baselines/gl3d_mirror-ticks.png differ diff --git a/test/image/baselines/gl3d_multi-scene.png b/test/image/baselines/gl3d_multi-scene.png new file mode 100644 index 00000000000..688e199dcce Binary files /dev/null and b/test/image/baselines/gl3d_multi-scene.png differ diff --git a/test/image/baselines/gl3d_nan-holes.png b/test/image/baselines/gl3d_nan-holes.png new file mode 100644 index 00000000000..d2c25f618a4 Binary files /dev/null and b/test/image/baselines/gl3d_nan-holes.png differ diff --git a/test/image/baselines/gl3d_opacity-scaling-spikes.png b/test/image/baselines/gl3d_opacity-scaling-spikes.png new file mode 100644 index 00000000000..b86baff2a9a Binary files /dev/null and b/test/image/baselines/gl3d_opacity-scaling-spikes.png differ diff --git a/test/image/baselines/gl3d_opacity-surface.png b/test/image/baselines/gl3d_opacity-surface.png new file mode 100644 index 00000000000..d826326ac9c Binary files /dev/null and b/test/image/baselines/gl3d_opacity-surface.png differ diff --git a/test/image/baselines/gl3d_projection-traces.png b/test/image/baselines/gl3d_projection-traces.png new file mode 100644 index 00000000000..b25c17aa4f3 Binary files /dev/null and b/test/image/baselines/gl3d_projection-traces.png differ diff --git a/test/image/baselines/gl3d_ribbons.png b/test/image/baselines/gl3d_ribbons.png new file mode 100644 index 00000000000..6014e11be31 Binary files /dev/null and b/test/image/baselines/gl3d_ribbons.png differ diff --git a/test/image/baselines/gl3d_scatter-date.png b/test/image/baselines/gl3d_scatter-date.png new file mode 100644 index 00000000000..249e3b29bcf Binary files /dev/null and b/test/image/baselines/gl3d_scatter-date.png differ diff --git a/test/image/baselines/gl3d_scatter3d-colorscale.png b/test/image/baselines/gl3d_scatter3d-colorscale.png new file mode 100644 index 00000000000..9197d8bebaa Binary files /dev/null and b/test/image/baselines/gl3d_scatter3d-colorscale.png differ diff --git a/test/image/baselines/gl3d_snowden.png b/test/image/baselines/gl3d_snowden.png new file mode 100644 index 00000000000..301066604fd Binary files /dev/null and b/test/image/baselines/gl3d_snowden.png differ diff --git a/test/image/baselines/gl3d_surface-lighting.png b/test/image/baselines/gl3d_surface-lighting.png new file mode 100644 index 00000000000..59e87515859 Binary files /dev/null and b/test/image/baselines/gl3d_surface-lighting.png differ diff --git a/test/image/baselines/gl3d_text-weirdness.png b/test/image/baselines/gl3d_text-weirdness.png new file mode 100644 index 00000000000..2a59f3e6f24 Binary files /dev/null and b/test/image/baselines/gl3d_text-weirdness.png differ diff --git a/test/image/baselines/gl3d_triangle.png b/test/image/baselines/gl3d_triangle.png new file mode 100644 index 00000000000..8f8dac99889 Binary files /dev/null and b/test/image/baselines/gl3d_triangle.png differ diff --git a/test/image/baselines/gl3d_wire-surface.png b/test/image/baselines/gl3d_wire-surface.png new file mode 100644 index 00000000000..35a8f6113bc Binary files /dev/null and b/test/image/baselines/gl3d_wire-surface.png differ diff --git a/test/image/baselines/gl3d_xy-defined-ticks.png b/test/image/baselines/gl3d_xy-defined-ticks.png new file mode 100644 index 00000000000..2ef4875ff10 Binary files /dev/null and b/test/image/baselines/gl3d_xy-defined-ticks.png differ diff --git a/test/image/baselines/gl3d_z-range.png b/test/image/baselines/gl3d_z-range.png new file mode 100644 index 00000000000..a19e478dfe0 Binary files /dev/null and b/test/image/baselines/gl3d_z-range.png differ diff --git a/test/image/baselines/global_font.png b/test/image/baselines/global_font.png index 7a02a0c8a71..ae7a70a3748 100644 Binary files a/test/image/baselines/global_font.png and b/test/image/baselines/global_font.png differ diff --git a/test/image/baselines/grouped_bar.png b/test/image/baselines/grouped_bar.png index a2935346212..97ae2ffeff4 100644 Binary files a/test/image/baselines/grouped_bar.png and b/test/image/baselines/grouped_bar.png differ diff --git a/test/image/baselines/heatmap-reverse-autocolorscale.png b/test/image/baselines/heatmap-reverse-autocolorscale.png index 23722060c30..95324d00688 100644 Binary files a/test/image/baselines/heatmap-reverse-autocolorscale.png and b/test/image/baselines/heatmap-reverse-autocolorscale.png differ diff --git a/test/image/baselines/heatmap_autocolor_negative.png b/test/image/baselines/heatmap_autocolor_negative.png index df677369b2e..f9cdea79340 100644 Binary files a/test/image/baselines/heatmap_autocolor_negative.png and b/test/image/baselines/heatmap_autocolor_negative.png differ diff --git a/test/image/baselines/heatmap_autocolor_positive.png b/test/image/baselines/heatmap_autocolor_positive.png index 1b4f0605b67..368e71039cc 100644 Binary files a/test/image/baselines/heatmap_autocolor_positive.png and b/test/image/baselines/heatmap_autocolor_positive.png differ diff --git a/test/image/baselines/heatmap_xyz-dates-and-categories.png b/test/image/baselines/heatmap_xyz-dates-and-categories.png index 937ebec0d66..fcde9f20c67 100644 Binary files a/test/image/baselines/heatmap_xyz-dates-and-categories.png and b/test/image/baselines/heatmap_xyz-dates-and-categories.png differ diff --git a/test/image/baselines/heatmap_xyz-gaps-on-sides.png b/test/image/baselines/heatmap_xyz-gaps-on-sides.png index 0c7fc986b1a..137826d08f1 100644 Binary files a/test/image/baselines/heatmap_xyz-gaps-on-sides.png and b/test/image/baselines/heatmap_xyz-gaps-on-sides.png differ diff --git a/test/image/baselines/hist2d_summed.png b/test/image/baselines/hist2d_summed.png index 38b00b6e484..649ad058eb5 100644 Binary files a/test/image/baselines/hist2d_summed.png and b/test/image/baselines/hist2d_summed.png differ diff --git a/test/image/baselines/hist_003_to_093.png b/test/image/baselines/hist_003_to_093.png index 894c1a6dc46..b0b14886508 100644 Binary files a/test/image/baselines/hist_003_to_093.png and b/test/image/baselines/hist_003_to_093.png differ diff --git a/test/image/baselines/hist_003_to_1.png b/test/image/baselines/hist_003_to_1.png index b0dcb3e5f7b..b46a786f795 100644 Binary files a/test/image/baselines/hist_003_to_1.png and b/test/image/baselines/hist_003_to_1.png differ diff --git a/test/image/baselines/hist_0_to_093.png b/test/image/baselines/hist_0_to_093.png index 3bdac300bff..5075790772d 100644 Binary files a/test/image/baselines/hist_0_to_093.png and b/test/image/baselines/hist_0_to_093.png differ diff --git a/test/image/baselines/hist_0_to_1_midpoints.png b/test/image/baselines/hist_0_to_1_midpoints.png index fea9cddefe0..aa621967170 100644 Binary files a/test/image/baselines/hist_0_to_1_midpoints.png and b/test/image/baselines/hist_0_to_1_midpoints.png differ diff --git a/test/image/baselines/hist_all_integer.png b/test/image/baselines/hist_all_integer.png index 5bb1b09d6d8..1440e7fc1ca 100644 Binary files a/test/image/baselines/hist_all_integer.png and b/test/image/baselines/hist_all_integer.png differ diff --git a/test/image/baselines/hist_all_integer_n50.png b/test/image/baselines/hist_all_integer_n50.png index 9060549036d..7a81c174a06 100644 Binary files a/test/image/baselines/hist_all_integer_n50.png and b/test/image/baselines/hist_all_integer_n50.png differ diff --git a/test/image/baselines/hist_almost_integer.png b/test/image/baselines/hist_almost_integer.png index 4ccc7853156..dde0a066970 100644 Binary files a/test/image/baselines/hist_almost_integer.png and b/test/image/baselines/hist_almost_integer.png differ diff --git a/test/image/baselines/hist_category.png b/test/image/baselines/hist_category.png index 0db029f809c..be207a808ad 100644 Binary files a/test/image/baselines/hist_category.png and b/test/image/baselines/hist_category.png differ diff --git a/test/image/baselines/hist_grouped.png b/test/image/baselines/hist_grouped.png index 0331e328e55..4336d4852fd 100644 Binary files a/test/image/baselines/hist_grouped.png and b/test/image/baselines/hist_grouped.png differ diff --git a/test/image/baselines/hist_stacked.png b/test/image/baselines/hist_stacked.png index 1939ce0a4ad..ff9f3640b36 100644 Binary files a/test/image/baselines/hist_stacked.png and b/test/image/baselines/hist_stacked.png differ diff --git a/test/image/baselines/hist_summed.png b/test/image/baselines/hist_summed.png index ab927550b33..973b1d0659f 100644 Binary files a/test/image/baselines/hist_summed.png and b/test/image/baselines/hist_summed.png differ diff --git a/test/image/baselines/hist_valid_ses.png b/test/image/baselines/hist_valid_ses.png index 1b3f31660c1..0d3de0365c1 100644 Binary files a/test/image/baselines/hist_valid_ses.png and b/test/image/baselines/hist_valid_ses.png differ diff --git a/test/image/baselines/hist_valid_ses_y.png b/test/image/baselines/hist_valid_ses_y.png index 8c69f9d6b2d..d40039fc288 100644 Binary files a/test/image/baselines/hist_valid_ses_y.png and b/test/image/baselines/hist_valid_ses_y.png differ diff --git a/test/image/baselines/japanese.png b/test/image/baselines/japanese.png index b0292b38367..3594fa47be8 100644 Binary files a/test/image/baselines/japanese.png and b/test/image/baselines/japanese.png differ diff --git a/test/image/baselines/labelled_heatmap.png b/test/image/baselines/labelled_heatmap.png index a3eec4620c9..b8b0b90e6ac 100644 Binary files a/test/image/baselines/labelled_heatmap.png and b/test/image/baselines/labelled_heatmap.png differ diff --git a/test/image/baselines/legend_inside.png b/test/image/baselines/legend_inside.png index ceaa57e1f08..85ba1630455 100644 Binary files a/test/image/baselines/legend_inside.png and b/test/image/baselines/legend_inside.png differ diff --git a/test/image/baselines/legend_labels.png b/test/image/baselines/legend_labels.png index baf5616c8fe..cf7e9d9622a 100644 Binary files a/test/image/baselines/legend_labels.png and b/test/image/baselines/legend_labels.png differ diff --git a/test/image/baselines/legend_outside.png b/test/image/baselines/legend_outside.png index 7f983b1a6bb..fe148a305fe 100644 Binary files a/test/image/baselines/legend_outside.png and b/test/image/baselines/legend_outside.png differ diff --git a/test/image/baselines/legend_style.png b/test/image/baselines/legend_style.png index 5eafe624611..8e6ba7e52fa 100644 Binary files a/test/image/baselines/legend_style.png and b/test/image/baselines/legend_style.png differ diff --git a/test/image/baselines/legend_visibility.png b/test/image/baselines/legend_visibility.png index 8c3d0e71f44..77624f77710 100644 Binary files a/test/image/baselines/legend_visibility.png and b/test/image/baselines/legend_visibility.png differ diff --git a/test/image/baselines/legendgroup.png b/test/image/baselines/legendgroup.png index 71534f5c75b..97a2f63c932 100644 Binary files a/test/image/baselines/legendgroup.png and b/test/image/baselines/legendgroup.png differ diff --git a/test/image/baselines/legendgroup_bar-stack.png b/test/image/baselines/legendgroup_bar-stack.png index 6505ba73daf..2d1012b4700 100644 Binary files a/test/image/baselines/legendgroup_bar-stack.png and b/test/image/baselines/legendgroup_bar-stack.png differ diff --git a/test/image/baselines/line_grid_color.png b/test/image/baselines/line_grid_color.png index 7642e496412..8901057cae7 100644 Binary files a/test/image/baselines/line_grid_color.png and b/test/image/baselines/line_grid_color.png differ diff --git a/test/image/baselines/line_grid_width.png b/test/image/baselines/line_grid_width.png index c977bff9bb0..94d3320d70c 100644 Binary files a/test/image/baselines/line_grid_width.png and b/test/image/baselines/line_grid_width.png differ diff --git a/test/image/baselines/line_scatter.png b/test/image/baselines/line_scatter.png index 87858517d85..c981f8d8bbf 100644 Binary files a/test/image/baselines/line_scatter.png and b/test/image/baselines/line_scatter.png differ diff --git a/test/image/baselines/line_style.png b/test/image/baselines/line_style.png index 10b01542de8..0b54d003cd3 100644 Binary files a/test/image/baselines/line_style.png and b/test/image/baselines/line_style.png differ diff --git a/test/image/baselines/multiple_axes_double.png b/test/image/baselines/multiple_axes_double.png index eea97bfa99f..135477b5cc7 100644 Binary files a/test/image/baselines/multiple_axes_double.png and b/test/image/baselines/multiple_axes_double.png differ diff --git a/test/image/baselines/multiple_axes_multiple.png b/test/image/baselines/multiple_axes_multiple.png index 8e7cc532797..b48e0804996 100644 Binary files a/test/image/baselines/multiple_axes_multiple.png and b/test/image/baselines/multiple_axes_multiple.png differ diff --git a/test/image/baselines/multiple_subplots.png b/test/image/baselines/multiple_subplots.png index 22bcb8f6bba..1920139c013 100644 Binary files a/test/image/baselines/multiple_subplots.png and b/test/image/baselines/multiple_subplots.png differ diff --git a/test/image/baselines/percent_error_bar.png b/test/image/baselines/percent_error_bar.png index 2bc2e95c7d4..c4ff935c11f 100644 Binary files a/test/image/baselines/percent_error_bar.png and b/test/image/baselines/percent_error_bar.png differ diff --git a/test/image/baselines/pie_fonts.png b/test/image/baselines/pie_fonts.png index c1c33427171..618227f31fa 100644 Binary files a/test/image/baselines/pie_fonts.png and b/test/image/baselines/pie_fonts.png differ diff --git a/test/image/baselines/pie_label0_dlabel.png b/test/image/baselines/pie_label0_dlabel.png index 221be9be5fa..0feef556c38 100644 Binary files a/test/image/baselines/pie_label0_dlabel.png and b/test/image/baselines/pie_label0_dlabel.png differ diff --git a/test/image/baselines/pie_labels_colors_text.png b/test/image/baselines/pie_labels_colors_text.png index 2c696561eb5..ebbec05d12d 100644 Binary files a/test/image/baselines/pie_labels_colors_text.png and b/test/image/baselines/pie_labels_colors_text.png differ diff --git a/test/image/baselines/pie_scale_textpos_hideslices.png b/test/image/baselines/pie_scale_textpos_hideslices.png index 585e307a8d1..83449ecc3a0 100644 Binary files a/test/image/baselines/pie_scale_textpos_hideslices.png and b/test/image/baselines/pie_scale_textpos_hideslices.png differ diff --git a/test/image/baselines/pie_simple.png b/test/image/baselines/pie_simple.png index 2e2e0637d91..7297df72315 100644 Binary files a/test/image/baselines/pie_simple.png and b/test/image/baselines/pie_simple.png differ diff --git a/test/image/baselines/pie_sort_direction.png b/test/image/baselines/pie_sort_direction.png index 44753f1d30b..49b6212bc9f 100644 Binary files a/test/image/baselines/pie_sort_direction.png and b/test/image/baselines/pie_sort_direction.png differ diff --git a/test/image/baselines/pie_style.png b/test/image/baselines/pie_style.png index e794a742f08..a0ff83a138a 100644 Binary files a/test/image/baselines/pie_style.png and b/test/image/baselines/pie_style.png differ diff --git a/test/image/baselines/pie_style_arrays.png b/test/image/baselines/pie_style_arrays.png index 66933b86edd..17f06ef2218 100644 Binary files a/test/image/baselines/pie_style_arrays.png and b/test/image/baselines/pie_style_arrays.png differ diff --git a/test/image/baselines/polar_area_chart.png b/test/image/baselines/polar_area_chart.png index 3d2b1ed7957..948febef78e 100644 Binary files a/test/image/baselines/polar_area_chart.png and b/test/image/baselines/polar_area_chart.png differ diff --git a/test/image/baselines/polar_line.png b/test/image/baselines/polar_line.png index 9f3d439d939..a55331f8e68 100644 Binary files a/test/image/baselines/polar_line.png and b/test/image/baselines/polar_line.png differ diff --git a/test/image/baselines/polar_scatter.png b/test/image/baselines/polar_scatter.png index 5fb0b02613d..291740c08b2 100644 Binary files a/test/image/baselines/polar_scatter.png and b/test/image/baselines/polar_scatter.png differ diff --git a/test/image/baselines/pseudo_html.png b/test/image/baselines/pseudo_html.png index 8b5fb645fed..f92ebd40ba5 100644 Binary files a/test/image/baselines/pseudo_html.png and b/test/image/baselines/pseudo_html.png differ diff --git a/test/image/baselines/scatter-colorscale-colorbar.png b/test/image/baselines/scatter-colorscale-colorbar.png index 56dca3c5261..9577825e564 100644 Binary files a/test/image/baselines/scatter-colorscale-colorbar.png and b/test/image/baselines/scatter-colorscale-colorbar.png differ diff --git a/test/image/baselines/scatter-marker-line-colorscales.png b/test/image/baselines/scatter-marker-line-colorscales.png index 6b6333ba394..def42b98d12 100644 Binary files a/test/image/baselines/scatter-marker-line-colorscales.png and b/test/image/baselines/scatter-marker-line-colorscales.png differ diff --git a/test/image/baselines/scatter_fill_no_opacity.png b/test/image/baselines/scatter_fill_no_opacity.png index ef17d68cf5d..ecfe7043e0b 100644 Binary files a/test/image/baselines/scatter_fill_no_opacity.png and b/test/image/baselines/scatter_fill_no_opacity.png differ diff --git a/test/image/baselines/shapes.png b/test/image/baselines/shapes.png index 2846e1d6582..e92907c9e06 100644 Binary files a/test/image/baselines/shapes.png and b/test/image/baselines/shapes.png differ diff --git a/test/image/baselines/shared_axes_subplots.png b/test/image/baselines/shared_axes_subplots.png index 44aff11ecaf..ee80a69385a 100644 Binary files a/test/image/baselines/shared_axes_subplots.png and b/test/image/baselines/shared_axes_subplots.png differ diff --git a/test/image/baselines/show_legend.png b/test/image/baselines/show_legend.png index 89e3045d025..dfa1c7211e1 100644 Binary files a/test/image/baselines/show_legend.png and b/test/image/baselines/show_legend.png differ diff --git a/test/image/baselines/simple_annotation.png b/test/image/baselines/simple_annotation.png index 88df1e0df64..8d503bada98 100644 Binary files a/test/image/baselines/simple_annotation.png and b/test/image/baselines/simple_annotation.png differ diff --git a/test/image/baselines/simple_contour.png b/test/image/baselines/simple_contour.png index 9a6b0c20d40..b086bf5f25f 100644 Binary files a/test/image/baselines/simple_contour.png and b/test/image/baselines/simple_contour.png differ diff --git a/test/image/baselines/simple_inset.png b/test/image/baselines/simple_inset.png index 2cb48b84ea9..57bb753c15f 100644 Binary files a/test/image/baselines/simple_inset.png and b/test/image/baselines/simple_inset.png differ diff --git a/test/image/baselines/simple_subplot.png b/test/image/baselines/simple_subplot.png index c5b04831ff5..8332d85e488 100644 Binary files a/test/image/baselines/simple_subplot.png and b/test/image/baselines/simple_subplot.png differ diff --git a/test/image/baselines/size_margins.png b/test/image/baselines/size_margins.png index fe1c137b940..afe9bfebab2 100644 Binary files a/test/image/baselines/size_margins.png and b/test/image/baselines/size_margins.png differ diff --git a/test/image/baselines/stacked_bar.png b/test/image/baselines/stacked_bar.png index 3bf524eaa8c..5d7cc280df2 100644 Binary files a/test/image/baselines/stacked_bar.png and b/test/image/baselines/stacked_bar.png differ diff --git a/test/image/baselines/stacked_coupled_subplots.png b/test/image/baselines/stacked_coupled_subplots.png index b0ba93334b7..78b5d501621 100644 Binary files a/test/image/baselines/stacked_coupled_subplots.png and b/test/image/baselines/stacked_coupled_subplots.png differ diff --git a/test/image/baselines/stacked_subplots.png b/test/image/baselines/stacked_subplots.png index d1d01231252..55663802628 100644 Binary files a/test/image/baselines/stacked_subplots.png and b/test/image/baselines/stacked_subplots.png differ diff --git a/test/image/baselines/style_bar.png b/test/image/baselines/style_bar.png index c63594275a4..bfd4411e5ae 100644 Binary files a/test/image/baselines/style_bar.png and b/test/image/baselines/style_bar.png differ diff --git a/test/image/baselines/styling_names.png b/test/image/baselines/styling_names.png index f2b4e3d2062..19ff9c424f7 100644 Binary files a/test/image/baselines/styling_names.png and b/test/image/baselines/styling_names.png differ diff --git a/test/image/baselines/text_chart_arrays.png b/test/image/baselines/text_chart_arrays.png index 06d2db476c8..1b40abfb14e 100644 Binary files a/test/image/baselines/text_chart_arrays.png and b/test/image/baselines/text_chart_arrays.png differ diff --git a/test/image/baselines/text_chart_basic.png b/test/image/baselines/text_chart_basic.png index 771f9b11109..b0a340ee826 100644 Binary files a/test/image/baselines/text_chart_basic.png and b/test/image/baselines/text_chart_basic.png differ diff --git a/test/image/baselines/text_chart_invalid-arrays.png b/test/image/baselines/text_chart_invalid-arrays.png index 8ce8e9cae9d..2e2d2d571d2 100644 Binary files a/test/image/baselines/text_chart_invalid-arrays.png and b/test/image/baselines/text_chart_invalid-arrays.png differ diff --git a/test/image/baselines/text_chart_single-string.png b/test/image/baselines/text_chart_single-string.png index 821e8bf48b0..ed3ff0440d2 100644 Binary files a/test/image/baselines/text_chart_single-string.png and b/test/image/baselines/text_chart_single-string.png differ diff --git a/test/image/baselines/text_chart_styling.png b/test/image/baselines/text_chart_styling.png index 78314d9f39a..d2384721851 100644 Binary files a/test/image/baselines/text_chart_styling.png and b/test/image/baselines/text_chart_styling.png differ diff --git a/test/image/baselines/tick_attributes.png b/test/image/baselines/tick_attributes.png index ff606a6db50..ffad2b366c8 100644 Binary files a/test/image/baselines/tick_attributes.png and b/test/image/baselines/tick_attributes.png differ diff --git a/test/image/baselines/tick_prefix_suffix.png b/test/image/baselines/tick_prefix_suffix.png index d17d416196c..ebfeffba3ea 100644 Binary files a/test/image/baselines/tick_prefix_suffix.png and b/test/image/baselines/tick_prefix_suffix.png differ diff --git a/test/image/baselines/tick_prefix_suffix_exponent.png b/test/image/baselines/tick_prefix_suffix_exponent.png index b0f13867a52..d7fbc855539 100644 Binary files a/test/image/baselines/tick_prefix_suffix_exponent.png and b/test/image/baselines/tick_prefix_suffix_exponent.png differ diff --git a/test/image/baselines/tickformat.png b/test/image/baselines/tickformat.png index 5002e5a57e5..ba42c396bfb 100644 Binary files a/test/image/baselines/tickformat.png and b/test/image/baselines/tickformat.png differ diff --git a/test/image/baselines/titles-avoid-labels.png b/test/image/baselines/titles-avoid-labels.png index 6eb37b01021..74fd2005870 100644 Binary files a/test/image/baselines/titles-avoid-labels.png and b/test/image/baselines/titles-avoid-labels.png differ diff --git a/test/image/test-pixel-comparisons.js b/test/image/compare_pixels_test.js similarity index 59% rename from test/image/test-pixel-comparisons.js rename to test/image/compare_pixels_test.js index ee0bdf8bbd0..f709cde767b 100644 --- a/test/image/test-pixel-comparisons.js +++ b/test/image/compare_pixels_test.js @@ -1,15 +1,18 @@ -'use strict'; - -var test = require('tape'); -var request = require('request'); var fs = require('fs'); var path = require('path'); -var getOptions = require('./tools/get-options'); + +var constants = require('../../tasks/util/constants'); +var getOptions = require('../../tasks/util/get_image_request_options'); + +// packages inside the image server docker +var request = require('request'); +var test = require('tape'); var gm = require('gm'); -var statusMsg485 = require('../server_app/config/statusmsgs')['485']; -if (!fs.existsSync('./test-images-diffs')) fs.mkdirSync('./test-images-diffs'); -if (!fs.existsSync('./test-images')) fs.mkdirSync('./test-images'); + +// make artifact folders +if(!fs.existsSync(constants.pathToTestImagesDiff)) fs.mkdirSync(constants.pathToTestImagesDiff); +if(!fs.existsSync(constants.pathToTestImages)) fs.mkdirSync(constants.pathToTestImages); var userFileName = process.argv[2]; @@ -24,9 +27,12 @@ function runAll () { test('testing mocks', function (t) { console.error('### beginning pixel comparison tests ###'); - var files = fs.readdirSync('./mocks'); + var files = fs.readdirSync(constants.pathToTestImageMocks); + + // -1 for font-wishlist and + // -38 for the gl2d mocks + t.plan(files.length - 39); - t.plan(files.length - 1); // -1 is for font-wishlist... for (var i = 0; i < files.length; i ++) { testMock(files[i], t); } @@ -41,12 +47,14 @@ function runSingle (userFileName) { }); } - function testMock (fileName, t) { - if (path.extname(fileName) !== '.json') return; - if (fileName === 'font-wishlist.json' && !userFileName) return; + if(path.extname(fileName) !== '.json') return; + if(fileName === 'font-wishlist.json' && !userFileName) return; + + // TODO fix race condition in gl2d image generation + if(fileName.indexOf('gl2d_') !== -1) return; - var figure = require('./mocks/' + fileName); + var figure = require(path.join(constants.pathToTestImageMocks, fileName)); var bodyMock = { figure: figure, format: 'png', @@ -54,8 +62,8 @@ function testMock (fileName, t) { }; var imageFileName = fileName.split('.')[0] + '.png'; - var savedImagePath = 'test-images/' + imageFileName; - var diffPath = 'test-images-diffs/' + 'diff-' + imageFileName; + var savedImagePath = path.join(constants.pathToTestImages, imageFileName); + var diffPath = path.join(constants.pathToTestImagesDiff, 'diff-' + imageFileName); var savedImageStream = fs.createWriteStream(savedImagePath); var options = getOptions(bodyMock, 'http://localhost:9010/'); var statusCode; @@ -68,10 +76,15 @@ function testMock (fileName, t) { }; if(statusCode === 485) { - console.error(imageFileName, '-', statusMsg485, '- skip'); + console.error(imageFileName, '- skip'); } else { - gm.compare(savedImagePath, 'test-images-baseline/' + imageFileName, options, onEqualityCheck); + gm.compare( + savedImagePath, + path.join(constants.pathToTestImageBaselines, imageFileName), + options, + onEqualityCheck + ); } } diff --git a/test/image/index.html b/test/image/index.html new file mode 100644 index 00000000000..efa5c6d2edc --- /dev/null +++ b/test/image/index.html @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/test/image/tools/build-baseline-images.js b/test/image/make_baseline.js similarity index 76% rename from test/image/tools/build-baseline-images.js rename to test/image/make_baseline.js index 2eb2b22ae2f..6b42afeb79d 100644 --- a/test/image/tools/build-baseline-images.js +++ b/test/image/make_baseline.js @@ -1,35 +1,34 @@ -'use strict'; - -var request = require('request'); -var getOptions = require('./get-options'); var fs = require('fs'); var path = require('path'); -var ProgressBar = require('progress'); -var bar; -var root = __dirname; +var constants = require('../../tasks/util/constants'); +var getOptions = require('../../tasks/util/get_image_request_options'); + +// packages inside the image server docker +var ProgressBar = require('progress'); +var request = require('request'); var userFileName = process.argv[2]; +var bar; if (!userFileName) { - fs.readdir(root + '/../mocks', function (err, files) { + fs.readdir(constants.pathToTestImageMocks, function (err, files) { console.log('####### ' + files.length + ' total baseline images to build #######'); bar = new ProgressBar('processing [:bar] [:current / :total]', { total: files.length, width: 30 }); if (err) return console.log(err); files.forEach(createBaselineImage); }); -} else { +} +else { createBaselineImage(userFileName); } - - function createBaselineImage (fileName) { if (path.extname(fileName) !== '.json') return; - var figure = require('../mocks/' + fileName); + var figure = require(path.join(constants.pathToTestImageMocks, fileName)); var bodyMock = { figure: figure, format: 'png', @@ -37,7 +36,7 @@ function createBaselineImage (fileName) { }; var imageFileName = fileName.split('.')[0] + '.png'; - var savedImagePath = root + '/../test-images-baseline/' + imageFileName; + var savedImagePath = path.join(constants.pathToTestImageBaselines, imageFileName); var savedImageStream = fs.createWriteStream(savedImagePath); var options = getOptions(bodyMock, 'http://localhost:9010/'); diff --git a/test/image/mocks/gl2d_10.json b/test/image/mocks/gl2d_10.json new file mode 100644 index 00000000000..5db9c2ab144 --- /dev/null +++ b/test/image/mocks/gl2d_10.json @@ -0,0 +1,184 @@ +{ + "data": [ + { + "x": [ + "Trial 1", + "Trial 2", + "Trial 3", + "Trial 4", + "Trial 5", + "Trial 6" + ], + "y": [ + -0.16783142774745008, + 2.100280806922215, + 1.1036506778911788, + 3.1828090399422226, + 5.678521665403006, + 5.805721742660152 + ], + "mode": "lines+markers", + "name": "Medians", + "marker": { + "color": "rgb(255, 255, 255)", + "size": 4, + "line": { + "color": "rgb(255, 0, 0)", + "width": 1 + } + }, + "line": { + "color": "rgba(255, 0, 0, 0.5)", + "width": 2 + }, + "fillcolor": "rgba(255, 255, 255, 0)", + "type": "scattergl" + } + ], + "layout": { + "title": "Math Score Box Plots", + "titlefont": { + "color": "", + "family": "", + "size": 16 + }, + "font": { + "family": "Arial, sans-serif", + "size": 14, + "color": "rgb(67, 67, 67)" + }, + "showlegend": false, + "autosize": false, + "width": 600, + "height": 440, + "xaxis": { + "title": "", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -0.6575, + 5.5 + ], + "domain": [ + 0, + 1 + ], + "type": "category", + "rangemode": "normal", + "showgrid": false, + "zeroline": false, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 1, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "rgb(255, 255, 255)", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "rgba(0, 0, 0, 0)", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": true, + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Score", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -1.6340975059013805, + 7.166241526218911 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": false, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "rgb(204, 204, 204)", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "rgba(0, 0, 0, 0)", + "linewidth": 2, + "anchor": "x", + "position": 0, + "mirror": true, + "overlaying": false, + "autorange": true + }, + "legend": { + "x": 1.1837209302325582, + "y": 1.0189344262295081, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "rgb(67, 67, 67)" + }, + "bgcolor": "rgba(255, 255, 255, 0)", + "bordercolor": "rgba(0, 0, 0, 0)", + "borderwidth": 1 + }, + "margin": { + "l": 80, + "r": 40, + "b": 80, + "t": 80, + "pad": 2, + "autoexpand": true + }, + "paper_bgcolor": "rgb(255, 255, 255)", + "plot_bgcolor": "rgb(255, 255, 255)", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "stack", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_12.json b/test/image/mocks/gl2d_12.json new file mode 100644 index 00000000000..12035d29c5c --- /dev/null +++ b/test/image/mocks/gl2d_12.json @@ -0,0 +1,857 @@ +{ + "data": [ + { + "x": [ + 6223.367465, + 4797.231267, + 1441.284873, + 12569.851770000001, + 1217.032994, + 430.07069160000003, + 2042.0952399999999, + 706.016537, + 1704.0637239999999, + 986.1478792000001, + 277.55185869999997, + 3632.557798, + 1544.750112, + 2082.4815670000003, + 5581.180998, + 12154.08975, + 641.3695236000001, + 690.8055759, + 13206.48452, + 752.7497265, + 1327.60891, + 942.6542111, + 579.2317429999999, + 1463.249282, + 1569.331442, + 414.5073415, + 12057.49928, + 1044.770126, + 759.3499101, + 1042.581557, + 1803.1514960000002, + 10956.99112, + 3820.17523, + 823.6856205, + 4811.060429, + 619.6768923999999, + 2013.9773050000001, + 7670.122558, + 863.0884639000001, + 1598.435089, + 1712.4721359999999, + 862.5407561000001, + 926.1410683, + 9269.657808, + 2602.394995, + 4513.480643, + 1107.482182, + 882.9699437999999, + 7092.923025, + 1056.3801210000001, + 1271.211593, + 469.70929810000007 + ], + "y": [ + 72.301, + 42.731, + 56.728, + 50.728, + 52.295, + 49.58, + 50.43, + 44.74100000000001, + 50.651, + 65.152, + 46.461999999999996, + 55.321999999999996, + 48.328, + 54.791000000000004, + 71.33800000000001, + 51.57899999999999, + 58.04, + 52.946999999999996, + 56.735, + 59.448, + 60.022, + 56.007, + 46.388000000000005, + 54.11, + 42.592, + 45.678000000000004, + 73.952, + 59.443000000000005, + 48.303000000000004, + 54.467, + 64.164, + 72.801, + 71.164, + 42.082, + 52.906000000000006, + 56.867, + 46.858999999999995, + 76.442, + 46.242, + 65.528, + 63.062, + 42.568000000000005, + 48.159, + 49.339, + 58.556000000000004, + 39.613, + 52.516999999999996, + 58.42, + 73.923, + 51.542, + 42.38399999999999, + 43.486999999999995 + ], + "mode": "markers", + "name": "Africa", + "text": [ + "Country: Algeria
Life Expectancy: 72.301
GDP per capita: 6223.367465
Population: 33333216.0
Year: 2007", + "Country: Angola
Life Expectancy: 42.731
GDP per capita: 4797.231267
Population: 12420476.0
Year: 2007", + "Country: Benin
Life Expectancy: 56.728
GDP per capita: 1441.284873
Population: 8078314.0
Year: 2007", + "Country: Botswana
Life Expectancy: 50.728
GDP per capita: 12569.85177
Population: 1639131.0
Year: 2007", + "Country: Burkina Faso
Life Expectancy: 52.295
GDP per capita: 1217.032994
Population: 14326203.0
Year: 2007", + "Country: Burundi
Life Expectancy: 49.58
GDP per capita: 430.0706916
Population: 8390505.0
Year: 2007", + "Country: Cameroon
Life Expectancy: 50.43
GDP per capita: 2042.09524
Population: 17696293.0
Year: 2007", + "Country: Central African Republic
Life Expectancy: 44.741
GDP per capita: 706.016537
Population: 4369038.0
Year: 2007", + "Country: Chad
Life Expectancy: 50.651
GDP per capita: 1704.063724
Population: 10238807.0
Year: 2007", + "Country: Comoros
Life Expectancy: 65.152
GDP per capita: 986.1478792
Population: 710960.0
Year: 2007", + "Country: Congo, Dem. Rep.
Life Expectancy: 46.462
GDP per capita: 277.5518587
Population: 64606759.0
Year: 2007", + "Country: Congo, Rep.
Life Expectancy: 55.322
GDP per capita: 3632.557798
Population: 3800610.0
Year: 2007", + "Country: Cote dIvoire
Life Expectancy: 48.328
GDP per capita: 1544.750112
Population: 18013409.0
Year: 2007", + "Country: Djibouti
Life Expectancy: 54.791
GDP per capita: 2082.481567
Population: 496374.0
Year: 2007", + "Country: Egypt
Life Expectancy: 71.338
GDP per capita: 5581.180998
Population: 80264543.0
Year: 2007", + "Country: Equatorial Guinea
Life Expectancy: 51.579
GDP per capita: 12154.08975
Population: 551201.0
Year: 2007", + "Country: Eritrea
Life Expectancy: 58.04
GDP per capita: 641.3695236
Population: 4906585.0
Year: 2007", + "Country: Ethiopia
Life Expectancy: 52.947
GDP per capita: 690.8055759
Population: 76511887.0
Year: 2007", + "Country: Gabon
Life Expectancy: 56.735
GDP per capita: 13206.48452
Population: 1454867.0
Year: 2007", + "Country: Gambia
Life Expectancy: 59.448
GDP per capita: 752.7497265
Population: 1688359.0
Year: 2007", + "Country: Ghana
Life Expectancy: 60.022
GDP per capita: 1327.60891
Population: 22873338.0
Year: 2007", + "Country: Guinea
Life Expectancy: 56.007
GDP per capita: 942.6542111
Population: 9947814.0
Year: 2007", + "Country: Guinea-Bissau
Life Expectancy: 46.388
GDP per capita: 579.231743
Population: 1472041.0
Year: 2007", + "Country: Kenya
Life Expectancy: 54.11
GDP per capita: 1463.249282
Population: 35610177.0
Year: 2007", + "Country: Lesotho
Life Expectancy: 42.592
GDP per capita: 1569.331442
Population: 2012649.0
Year: 2007", + "Country: Liberia
Life Expectancy: 45.678
GDP per capita: 414.5073415
Population: 3193942.0
Year: 2007", + "Country: Libya
Life Expectancy: 73.952
GDP per capita: 12057.49928
Population: 6036914.0
Year: 2007", + "Country: Madagascar
Life Expectancy: 59.443
GDP per capita: 1044.770126
Population: 19167654.0
Year: 2007", + "Country: Malawi
Life Expectancy: 48.303
GDP per capita: 759.3499101
Population: 13327079.0
Year: 2007", + "Country: Mali
Life Expectancy: 54.467
GDP per capita: 1042.581557
Population: 12031795.0
Year: 2007", + "Country: Mauritania
Life Expectancy: 64.164
GDP per capita: 1803.151496
Population: 3270065.0
Year: 2007", + "Country: Mauritius
Life Expectancy: 72.801
GDP per capita: 10956.99112
Population: 1250882.0
Year: 2007", + "Country: Morocco
Life Expectancy: 71.164
GDP per capita: 3820.17523
Population: 33757175.0
Year: 2007", + "Country: Mozambique
Life Expectancy: 42.082
GDP per capita: 823.6856205
Population: 19951656.0
Year: 2007", + "Country: Namibia
Life Expectancy: 52.906
GDP per capita: 4811.060429
Population: 2055080.0
Year: 2007", + "Country: Niger
Life Expectancy: 56.867
GDP per capita: 619.6768924
Population: 12894865.0
Year: 2007", + "Country: Nigeria
Life Expectancy: 46.859
GDP per capita: 2013.977305
Population: 135031164.0
Year: 2007", + "Country: Reunion
Life Expectancy: 76.442
GDP per capita: 7670.122558
Population: 798094.0
Year: 2007", + "Country: Rwanda
Life Expectancy: 46.242
GDP per capita: 863.0884639
Population: 8860588.0
Year: 2007", + "Country: Sao Tome and Principe
Life Expectancy: 65.528
GDP per capita: 1598.435089
Population: 199579.0
Year: 2007", + "Country: Senegal
Life Expectancy: 63.062
GDP per capita: 1712.472136
Population: 12267493.0
Year: 2007", + "Country: Sierra Leone
Life Expectancy: 42.568
GDP per capita: 862.5407561
Population: 6144562.0
Year: 2007", + "Country: Somalia
Life Expectancy: 48.159
GDP per capita: 926.1410683
Population: 9118773.0
Year: 2007", + "Country: South Africa
Life Expectancy: 49.339
GDP per capita: 9269.657808
Population: 43997828.0
Year: 2007", + "Country: Sudan
Life Expectancy: 58.556
GDP per capita: 2602.394995
Population: 42292929.0
Year: 2007", + "Country: Swaziland
Life Expectancy: 39.613
GDP per capita: 4513.480643
Population: 1133066.0
Year: 2007", + "Country: Tanzania
Life Expectancy: 52.517
GDP per capita: 1107.482182
Population: 38139640.0
Year: 2007", + "Country: Togo
Life Expectancy: 58.42
GDP per capita: 882.9699438
Population: 5701579.0
Year: 2007", + "Country: Tunisia
Life Expectancy: 73.923
GDP per capita: 7092.923025
Population: 10276158.0
Year: 2007", + "Country: Uganda
Life Expectancy: 51.542
GDP per capita: 1056.380121
Population: 29170398.0
Year: 2007", + "Country: Zambia
Life Expectancy: 42.384
GDP per capita: 1271.211593
Population: 11746035.0
Year: 2007", + "Country: Zimbabwe
Life Expectancy: 43.487
GDP per capita: 469.7092981
Population: 12311143.0
Year: 2007" + ], + "marker": { + "color": "rgb(255, 0, 0)", + "size": [ + 29.810746602820924, + 18.197149567147044, + 14.675557544415877, + 6.610603004351287, + 19.543385335458176, + 14.956442130894114, + 21.72077890062975, + 10.792626698654045, + 16.52185943835442, + 4.353683242838546, + 41.50240100063496, + 10.066092062338873, + 21.91453196050797, + 3.6377994860079204, + 46.258986486204044, + 3.8334450569607683, + 11.437310410545528, + 45.16465542353964, + 6.227961099314154, + 6.709136738617642, + 24.694430700391482, + 16.285386604676816, + 6.264612285824508, + 30.812100863425822, + 7.325179403286266, + 9.227791164226492, + 12.68649752933601, + 22.60573984618565, + 18.849582296257626, + 17.910159625556144, + 9.337109185582111, + 5.774872714286052, + 29.999726284159046, + 23.063420581238734, + 7.40199199438875, + 18.54140518159347, + 60, + 4.612764339536968, + 15.369704446995708, + 2.3067029222366395, + 18.084735199216812, + 12.79910818701753, + 15.592022291528775, + 34.24915519732991, + 33.57902844158756, + 5.496191404660524, + 31.887651824471956, + 12.329112567064463, + 16.55196774082315, + 27.887232791984047, + 17.696194784090615, + 18.11688103909921 + ], + "line": { + "color": "rgb(255, 255, 255)", + "width": 1 + }, + "opacity": 0.51 + }, + "opacity": 0.95, + "visible": true, + "type": "scattergl" + }, + { + "x": [ + 12779.379640000001, + 3822.1370840000004, + 9065.800825, + 36319.235010000004, + 13171.63885, + 7006.580419, + 9645.06142, + 8948.102923, + 6025.374752000001, + 6873.262326000001, + 5728.353514, + 5186.050003, + 1201.637154, + 3548.3308460000003, + 7320.880262000001, + 11977.57496, + 2749.320965, + 9809.185636, + 4172.838464, + 7408.905561, + 19328.70901, + 18008.50924, + 42951.65309, + 10611.46299, + 11415.805690000001 + ], + "y": [ + 75.32, + 65.554, + 72.39, + 80.653, + 78.553, + 72.889, + 78.782, + 78.273, + 72.235, + 74.994, + 71.878, + 70.259, + 60.916000000000004, + 70.19800000000001, + 72.567, + 76.195, + 72.899, + 75.53699999999999, + 71.752, + 71.421, + 78.74600000000001, + 69.819, + 78.242, + 76.384, + 73.747 + ], + "mode": "markers", + "name": "Americas", + "text": [ + "Country: Argentina
Life Expectancy: 75.32
GDP per capita: 12779.37964
Population: 40301927.0
Year: 2007", + "Country: Bolivia
Life Expectancy: 65.554
GDP per capita: 3822.137084
Population: 9119152.0
Year: 2007", + "Country: Brazil
Life Expectancy: 72.39
GDP per capita: 9065.800825
Population: 190010647.0
Year: 2007", + "Country: Canada
Life Expectancy: 80.653
GDP per capita: 36319.23501
Population: 33390141.0
Year: 2007", + "Country: Chile
Life Expectancy: 78.553
GDP per capita: 13171.63885
Population: 16284741.0
Year: 2007", + "Country: Colombia
Life Expectancy: 72.889
GDP per capita: 7006.580419
Population: 44227550.0
Year: 2007", + "Country: Costa Rica
Life Expectancy: 78.782
GDP per capita: 9645.06142
Population: 4133884.0
Year: 2007", + "Country: Cuba
Life Expectancy: 78.273
GDP per capita: 8948.102923
Population: 11416987.0
Year: 2007", + "Country: Dominican Republic
Life Expectancy: 72.235
GDP per capita: 6025.374752
Population: 9319622.0
Year: 2007", + "Country: Ecuador
Life Expectancy: 74.994
GDP per capita: 6873.262326
Population: 13755680.0
Year: 2007", + "Country: El Salvador
Life Expectancy: 71.878
GDP per capita: 5728.353514
Population: 6939688.0
Year: 2007", + "Country: Guatemala
Life Expectancy: 70.259
GDP per capita: 5186.050003
Population: 12572928.0
Year: 2007", + "Country: Haiti
Life Expectancy: 60.916
GDP per capita: 1201.637154
Population: 8502814.0
Year: 2007", + "Country: Honduras
Life Expectancy: 70.198
GDP per capita: 3548.330846
Population: 7483763.0
Year: 2007", + "Country: Jamaica
Life Expectancy: 72.567
GDP per capita: 7320.880262
Population: 2780132.0
Year: 2007", + "Country: Mexico
Life Expectancy: 76.195
GDP per capita: 11977.57496
Population: 108700891.0
Year: 2007", + "Country: Nicaragua
Life Expectancy: 72.899
GDP per capita: 2749.320965
Population: 5675356.0
Year: 2007", + "Country: Panama
Life Expectancy: 75.537
GDP per capita: 9809.185636
Population: 3242173.0
Year: 2007", + "Country: Paraguay
Life Expectancy: 71.752
GDP per capita: 4172.838464
Population: 6667147.0
Year: 2007", + "Country: Peru
Life Expectancy: 71.421
GDP per capita: 7408.905561
Population: 28674757.0
Year: 2007", + "Country: Puerto Rico
Life Expectancy: 78.746
GDP per capita: 19328.70901
Population: 3942491.0
Year: 2007", + "Country: Trinidad and Tobago
Life Expectancy: 69.819
GDP per capita: 18008.50924
Population: 1056608.0
Year: 2007", + "Country: United States
Life Expectancy: 78.242
GDP per capita: 42951.65309
Population: 301139947.0
Year: 2007", + "Country: Uruguay
Life Expectancy: 76.384
GDP per capita: 10611.46299
Population: 3447496.0
Year: 2007", + "Country: Venezuela
Life Expectancy: 73.747
GDP per capita: 11415.80569
Population: 26084662.0
Year: 2007" + ], + "marker": { + "color": "rgb(204, 204, 204)", + "size": [ + 21.94976988499517, + 10.441052822396196, + 47.66021903725089, + 19.979112486875845, + 13.95267548575408, + 22.993945975228556, + 7.029852430522167, + 11.682689085146487, + 10.555193870118702, + 12.823544926991564, + 9.108293955789053, + 12.259853478972317, + 10.082039742103595, + 9.458604761285072, + 5.765006135966166, + 36.048202790993614, + 8.23689670992972, + 6.22565654446431, + 8.927648460491556, + 18.514711052673302, + 6.865187781408511, + 3.5540539239313094, + 60, + 6.41976234423909, + 17.658738378883186 + ], + "line": { + "color": "rgb(255, 255, 255)", + "width": 1 + }, + "opacity": 0.51 + }, + "opacity": 0.95, + "visible": true, + "type": "scattergl" + }, + { + "x": [ + 974.5803384, + 29796.048339999998, + 1391.253792, + 1713.7786859999999, + 4959.1148539999995, + 39724.97867, + 2452.210407, + 3540.6515640000002, + 11605.71449, + 4471.061906, + 25523.2771, + 31656.06806, + 4519.461171, + 1593.06548, + 23348.139730000003, + 10461.05868, + 12451.6558, + 3095.7722710000003, + 944, + 1091.359778, + 22316.19287, + 2605.94758, + 3190.481016, + 21654.83194, + 47143.179639999995, + 3970.0954070000003, + 4184.548089, + 28718.27684, + 7458.3963269999995, + 2441.576404, + 3025.349798, + 2280.769906 + ], + "y": [ + 43.828, + 75.635, + 64.062, + 59.723, + 72.961, + 82.208, + 64.69800000000001, + 70.65, + 70.964, + 59.545, + 80.745, + 82.603, + 72.535, + 67.297, + 78.623, + 71.993, + 74.241, + 66.803, + 62.068999999999996, + 63.785, + 75.64, + 65.483, + 71.688, + 72.777, + 79.972, + 72.396, + 74.143, + 78.4, + 70.616, + 74.249, + 73.422, + 62.698 + ], + "mode": "markers", + "name": "Asia", + "text": [ + "Country: Afghanistan
Life Expectancy: 43.828
GDP per capita: 974.5803384
Population: 31889923.0
Year: 2007", + "Country: Bahrain
Life Expectancy: 75.635
GDP per capita: 29796.04834
Population: 708573.0
Year: 2007", + "Country: Bangladesh
Life Expectancy: 64.062
GDP per capita: 1391.253792
Population: 150448339.0
Year: 2007", + "Country: Cambodia
Life Expectancy: 59.723
GDP per capita: 1713.778686
Population: 14131858.0
Year: 2007", + "Country: China
Life Expectancy: 72.961
GDP per capita: 4959.114854
Population: 1318683096.0
Year: 2007", + "Country: Hong Kong, China
Life Expectancy: 82.208
GDP per capita: 39724.97867
Population: 6980412.0
Year: 2007", + "Country: India
Life Expectancy: 64.698
GDP per capita: 2452.210407
Population: 1110396331.0
Year: 2007", + "Country: Indonesia
Life Expectancy: 70.65
GDP per capita: 3540.651564
Population: 223547000.0
Year: 2007", + "Country: Iran
Life Expectancy: 70.964
GDP per capita: 11605.71449
Population: 69453570.0
Year: 2007", + "Country: Iraq
Life Expectancy: 59.545
GDP per capita: 4471.061906
Population: 27499638.0
Year: 2007", + "Country: Israel
Life Expectancy: 80.745
GDP per capita: 25523.2771
Population: 6426679.0
Year: 2007", + "Country: Japan
Life Expectancy: 82.603
GDP per capita: 31656.06806
Population: 127467972.0
Year: 2007", + "Country: Jordan
Life Expectancy: 72.535
GDP per capita: 4519.461171
Population: 6053193.0
Year: 2007", + "Country: Korea, Dem. Rep.
Life Expectancy: 67.297
GDP per capita: 1593.06548
Population: 23301725.0
Year: 2007", + "Country: Korea, Rep.
Life Expectancy: 78.623
GDP per capita: 23348.13973
Population: 49044790.0
Year: 2007", + "Country: Lebanon
Life Expectancy: 71.993
GDP per capita: 10461.05868
Population: 3921278.0
Year: 2007", + "Country: Malaysia
Life Expectancy: 74.241
GDP per capita: 12451.6558
Population: 24821286.0
Year: 2007", + "Country: Mongolia
Life Expectancy: 66.803
GDP per capita: 3095.772271
Population: 2874127.0
Year: 2007", + "Country: Myanmar
Life Expectancy: 62.069
GDP per capita: 944.0
Population: 47761980.0
Year: 2007", + "Country: Nepal
Life Expectancy: 63.785
GDP per capita: 1091.359778
Population: 28901790.0
Year: 2007", + "Country: Oman
Life Expectancy: 75.64
GDP per capita: 22316.19287
Population: 3204897.0
Year: 2007", + "Country: Pakistan
Life Expectancy: 65.483
GDP per capita: 2605.94758
Population: 169270617.0
Year: 2007", + "Country: Philippines
Life Expectancy: 71.688
GDP per capita: 3190.481016
Population: 91077287.0
Year: 2007", + "Country: Saudi Arabia
Life Expectancy: 72.777
GDP per capita: 21654.83194
Population: 27601038.0
Year: 2007", + "Country: Singapore
Life Expectancy: 79.972
GDP per capita: 47143.17964
Population: 4553009.0
Year: 2007", + "Country: Sri Lanka
Life Expectancy: 72.396
GDP per capita: 3970.095407
Population: 20378239.0
Year: 2007", + "Country: Syria
Life Expectancy: 74.143
GDP per capita: 4184.548089
Population: 19314747.0
Year: 2007", + "Country: Taiwan
Life Expectancy: 78.4
GDP per capita: 28718.27684
Population: 23174294.0
Year: 2007", + "Country: Thailand
Life Expectancy: 70.616
GDP per capita: 7458.396327
Population: 65068149.0
Year: 2007", + "Country: Vietnam
Life Expectancy: 74.249
GDP per capita: 2441.576404
Population: 85262356.0
Year: 2007", + "Country: West Bank and Gaza
Life Expectancy: 73.422
GDP per capita: 3025.349798
Population: 4018332.0
Year: 2007", + "Country: Yemen, Rep.
Life Expectancy: 62.698
GDP per capita: 2280.769906
Population: 22211743.0
Year: 2007" + ], + "marker": { + "color": "rgb(204, 204, 204)", + "size": [ + 9.330561207739747, + 1.390827697025556, + 20.266312242166443, + 6.211273648937339, + 60, + 4.3653750211924, + 55.05795036085951, + 24.703896200017994, + 13.769821732555231, + 8.664520214956125, + 4.188652530719761, + 18.654412200415056, + 4.0651192623762835, + 7.975814912067495, + 11.57117523159306, + 3.271861016562374, + 8.231768913808876, + 2.8011347940934943, + 11.418845373343052, + 8.882667412223675, + 2.9579312056937046, + 21.49670117903256, + 15.768343552577761, + 8.680479951148044, + 3.525577657243318, + 7.4587209016354095, + 7.261486641287726, + 7.95397619750268, + 13.3280083790662, + 15.256667990032932, + 3.312103798885452, + 7.787039017632765 + ], + "line": { + "color": "rgb(255, 255, 255)", + "width": 1 + }, + "opacity": 0.51 + }, + "opacity": 0.95, + "visible": true, + "type": "scattergl" + }, + { + "x": [ + 5937.029525999999, + 36126.4927, + 33692.60508, + 7446.298803, + 10680.79282, + 14619.222719999998, + 22833.30851, + 35278.41874, + 33207.0844, + 30470.0167, + 32170.37442, + 27538.41188, + 18008.94444, + 36180.789189999996, + 40675.99635, + 28569.7197, + 9253.896111, + 36797.93332, + 49357.19017, + 15389.924680000002, + 20509.64777, + 10808.47561, + 9786.534714, + 18678.31435, + 25768.25759, + 28821.0637, + 33859.74835, + 37506.419069999996, + 8458.276384, + 33203.26128 + ], + "y": [ + 76.423, + 79.829, + 79.441, + 74.852, + 73.005, + 75.748, + 76.486, + 78.332, + 79.313, + 80.657, + 79.406, + 79.483, + 73.33800000000001, + 81.757, + 78.885, + 80.546, + 74.543, + 79.762, + 80.196, + 75.563, + 78.098, + 72.476, + 74.002, + 74.663, + 77.926, + 80.941, + 80.884, + 81.70100000000001, + 71.777, + 79.425 + ], + "mode": "markers", + "name": "Europe", + "text": [ + "Country: Albania
Life Expectancy: 76.423
GDP per capita: 5937.029526
Population: 3600523.0
Year: 2007", + "Country: Austria
Life Expectancy: 79.829
GDP per capita: 36126.4927
Population: 8199783.0
Year: 2007", + "Country: Belgium
Life Expectancy: 79.441
GDP per capita: 33692.60508
Population: 10392226.0
Year: 2007", + "Country: Bosnia and Herzegovina
Life Expectancy: 74.852
GDP per capita: 7446.298803
Population: 4552198.0
Year: 2007", + "Country: Bulgaria
Life Expectancy: 73.005
GDP per capita: 10680.79282
Population: 7322858.0
Year: 2007", + "Country: Croatia
Life Expectancy: 75.748
GDP per capita: 14619.22272
Population: 4493312.0
Year: 2007", + "Country: Czech Republic
Life Expectancy: 76.486
GDP per capita: 22833.30851
Population: 10228744.0
Year: 2007", + "Country: Denmark
Life Expectancy: 78.332
GDP per capita: 35278.41874
Population: 5468120.0
Year: 2007", + "Country: Finland
Life Expectancy: 79.313
GDP per capita: 33207.0844
Population: 5238460.0
Year: 2007", + "Country: France
Life Expectancy: 80.657
GDP per capita: 30470.0167
Population: 61083916.0
Year: 2007", + "Country: Germany
Life Expectancy: 79.406
GDP per capita: 32170.37442
Population: 82400996.0
Year: 2007", + "Country: Greece
Life Expectancy: 79.483
GDP per capita: 27538.41188
Population: 10706290.0
Year: 2007", + "Country: Hungary
Life Expectancy: 73.338
GDP per capita: 18008.94444
Population: 9956108.0
Year: 2007", + "Country: Iceland
Life Expectancy: 81.757
GDP per capita: 36180.78919
Population: 301931.0
Year: 2007", + "Country: Ireland
Life Expectancy: 78.885
GDP per capita: 40675.99635
Population: 4109086.0
Year: 2007", + "Country: Italy
Life Expectancy: 80.546
GDP per capita: 28569.7197
Population: 58147733.0
Year: 2007", + "Country: Montenegro
Life Expectancy: 74.543
GDP per capita: 9253.896111
Population: 684736.0
Year: 2007", + "Country: Netherlands
Life Expectancy: 79.762
GDP per capita: 36797.93332
Population: 16570613.0
Year: 2007", + "Country: Norway
Life Expectancy: 80.196
GDP per capita: 49357.19017
Population: 4627926.0
Year: 2007", + "Country: Poland
Life Expectancy: 75.563
GDP per capita: 15389.92468
Population: 38518241.0
Year: 2007", + "Country: Portugal
Life Expectancy: 78.098
GDP per capita: 20509.64777
Population: 10642836.0
Year: 2007", + "Country: Romania
Life Expectancy: 72.476
GDP per capita: 10808.47561
Population: 22276056.0
Year: 2007", + "Country: Serbia
Life Expectancy: 74.002
GDP per capita: 9786.534714
Population: 10150265.0
Year: 2007", + "Country: Slovak Republic
Life Expectancy: 74.663
GDP per capita: 18678.31435
Population: 5447502.0
Year: 2007", + "Country: Slovenia
Life Expectancy: 77.926
GDP per capita: 25768.25759
Population: 2009245.0
Year: 2007", + "Country: Spain
Life Expectancy: 80.941
GDP per capita: 28821.0637
Population: 40448191.0
Year: 2007", + "Country: Sweden
Life Expectancy: 80.884
GDP per capita: 33859.74835
Population: 9031088.0
Year: 2007", + "Country: Switzerland
Life Expectancy: 81.701
GDP per capita: 37506.41907
Population: 7554661.0
Year: 2007", + "Country: Turkey
Life Expectancy: 71.777
GDP per capita: 8458.276384
Population: 71158647.0
Year: 2007", + "Country: United Kingdom
Life Expectancy: 79.425
GDP per capita: 33203.26128
Population: 60776238.0
Year: 2007" + ], + "marker": { + "color": "rgb(204, 204, 204)", + "size": [ + 12.542029402681376, + 18.92719251331642, + 21.30783431755826, + 14.102483219452576, + 17.88649832258261, + 14.010973368444008, + 21.139571238812916, + 15.456246600674588, + 15.128185315496781, + 51.65929267153148, + 60, + 21.627410389852702, + 20.855942428523296, + 3.6319417326760695, + 13.398544876923102, + 50.40242285907865, + 5.469487077232467, + 26.90632025621006, + 14.2193001873736, + 41.02213342839891, + 21.56322451638816, + 31.196377737918432, + 21.058319482558733, + 15.427079550618533, + 9.369177525034539, + 42.03727650225595, + 19.863467167731834, + 18.167388787784372, + 55.75693095494465, + 51.529025209914586 + ], + "line": { + "color": "rgb(255, 255, 255)", + "width": 1 + }, + "opacity": 0.51 + }, + "opacity": 0.95, + "visible": true, + "type": "scattergl" + }, + { + "x": [ + 34435.367439999995, + 25185.00911 + ], + "y": [ + 81.235, + 80.204 + ], + "mode": "markers", + "name": "Oceania", + "text": [ + "Country: Australia
Life Expectancy: 81.235
GDP per capita: 34435.36744
Population: 20434176.0
Year: 2007", + "Country: New Zealand
Life Expectancy: 80.204
GDP per capita: 25185.00911
Population: 4115771.0
Year: 2007" + ], + "marker": { + "color": "rgb(204, 204, 204)", + "size": [ + 60, + 26.92763965464884 + ], + "line": { + "color": "rgb(255, 255, 255)", + "width": 1 + }, + "opacity": 0.51 + }, + "opacity": 0.95, + "visible": true, + "type": "scattergl" + } + ], + "layout": { + "title": "Life Expectancy vs GDP
Bubble Chart", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "font": { + "family": "'Open sans', verdana, arial, sans-serif", + "size": 12, + "color": "#000" + }, + "showlegend": false, + "autosize": false, + "width": 600, + "height": 496, + "xaxis": { + "title": "GDP per capita (2000 dollars)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + 2.1277059579936974, + 5.024737566733606 + ], + "domain": [ + 0, + 1 + ], + "type": "log", + "rangemode": "normal", + "showgrid": false, + "zeroline": false, + "showline": true, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": "D2", + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "white", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": "all", + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Life Expectancy (years)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + 36.324623672665126, + 90.34700250569831 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": false, + "zeroline": false, + "showline": true, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 10, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "white", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": "all", + "overlaying": false, + "autorange": true + }, + "legend": { + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#000", + "borderwidth": 1 + }, + "annotations": [ + { + "x": 0.9750000000000001, + "y": 0.06952136075949367, + "xref": "paper", + "yref": "paper", + "text": "2007", + "font": { + "family": "", + "size": 36, + "color": "rgb(23, 190, 207)" + }, + "align": "center", + "showarrow": false, + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -44.515625, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1, + "xanchor": "auto", + "yanchor": "auto", + "tag": "" + } + ], + "margin": { + "l": 80, + "r": 80, + "b": 80, + "t": 100, + "pad": 2, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "closest", + "dragmode": "zoom", + "barmode": "stack", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_14.json b/test/image/mocks/gl2d_14.json new file mode 100644 index 00000000000..d4371d72c84 --- /dev/null +++ b/test/image/mocks/gl2d_14.json @@ -0,0 +1,245 @@ +{ + "data": [ + { + "x": [ + 0.002, + 0.004, + 0.006, + 0.009, + 0.013, + 0.02, + 0.028, + 0.037, + 0.054, + 0.076, + 0.099, + 0.125, + 0.154, + 0.188, + 0.228, + 0.275, + 0.33, + 0.388, + 0.448, + 0.517, + 0.594, + 0.683, + 0.809, + 0.964, + 1.165, + 1.425, + 1.753, + 2.22, + 2.798, + 3.911, + 5.34, + 6.915, + 9.443, + 15.772, + 23.21, + 40.019, + 69.684 + ], + "y": [ + 16.25, + 12.5, + 10, + 7.5, + 6.875, + 6.875, + 6.25, + 5.625, + 3.75, + 3.5, + 2.75, + 2.125, + 1.625, + 1.375, + 1.5, + 1.5, + 1.25, + 1, + 0.875, + 0.825, + 0.775, + 0.713, + 0.713, + 0.55, + 0.525, + 0.538, + 0.5, + 0.45, + 0.4, + 0.401, + 0.403, + 0.411, + 0.379, + 0.387, + 0.248, + 0.216, + 0.154 + ], + "mode": "lines+markers", + "name": "PV learning curve.txt", + "marker": { + "color": "rgb(0, 0, 238)", + "size": 12, + "line": { + "color": "rgb(0, 0, 238)", + "width": 0 + }, + "opacity": 0.6 + }, + "line": { + "color": "rgb(0, 0, 238)" + }, + "type": "scattergl" + } + ], + "layout": { + "title": "Silicon Photovoltaics Learning Curve", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "font": { + "family": "Arial, sans-serif", + "size": 12, + "color": "#000" + }, + "showlegend": false, + "autosize": false, + "width": 800, + "height": 440, + "xaxis": { + "title": "Cumulative Production (GW)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -3.011967491973726, + 2.1561305597186564 + ], + "domain": [ + 0, + 1 + ], + "type": "log", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 40, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": "D1", + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "#000", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": true, + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Cost ($/WP)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -0.9910086301469277, + 1.389382716298284 + ], + "domain": [ + 0, + 1 + ], + "type": "log", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 6, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": "D2", + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "#000", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": true, + "overlaying": false, + "autorange": true + }, + "legend": { + "x": 0.98, + "y": 0.98, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#000", + "borderwidth": 1 + }, + "margin": { + "l": 50, + "r": 40, + "b": 60, + "t": 80, + "pad": 2, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "stack", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_17.json b/test/image/mocks/gl2d_17.json new file mode 100644 index 00000000000..6bdd4e15842 --- /dev/null +++ b/test/image/mocks/gl2d_17.json @@ -0,0 +1,718 @@ +{ + "data": [ + { + "x": [ + "0.07511045655375555", + "0.1281296023564065", + "0.18114874815905743", + "0.22533136966126657", + "0.25184094256259204", + "0.2739322533136965", + "0.2960235640648011", + "0.3136966126656848", + "0.33136966126656847", + "0.3490427098674521", + "0.36671575846833576", + "0.38438880706921935", + "0.406480117820324", + "0.4462444771723122", + "0.4872711971386493", + "0.5434462444771723", + "0.5964653902798233", + "0.6494845360824743", + "0.7025036818851251", + "0.7555228276877761", + "0.8085419734904271", + "0.8615611192930782", + "0.914580265095729", + "0.96759941089838", + "1.020618556701031", + "1.0736377025036818", + "1.1266568483063328", + "1.1796759941089838", + "1.2326951399116348", + "1.285714285714286", + "1.3387334315169366", + "1.3917525773195876", + "1.4447717231222386", + "1.4977908689248896", + "1.5508100147275405", + "1.6038291605301915", + "1.6568483063328423", + "1.7098674521354933", + "1.7628865979381445", + "1.7614138438880704", + "1.8159057437407953", + "1.8689248895434465", + "1.9219440353460973", + "1.974963181148748", + "2.0279823269513995", + "2.0810014727540502", + "2.1340206185567006", + "2.1870397643593518", + "2.240058910162003", + "2.2930780559646537", + "2.346097201767305", + "2.3991163475699557", + "2.452135493372607", + "2.5051546391752577", + "2.5581737849779085", + "2.6111929307805597", + "2.6642120765832105", + "2.7172312223858617", + "2.770250368188513", + "2.823269513991163", + "2.8762886597938144", + "2.929307805596465", + "2.9823269513991164", + "3.035346097201767", + "3.0883652430044184", + "3.141384388807069", + "3.1855670103092786", + "3.212076583210604", + "3.2297496318114876", + "3.247422680412371", + "3.2650957290132547", + "3.282768777614138", + "3.300441826215022", + "3.3181148748159055", + "3.3446244477172313", + "3.38880706921944", + "3.441826215022091", + "3.4948453608247423", + "3.547864506627393", + "3.6008836524300443", + "3.653902798232695", + "3.7069219440353467", + "3.759941089837997", + "3.804123711340206", + "3.8350515463917527", + "3.857142857142857", + "3.874815905743741", + "3.8924889543446244", + "3.9101620029455084", + "3.9366715758468334", + "3.949926362297496", + "3.9808541973490428", + "3.9985272459499264", + "4.01620029455081", + "4.033873343151693", + "4.051546391752577", + "4.047128129602356", + "4.060382916053019", + "4.055964653902798", + "4.070692194403534", + "4.06480117820324", + "4.078055964653903", + "4.088365243004418", + "4.082474226804123", + "4.095729013254786", + "4.1060382916053015", + "4.139911634756995", + "4.142562592047128", + "4.166421207658321", + "4.175257731958763", + "4.182621502209131", + "4.191458026509574", + "4.210603829160529", + "4.228276877761414", + "4.250368188512518", + "4.2901325478645065", + "4.343151693667157", + "4.396170839469808", + "4.44918998527246", + "4.5022091310751104", + "4.555228276877761", + "4.608247422680412", + "4.661266568483064", + "4.714285714285714", + "4.767304860088365", + "4.820324005891017", + "4.873343151693667", + "4.926362297496317", + "4.97938144329897", + "5.03240058910162", + "5.085419734904271", + "5.1384388807069215", + "5.191458026509573", + "5.244477172312224", + "5.297496318114875", + "5.350515463917525", + "5.403534609720176", + "5.456553755522828", + "5.509572901325479", + "5.562592047128129", + "5.615611192930779", + "5.668630338733432", + "5.721649484536082", + "5.774668630338733", + "5.827687776141384", + "5.876288659793816" + ], + "y": [ + 0.06510416666666519, + -0.013020833333332593, + -0.2734375, + -1.0546875, + -1.9140625, + -2.916666666666665, + -4.0625, + -5.234375, + -6.2890625, + -7.3828125, + -8.4765625, + -9.53125, + -10.468750000000004, + -11.640625, + -12.533482142857144, + -12.135416666666668, + -11.679687500000004, + -11.223958333333332, + -10.638020833333343, + -10.10416666666667, + -9.622395833333334, + -9.140625, + -8.6328125, + -8.151041666666664, + -7.565104166666665, + -7.018229166666665, + -6.471354166666668, + -5.976562499999998, + -5.442708333333335, + -4.908854166666666, + -4.3619791666666625, + -3.867187499999999, + -3.372395833333334, + -2.8385416666666643, + -2.304687499999999, + -1.7708333333333326, + -1.263020833333337, + -0.7291666666666663, + -0.1822916666666663, + 1.2500000000000022, + 0.3385416666666696, + 0.8203125000000044, + 1.3541666666666696, + 1.8359375000000022, + 2.304687500000002, + 2.8515624999999956, + 3.320312499999998, + 3.8541666666666674, + 4.335937499999996, + 4.81770833333333, + 5.351562500000002, + 5.820312499999998, + 6.289062499999993, + 6.770833333333335, + 7.3177083333333375, + 7.91666666666667, + 8.3203125, + 8.671875000000002, + 9.088541666666664, + 9.531249999999998, + 10.130208333333336, + 10.71614583333333, + 11.22395833333334, + 11.54947916666667, + 12.05729166666666, + 12.1875, + 11.5234375, + 10.2734375, + 9.179687500000007, + 8.046874999999991, + 6.562500000000002, + 5.078124999999996, + 3.8671874999999933, + 2.7734375000000044, + 1.5039062499999978, + 0.7031249999999978, + 0.4687500000000022, + 0.46875000000000444, + 0.4687499999999978, + 0.5729166666666718, + 0.9114583333333259, + 1.3020833333333393, + 1.4453125000000022, + 0.9570312500000022, + -0.052083333333334814, + -1.250000000000001, + -2.578124999999999, + -3.7500000000000036, + -5.039062499999999, + -6.523437500000004, + -7.265624999999993, + -6.249999999999998, + -5.234375, + -4.023437499999996, + -2.6562500000000067, + 0.07812499999999778, + -1.4062500000000044, + 1.9921875000000067, + 1.1718749999999978, + 4.114583333333329, + 2.890625, + 5.703125000000004, + 7.96875, + 6.796875000000009, + 9.492187500000002, + 10.57291666666666, + 11.575520833333343, + 12.953124999999996, + 9.6875, + 8.281250000000004, + 6.640625, + 4.947916666666671, + 3.7499999999999956, + 2.5390625000000044, + 1.3802083333333304, + 0.390625, + 0.09114583333332815, + 0.07812499999999334, + 0.07812500000000444, + 0.07812499999999556, + 0.07812500000000888, + 0.07812499999999556, + 0.07812500000000888, + 0.14322916666667407, + 0.15625, + 0.10416666666666297, + 0.07812499999999556, + 0.07812499999999778, + 0.10416666666667185, + 0.15625000000000222, + 0.07812500000000888, + 0.07812499999999334, + 0.07812500000000444, + 0.07812500000000444, + 0.07812499999999556, + 0.1432291666666652, + 0.1302083333333326, + 0.07812499999999556, + 0.07812499999999778, + 0.07812500000000222, + 0.07812499999999334, + 0.07812499999999334, + 0.07812500000000222, + 0.07812500000000444, + 0.10416666666667185, + 0.15625000000000666 + ], + "mode": "lines+markers", + "name": "Data", + "marker": { + "color": "rgb(67, 67, 67)" + }, + "line": { + "color": "rgb(255, 217, 102)", + "width": 4 + }, + "type": "scattergl" + }, + { + "x": [ + "0.07511045655375555", + "0.1281296023564065", + "0.18114874815905743", + "0.22533136966126657", + "0.25184094256259204", + "0.2739322533136965", + "0.2960235640648011", + "0.3136966126656848", + "0.33136966126656847", + "0.3490427098674521", + "0.36671575846833576", + "0.38438880706921935", + "0.406480117820324", + "0.4462444771723122", + "0.4872711971386493", + "0.5434462444771723", + "0.5964653902798233", + "0.6494845360824743", + "0.7025036818851251", + "0.7555228276877761", + "0.8085419734904271", + "0.8615611192930782", + "0.914580265095729", + "0.96759941089838", + "1.020618556701031", + "1.0736377025036818", + "1.1266568483063328", + "1.1796759941089838", + "1.2326951399116348", + "1.285714285714286", + "1.3387334315169366", + "1.3917525773195876", + "1.4447717231222386", + "1.4977908689248896", + "1.5508100147275405", + "1.6038291605301915", + "1.6568483063328423", + "1.7098674521354933", + "1.7628865979381445", + "1.7614138438880704", + "1.8159057437407953", + "1.8689248895434465", + "1.9219440353460973", + "1.974963181148748", + "2.0279823269513995", + "2.0810014727540502", + "2.1340206185567006", + "2.1870397643593518", + "2.240058910162003", + "2.2930780559646537", + "2.346097201767305", + "2.3991163475699557", + "2.452135493372607", + "2.5051546391752577", + "2.5581737849779085", + "2.6111929307805597", + "2.6642120765832105", + "2.7172312223858617", + "2.770250368188513", + "2.823269513991163", + "2.8762886597938144", + "2.929307805596465", + "2.9823269513991164", + "3.035346097201767", + "3.0883652430044184", + "3.141384388807069", + "3.1855670103092786", + "3.212076583210604", + "3.2297496318114876", + "3.247422680412371", + "3.2650957290132547", + "3.282768777614138", + "3.300441826215022", + "3.3181148748159055", + "3.3446244477172313", + "3.38880706921944", + "3.441826215022091", + "3.4948453608247423", + "3.547864506627393", + "3.6008836524300443", + "3.653902798232695", + "3.7069219440353467", + "3.759941089837997", + "3.804123711340206", + "3.8350515463917527", + "3.857142857142857", + "3.874815905743741", + "3.8924889543446244", + "3.9101620029455084", + "3.9366715758468334", + "3.949926362297496", + "3.9808541973490428", + "3.9985272459499264", + "4.01620029455081", + "4.033873343151693", + "4.051546391752577", + "4.047128129602356", + "4.060382916053019", + "4.055964653902798", + "4.070692194403534", + "4.06480117820324", + "4.078055964653903", + "4.088365243004418", + "4.082474226804123", + "4.095729013254786", + "4.1060382916053015", + "4.139911634756995", + "4.142562592047128", + "4.166421207658321", + "4.175257731958763", + "4.182621502209131", + "4.191458026509574", + "4.210603829160529", + "4.228276877761414", + "4.250368188512518", + "4.2901325478645065", + "4.343151693667157", + "4.396170839469808", + "4.44918998527246", + "4.5022091310751104", + "4.555228276877761", + "4.608247422680412", + "4.661266568483064", + "4.714285714285714", + "4.767304860088365", + "4.820324005891017", + "4.873343151693667", + "4.926362297496317", + "4.97938144329897", + "5.03240058910162", + "5.085419734904271", + "5.1384388807069215", + "5.191458026509573", + "5.244477172312224", + "5.297496318114875", + "5.350515463917525", + "5.403534609720176", + "5.456553755522828", + "5.509572901325479", + "5.562592047128129", + "5.615611192930779", + "5.668630338733432", + "5.721649484536082", + "5.774668630338733", + "5.827687776141384", + "5.876288659793816" + ], + "y": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + -12.04780095816053, + -11.537710972359221, + -11.027620986557913, + -10.517531000756605, + -10.007441014955297, + -9.49735102915399, + -8.98726104335268, + -8.477171057551374, + -7.967081071750066, + -7.456991085948756, + -6.94690110014745, + -6.436811114346142, + -5.926721128544834, + -5.416631142743526, + -4.906541156942216, + -4.396451171140912, + -3.886361185339604, + -3.376271199538296, + -2.866181213736988, + -2.3560912279356785, + -1.8460012421343706, + -1.3359112563330644, + -0.8258212705317582, + -0.31573128473044676, + -0.32990045100271104, + 0.19435870107085762, + 0.7044486868721691, + 1.214538672673477, + 1.7246286584747814, + 2.234718644276093, + 2.744808630077401, + 3.2548986158787017, + 3.764988601680013, + 4.275078587481321, + 4.785168573282629, + 5.295258559083937, + 5.805348544885245, + 6.315438530686556, + 6.825528516487861, + 7.335618502289169, + 7.845708488090477, + 8.355798473891785, + 8.865888459693092, + 9.375978445494404, + 9.886068431295705, + 10.396158417097016, + 10.90624840289832, + 11.416338388699632, + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "mode": "lines", + "name": "Fit", + "line": { + "color": "rgb(0, 204, 0)", + "width": 4 + }, + "opacity": 0.55, + "type": "scattergl" + } + ], + "layout": { + "title": "Extracting the Acceleration of Gravity
from Velocity Data", + "titlefont": { + "color": "", + "family": "", + "size": 18 + }, + "font": { + "family": "Times New Roman", + "size": 12, + "color": "#000" + }, + "showlegend": true, + "autosize": false, + "width": 800, + "height": 440, + "xaxis": { + "title": "Time (s)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -0.01, + 6 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "outside", + "showticklabels": true, + "tick0": 0, + "dtick": 1, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "#000", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": false + }, + "yaxis": { + "title": "Velocity (m/s)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -14.271205357142858, + 14.69084821428571 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "outside", + "showticklabels": true, + "tick0": 0, + "dtick": 5, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "#000", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "legend": { + "x": 0.9652176738141652, + "y": 0.834367816091954, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "rgb(0, 0, 0)" + }, + "bgcolor": "rgba(217, 217, 217, 0.31)", + "bordercolor": "rgba(217, 217, 217, 0.32)", + "borderwidth": 1, + "xanchor": "auto", + "yanchor": "auto" + }, + "margin": { + "l": 70, + "r": 40, + "b": 60, + "t": 80, + "pad": 2, + "autoexpand": true + }, + "paper_bgcolor": "rgba(217, 217, 217, 0.37)", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "stack", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_22.json b/test/image/mocks/gl2d_22.json new file mode 100644 index 00000000000..b6856ff7c4a --- /dev/null +++ b/test/image/mocks/gl2d_22.json @@ -0,0 +1,536 @@ +{ + "data": [ + { + "x": [ + 0.2745828, + 0.6084574, + 0.5096348, + 0.490573, + 0.672185, + 0.9162287, + 0.6925859, + 0.43304, + 0.5602263, + 0.688225, + 0.5140796, + 0.7946838, + 0.7472041, + 0.6198329, + 0.1887226, + 0.2607859, + 0.298212, + 0.7095244, + 0.4948149, + 0.8802233, + 0.4759243, + 0.4978922, + 0.4551817, + 0.7567841, + 0.7107642, + 0.5373174, + 0.3999479, + 0.4249229, + 0.427395, + 0.6362453, + 0.7027798, + 0.8290062, + 0.7076494, + 0.2844114, + 0.7012079, + 0.5252903, + 0.3581651, + 0.4598303, + 0.4711324, + 0.5003926, + 0.5283441, + 0.4728993, + 0.41107, + 0.7465006, + 0.789414, + 0.6090213, + 0.5139681, + 0.784434, + 0.4262406, + 0.4397267, + 0.5113551, + 0.699221, + 0.4796254, + 0.6098452, + 0.4799747, + 0.5446012, + 0.1043925, + 0.7793422, + 0.7013112, + 0.2879599, + 0.005029248, + 0.831367, + 0.5118151, + 0.6867737, + 0.6185848, + 0.58273, + 0.7347273, + 0.5951995, + 0.1590054, + 0.6359341, + 0.431932, + 0.5387853, + 0.5439176, + 0.5686434, + 0.3884589, + 0.3857122, + 0.2851632, + 0.7194068, + 0.5187861, + 0.5906434, + 0.7069666, + 0.2687934, + 0.2730462, + 0.4647461, + 0.6381235, + 0.326215, + 0.3496917, + 0.6068356, + 0.5628589, + 0.6114233, + 0.6385066, + 0.7089051, + 0.1526521, + 0.5289359, + 0.5736565, + 0.1597208, + 0.518642, + 0.7134883, + 0.1958373, + 0.5084522 + ], + "y": [ + 0.3847886, + 0.641391, + 0.2755387, + 0.2738926, + 0.7589399, + 0.5964455, + 0.7739985, + 0.6734166, + 0.6230824, + 0.5240229, + 0.2356472, + 0.4986382, + 0.5412443, + 0.6013276, + 0.3175206, + 0.518264, + 0.8436307, + 0.3897152, + 0.5212212, + 0.5355197, + 0.3164944, + 0.5724257, + 0.5423177, + 0.02458256, + 0.9431606, + 0.7750537, + 0.7421726, + 0.6715111, + 0.4315454, + 0.2601702, + 0.4060387, + 0.6005118, + 0.8821356, + 0.2995901, + 0.8735208, + 0.2895402, + 0.6607297, + 0.4854665, + 0.1095986, + 0.9999312, + 0.2586879, + 0.3585169, + 0.4098131, + 0.4249161, + 0.5425741, + 0.5658551, + 0.9184134, + 0.784355, + 0.6926447, + 0.3685198, + 0.7148519, + 0.4602255, + 0.4422565, + 0.6091762, + 0.2609293, + 0.01898207, + 0.4172908, + 0.3313285, + 0.6706704, + 0.4474902, + 0.7879197, + 0.3950439, + 0.6252603, + 0.5980748, + 0.5784267, + 0.306143, + 0.5120303, + 0.4746844, + 0.3845672, + 0.4389648, + 0.4033444, + 0.4379424, + 0.3276909, + 0.2559954, + 0.3709007, + 0.4421715, + 0.7000844, + 0.3823873, + 0.8114967, + 0.2277254, + 0.8800163, + 0.5355718, + 0.06667808, + 0.6413784, + 0.05493311, + 0.5682398, + 0.9502476, + 0.4667727, + 0.5974046, + 0.6345938, + 0.4250089, + 0.6640978, + 0.4250252, + 0.6756984, + 0.3003977, + 0.5140921, + 0.4418917, + 0.3443315, + 0.5177113, + 0.2052651 + ], + "mode": "markers", + "name": "trace 0", + "marker": { + "symbol": "circle" + }, + "type": "scattergl" + }, + { + "x": [ + -0.1342564, + -0.1076115, + -0.01476789, + 0.2203682, + 0.1071203, + 0.27828, + 0.2410137, + 0.03126907, + -0.09439932, + 0.1039596, + 0.05031307, + 0.274875, + -0.004807051, + 0.3256502, + 0.1363225, + 0.1663417, + -0.002147718, + -0.04512038, + 0.07485314, + 0.1030421, + -0.1087005, + 0.1157779, + -0.009807975, + 0.160193, + 0.239466, + -0.1701312, + -0.003660461, + 0.06127632, + -0.2216532, + -0.2705924, + -0.1419323, + 0.2279143, + 0.3312297, + 0.008872781, + 0.03549226, + 0.1253899, + 0.2163528, + 0.2256911, + 0.4579942, + 0.1675411, + -0.06685452, + 0.4312355, + -0.04255102, + -0.0007124913, + 0.2295949, + 0.1250768, + 0.1097492, + 0.1008452, + -0.09136819, + -0.08363584, + -0.1395033, + 0.2079811, + -0.02796698, + -0.1478058, + 0.1680786, + 0.06371863, + -0.08616526, + 0.1414658, + 0.1628091, + 0.1719133, + 0.01284859, + 0.04943766, + 0.03827147, + 0.123497, + 0.1729281, + 0.3346802, + 0.01212485, + 0.01018981, + 0.07477744, + 0.2658934, + 0.04307599, + 0.2326222, + -0.005089467, + -0.02228495, + 0.3590158, + 0.2229071, + 0.1811178, + 0.1009488, + 0.01431616, + 0.2678902 + ], + "y": [ + 1.241407, + 0.8797606, + 0.9560205, + 1.053963, + 1.285517, + 1.148887, + 1.263457, + 1.027853, + 1.159638, + 1.02231, + 0.865607, + 1.138473, + 1.104881, + 1.004787, + 1.031261, + 1.00257, + 1.165058, + 0.9698999, + 1.173983, + 1.063549, + 1.070477, + 0.9904026, + 0.995398, + 1.015882, + 0.9850381, + 1.011697, + 1.019743, + 0.9100328, + 0.8818258, + 0.7088867, + 1.168211, + 0.978159, + 1.127626, + 1.050722, + 1.20473, + 1.147426, + 1.28495, + 1.129772, + 1.167373, + 1.052659, + 0.9856654, + 0.8844718, + 0.9285932, + 1.320093, + 0.9377192, + 1.164003, + 1.108532, + 1.186178, + 1.072027, + 1.065784, + 1.178757, + 1.060408, + 1.130207, + 1.277109, + 1.177386, + 1.025656, + 1.065474, + 1.277075, + 0.8769456, + 1.139783, + 1.293347, + 1.101423, + 1.124847, + 1.220764, + 1.388462, + 1.219396, + 1.029278, + 1.100705, + 1.014257, + 1.101355, + 0.7951187, + 0.9742185, + 1.169975, + 1.159754, + 0.9336378, + 1.164015, + 1.125098, + 1.230621, + 1.124994, + 0.9821758 + ], + "mode": "markers", + "name": "trace 1", + "marker": { + "symbol": "cross" + }, + "type": "scattergl" + } + ], + "layout": { + "title": "Click to enter Plot title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "font": { + "family": "'Open sans', verdana, arial, sans-serif", + "size": 12, + "color": "#444" + }, + "showlegend": false, + "autosize": true, + "width": 1152, + "height": 481, + "xaxis": { + "title": "Click to enter X axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -0.4, + 0.9999999999999998 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "outside", + "showticklabels": true, + "tick0": 0, + "dtick": 0.2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Click to enter Y axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -0.07433281386749718, + 1.4817768838674972 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "outside", + "showticklabels": true, + "tick0": 0, + "dtick": 0.2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "legend": { + "x": 1.02, + "y": 1, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#444", + "borderwidth": 0, + "xanchor": "left", + "yanchor": "top" + }, + "margin": { + "l": 80, + "r": 80, + "b": 80, + "t": 100, + "pad": 0, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "group", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_24.json b/test/image/mocks/gl2d_24.json new file mode 100644 index 00000000000..08ad9fbca93 --- /dev/null +++ b/test/image/mocks/gl2d_24.json @@ -0,0 +1,210 @@ +{ + "data": [ + { + "x": [ + 1, + 2, + 3 + ], + "y": [ + 4, + 5, + 6 + ], + "name": "Experiment", + "marker": { + "color": "rgb(54,144,192)", + "size": 12, + "symbol": "square", + "line": { + "color": "darkblue", + "width": 3 + }, + "opacity": 1 + }, + "line": { + "color": "rgb(3,78,123)", + "width": 6, + "dash": "dot" + }, + "type": "scattergl" + }, + { + "x": [ + 1, + 2, + 3 + ], + "y": [ + 2, + 10, + 12 + ], + "name": "Control", + "marker": { + "color": "fuchsia", + "size": 16, + "symbol": "cross", + "line": { + "color": "", + "width": 0 + }, + "opacity": 0.9 + }, + "line": { + "color": "purple", + "width": 4, + "dash": "dashdot" + }, + "type": "scattergl" + } + ], + "layout": { + "title": "Click to enter Plot title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "font": { + "family": "'Open sans', verdana, arial, sans-serif", + "size": 12, + "color": "#444" + }, + "showlegend": true, + "autosize": true, + "width": 1276, + "height": 506, + "xaxis": { + "title": "Click to enter X axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + 0.8886587260486795, + 3.1113412739513207 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 0.5, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Click to enter Y axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + 1.4444444444444444, + 12.555555555555555 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "legend": { + "x": 1.02, + "y": 1, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#444", + "borderwidth": 0, + "xanchor": "left", + "yanchor": "top" + }, + "margin": { + "l": 80, + "r": 80, + "b": 80, + "t": 100, + "pad": 0, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "group", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_28.json b/test/image/mocks/gl2d_28.json new file mode 100644 index 00000000000..7c560d7ace9 --- /dev/null +++ b/test/image/mocks/gl2d_28.json @@ -0,0 +1,1019 @@ +{ + "data": [ + { + "x": [ + "1960.2469135802469", + "1962.0987654320988", + "1964.1152263374486", + "1966.0905349794239", + "1967.0781893004116", + "1968.1893004115227", + "1969.0946502057614", + "1970.0823045267489", + "1971.0699588477366", + "1972.0987654320988", + "1973.1275720164608", + "1974.0740740740741", + "1975.102880658436", + "1976.0905349794239", + "1977.119341563786", + "1978.1069958847736", + "1979.1358024691358", + "1980.0823045267489", + "1981.111111111111", + "1982.0576131687242", + "1983.0864197530864", + "1984.0329218106997", + "1986.0493827160494", + "1986.9958847736625", + "1987.9423868312758", + "1988.8477366255145", + "1990.0411522633744", + "1991.3168724279835", + "1992.2222222222222", + "1993.045267489712", + "1994.0329218106997", + "1995.0617283950617", + "1998.0658436213992", + "2000", + "2001.0288065843622", + "2002.633744855967", + "2003.2921810699588", + "2003.9094650205761" + ], + "y": [ + "14.069767441860467", + "15.34883720930232", + "14.069767441860463", + "16.046511627906977", + "15.232558139534873", + "15.232558139534865", + "16.395348837209298", + "15.232558139534868", + "15.116279069767444", + "14.302325581395326", + "15.58139534883719", + "15.232558139534856", + "14.069767441860442", + "15.348837209302305", + "14.65116279069765", + "14.883720930232531", + "14.651162790697636", + "13.604651162790699", + "13.953488372092993", + "13.023255813953481", + "14.186046511627906", + "14.30232558139532", + "14.18604651162791", + "16.046511627906945", + "16.62790697674418", + "16.62790697674415", + "16.279069767441847", + "15.232558139534843", + "14.767441860465059", + "14.767441860465055", + "13.60465116279067", + "13.255813953488389", + "12.906976744185997", + "13.023255813953442", + "10.813953488372055", + "10.116279069767359", + "9.883720930232519", + "9.651162790697626" + ], + "name": "0-20th", + "line": { + "color": "rgb(67, 67, 67)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2469135802469", + "1962.1399176954733", + "1963.4979423868313", + "1964.1152263374486", + "1966.008230452675", + "1967.037037037037", + "1969.0946502057614", + "1971.111111111111", + "1972.0987654320988", + "1973.0864197530864", + "1974.0740740740741", + "1975.102880658436", + "1976.0905349794239", + "1977.0781893004116", + "1978.0658436213992", + "1980.0823045267489", + "1981.0699588477366", + "1982.1399176954733", + "1983.1275720164608", + "1984.0329218106997", + "1984.9382716049383", + "1986.6666666666667", + "1988.0658436213992", + "1989.053497942387", + "1989.670781893004", + "1991.440329218107", + "1993.045267489712", + "1994.3621399176955", + "1995.0617283950617", + "1996.0493827160494", + "1997.037037037037", + "1998.0658436213992", + "2000", + "2001.0288065843622", + "2003.9094650205761" + ], + "y": [ + "14.302325581395351", + "16.97674418604651", + "16.395348837209294", + "16.27906976744186", + "17.44186046511627", + "17.325581395348824", + "19.53488372093023", + "17.09302325581396", + "16.744186046511633", + "18.139534883720927", + "18.488372093023266", + "15.69767441860465", + "17.093023255813936", + "15.930232558139537", + "17.093023255813947", + "16.395348837209312", + "17.093023255813947", + "16.046511627906973", + "15.81395348837207", + "16.97674418604651", + "16.74418604651159", + "16.279069767441822", + "16.16279069767438", + "15.697674418604665", + "15.813953488372093", + "15.813953488372036", + "16.162790697674424", + "14.30232558139528", + "13.255813953488389", + "13.953488372092991", + "12.79069767441857", + "12.790697674418567", + "13.13953488372093", + "11.511627906976756", + "10.697674418604622" + ], + "name": "20-40th", + "line": { + "color": "rgb(67, 67, 67)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2057613168724", + "1962.0987654320988", + "1964.1152263374486", + "1966.1316872427983", + "1967.119341563786", + "1969.1358024691358", + "1971.0699588477366", + "1972.1399176954733", + "1973.1687242798355", + "1974.1152263374486", + "1975.102880658436", + "1976.0905349794239", + "1977.0781893004116", + "1978.0658436213992", + "1980.1234567901236", + "1981.0699588477366", + "1982.1399176954733", + "1983.0864197530864", + "1984.0329218106997", + "1987.119341563786", + "1988.0658436213992", + "1989.670781893004", + "1992.0164609053497", + "1993.0041152263375", + "1993.9506172839506", + "1995.102880658436", + "1997.037037037037", + "1997.9835390946503", + "1999.2181069958847", + "2000.0823045267489", + "2001.111111111111", + "2003.9094650205761" + ], + "y": [ + "16.27906976744186", + "18.023255813953483", + "17.325581395348827", + "18.95348837209302", + "18.953488372093016", + "21.395348837209305", + "19.651162790697683", + "19.883720930232563", + "21.627906976744182", + "21.395348837209298", + "20.23255813953488", + "20.69767441860465", + "19.883720930232542", + "21.046511627906977", + "21.627906976744192", + "22.32558139534884", + "20.697674418604645", + "20.46511627906977", + "21.046511627906977", + "20.5813953488372", + "21.27906976744185", + "21.162790697674417", + "20.116279069767437", + "20.465116279069772", + "20.232558139534873", + "20.46511627906976", + "20.465116279069772", + "20", + "19.883720930232496", + "20.11627906976743", + "17.90697674418598", + "16.2790697674418" + ], + "name": "40-60th", + "line": { + "color": "rgb(67, 67, 67)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2057613168724", + "1962.0987654320988", + "1964.0740740740741", + "1966.0493827160494", + "1967.037037037037", + "1968.0246913580247", + "1969.0946502057614", + "1971.1522633744855", + "1972.0987654320988", + "1973.045267489712", + "1974.0740740740741", + "1975.1440329218108", + "1976.008230452675", + "1977.1604938271605", + "1978.0658436213992", + "1979.053497942387", + "1980.1234567901236", + "1981.0699588477366", + "1983.0864197530864", + "1984.0329218106997", + "1987.0781893004116", + "1988.0658436213992", + "1990.0823045267489", + "1991.111111111111", + "1992.9218106995884", + "1994.156378600823", + "1997.037037037037", + "1998.0658436213992", + "2000.0411522633744", + "2001.1934156378602", + "2003.9094650205761" + ], + "y": [ + "16.976744186046513", + "18.25581395348837", + "17.209302325581397", + "19.1860465116279", + "19.302325581395337", + "20.697674418604652", + "21.627906976744182", + "20.232558139534884", + "20.813953488372093", + "22.674418604651162", + "23.023255813953487", + "22.558139534883722", + "22.906976744186046", + "22.209302325581397", + "22.790697674418606", + "24.30232558139535", + "24.65116279069767", + "25.581395348837216", + "23.372093023255815", + "23.837209302325576", + "23.720930232558135", + "24.41860465116278", + "24.534883720930225", + "24.302325581395344", + "24.186046511627914", + "24.65116279069767", + "24.767441860465116", + "24.06976744186046", + "24.06976744186047", + "22.32558139534884", + "20.697674418604638" + ], + "name": "60-80th", + "line": { + "color": "rgb(67, 67, 67)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2469135802469", + "1962.0987654320988", + "1963.991769547325", + "1966.0493827160494", + "1966.9958847736625", + "1968.2304526748972", + "1969.053497942387", + "1971.111111111111", + "1972.1399176954733", + "1972.962962962963", + "1973.991769547325", + "1975.0617283950617", + "1976.008230452675", + "1977.037037037037", + "1978.1069958847736", + "1979.0946502057614", + "1980.946502057613", + "1983.0864197530864", + "1983.991769547325", + "1987.037037037037", + "1989.8765432098764", + "1991.6460905349795", + "1996.1316872427983", + "1998.0658436213992", + "1999.8765432098764", + "2001.5637860082304", + "2003.8271604938273" + ], + "y": [ + "17.67441860465116", + "18.720930232558132", + "17.906976744186043", + "19.534883720930218", + "19.651162790697658", + "21.3953488372093", + "22.093023255813954", + "20.348837209302328", + "20.697674418604656", + "22.790697674418606", + "23.255813953488374", + "23.25581395348837", + "23.48837209302326", + "23.023255813953483", + "23.372093023255818", + "25.93023255813953", + "27.67441860465116", + "25.34883720930233", + "25.930232558139526", + "25.697674418604656", + "26.395348837209294", + "25.813953488372093", + "27.093023255813943", + "26.279069767441868", + "26.744186046511633", + "24.767441860465127", + "23.023255813953476" + ], + "name": "80-90th", + "line": { + "color": "rgb(172, 217, 255)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2057613168724", + "1962.0987654320988", + "1964.0740740740741", + "1966.0493827160494", + "1967.0781893004116", + "1968.1069958847736", + "1969.0946502057614", + "1971.111111111111", + "1973.045267489712", + "1974.0329218106997", + "1976.0493827160494", + "1977.0781893004116", + "1977.9423868312758", + "1979.0946502057614", + "1981.0699588477366", + "1982.1399176954733", + "1983.1687242798355", + "1983.9094650205761", + "1986.4197530864199", + "1987.119341563786", + "1988.4362139917696", + "1989.9588477366256", + "1991.1522633744855", + "1992.798353909465", + "1994.0329218106997", + "1996.1316872427983", + "1998.1069958847736", + "1999.2181069958847", + "2000", + "2003.9094650205761" + ], + "y": [ + "18.953488372093023", + "20.116279069767444", + "19.186046511627907", + "20.465116279069765", + "20.232558139534884", + "22.209302325581397", + "22.790697674418606", + "20.46511627906977", + "23.48837209302326", + "23.95348837209302", + "23.953488372093027", + "23.372093023255815", + "23.48837209302325", + "27.093023255813957", + "29.418604651162795", + "26.976744186046506", + "26.62790697674419", + "27.093023255813954", + "27.093023255813947", + "27.55813953488373", + "27.55813953488372", + "28.139534883720938", + "27.67441860465117", + "28.023255813953497", + "28.837209302325572", + "29.069767441860463", + "28.604651162790695", + "28.953488372093023", + "28.837209302325576", + "25.116279069767444" + ], + "name": "90-95th", + "line": { + "color": "rgb(118, 173, 209)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2469135802469", + "1962.0576131687242", + "1964.156378600823", + "1966.008230452675", + "1967.119341563786", + "1968.1069958847736", + "1969.1358024691358", + "1971.0699588477366", + "1972.2633744855966", + "1973.0864197530864", + "1974.0740740740741", + "1975.1851851851852", + "1976.0493827160494", + "1978.0246913580247", + "1979.0946502057614", + "1981.0288065843622", + "1982.1810699588477", + "1983.045267489712", + "1984.0329218106997", + "1986.0493827160494", + "1987.0781893004116", + "1987.9423868312758", + "1989.053497942387", + "1990.164609053498", + "1991.440329218107", + "1992.716049382716", + "1994.1975308641975", + "1996.008230452675", + "1997.1604938271605", + "1998.7654320987654", + "2000.0411522633744", + "2001.2345679012346", + "2003.8683127572017" + ], + "y": [ + "23.72093023255814", + "25.697674418604652", + "24.651162790697676", + "25.58139534883721", + "24.651162790697672", + "27.093023255813954", + "27.093023255813954", + "24.53488372093023", + "25.930232558139533", + "27.674418604651162", + "27.20930232558139", + "27.674418604651166", + "27.90697674418605", + "27.209302325581394", + "30.697674418604652", + "31.744186046511633", + "28.720930232558146", + "27.67441860465116", + "28.13953488372093", + "27.790697674418603", + "29.302325581395355", + "28.720930232558132", + "28.837209302325583", + "28.720930232558135", + "28.720930232558132", + "29.41860465116279", + "30.93023255813953", + "31.627906976744182", + "31.046511627906966", + "31.27906976744186", + "31.279069767441854", + "29.7674418604651", + "27.441860465116278" + ], + "name": "95-99th", + "marker": { + "color": "rgb(65, 134, 174)" + }, + "line": { + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2057613168724", + "1962.1399176954733", + "1964.0329218106997", + "1966.0905349794239", + "1967.0781893004116", + "1968.0658436213992", + "1968.9300411522634", + "1969.8765432098764", + "1971.111111111111", + "1973.1275720164608", + "1974.0740740740741", + "1975.1440329218108", + "1977.037037037037", + "1978.0658436213992", + "1979.053497942387", + "1981.0699588477366", + "1982.0576131687242", + "1983.045267489712", + "1984.1152263374486", + "1985.0617283950617", + "1986.0493827160494", + "1987.0781893004116", + "1988.0658436213992", + "1989.1358024691358", + "1990.1234567901236", + "1991.1522633744855", + "1991.9753086419753", + "1995.102880658436", + "1996.0905349794239", + "1997.037037037037", + "1999.1769547325102", + "2000.5761316872429", + "2003.9506172839506" + ], + "y": [ + "34.30232558139535", + "36.04651162790698", + "35.348837209302324", + "36.27906976744186", + "34.53488372093023", + "37.67441860465116", + "37.44186046511627", + "36.51162790697674", + "34.651162790697676", + "36.74418604651163", + "35.69767441860465", + "36.74418604651163", + "37.2093023255814", + "35.465116279069775", + "38.255813953488364", + "37.55813953488372", + "33.25581395348838", + "31.395348837209298", + "31.860465116279066", + "31.04651162790698", + "31.04651162790698", + "33.13953488372094", + "31.976744186046517", + "32.09302325581395", + "31.744186046511622", + "31.74418604651163", + "32.674418604651166", + "37.55813953488372", + "37.674418604651166", + "36.511627906976756", + "36.51162790697674", + "35.34883720930233", + "31.511627906976738" + ], + "name": "99-99.5th", + "line": { + "color": "rgb(74, 140, 177)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2469135802469", + "1962.0987654320988", + "1966.0905349794239", + "1967.119341563786", + "1968.148148148148", + "1969.1358024691358", + "1970.1234567901236", + "1971.0699588477366", + "1972.2222222222222", + "1973.1275720164608", + "1974.0740740740741", + "1975.102880658436", + "1977.037037037037", + "1978.0658436213992", + "1979.0946502057614", + "1981.0699588477366", + "1982.0576131687242", + "1983.0864197530864", + "1985.102880658436", + "1986.0905349794239", + "1987.0781893004116", + "1988.1069958847736", + "1989.2181069958847", + "1990.0823045267489", + "1992.0164609053497", + "1994.0329218106997", + "1995.0205761316872", + "1996.008230452675", + "1997.201646090535", + "1999.4238683127571", + "2001.0699588477366", + "2003.9094650205761" + ], + "y": [ + "41.74418604651163", + "43.6046511627907", + "43.6046511627907", + "41.74418604651163", + "45.93023255813954", + "44.883720930232556", + "44.76744186046511", + "43.139534883720934", + "43.13953488372094", + "43.72093023255814", + "42.325581395348834", + "43.95348837209302", + "44.18604651162791", + "42.209302325581405", + "43.95348837209302", + "42.09302325581395", + "37.09302325581396", + "35.34883720930232", + "35", + "34.06976744186047", + "36.27906976744186", + "33.48837209302325", + "33.48837209302326", + "33.13953488372094", + "35", + "40.58139534883722", + "41.395348837209305", + "41.3953488372093", + "39.65116279069768", + "38.95348837209302", + "37.67441860465116", + "33.37209302325582" + ], + "name": "99.5-99.9th", + "line": { + "color": "rgb(40, 119, 157)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2469135802469", + "1963.991769547325", + "1966.1316872427983", + "1967.0781893004116", + "1968.1069958847736", + "1969.0946502057614", + "1970.0823045267489", + "1972.0987654320988", + "1973.045267489712", + "1974.1152263374486", + "1975.0617283950617", + "1977.0781893004116", + "1978.0658436213992", + "1979.1358024691358", + "1981.0699588477366", + "1982.0987654320988", + "1983.0041152263375", + "1985.0617283950617", + "1986.0905349794239", + "1987.037037037037", + "1988.1069958847736", + "1989.0123456790122", + "1990.0411522633744", + "1991.0699588477366", + "1992.0164609053497", + "1992.5925925925926", + "1993.5802469135801", + "1994.8148148148148", + "1996.008230452675", + "1997.0781893004116", + "1998.724279835391", + "2000", + "2000.946502057613", + "2003.9094650205761" + ], + "y": [ + "55.58139534883721", + "57.093023255813954", + "56.27906976744186", + "53.0232558139535", + "57.906976744186046", + "57.09302325581396", + "59.18604651162791", + "56.51162790697674", + "56.16279069767442", + "54.186046511627914", + "56.27906976744187", + "55.58139534883721", + "52.558139534883715", + "53.13953488372093", + "49.651162790697676", + "42.20930232558139", + "41.395348837209305", + "40.697674418604656", + "38.95348837209302", + "40.46511627906976", + "34.76744186046511", + "35.116279069767444", + "34.53488372093023", + "36.74418604651162", + "36.97674418604652", + "40.93023255813954", + "44.41860465116279", + "45.58139534883722", + "44.999999999999986", + "42.674418604651166", + "41.86046511627906", + "40.58139534883719", + "40.69767441860466", + "34.65116279069769" + ], + "name": "99.9-99-99th", + "line": { + "color": "rgb(8, 94, 137)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + }, + { + "x": [ + "1960.2469135802469", + "1962.0987654320988", + "1964.1152263374486", + "1966.008230452675", + "1967.119341563786", + "1968.1069958847736", + "1969.0946502057614", + "1970.164609053498", + "1971.0288065843622", + "1972.0987654320988", + "1973.045267489712", + "1974.0740740740741", + "1975.1440329218108", + "1976.0493827160494", + "1978.0658436213992", + "1981.111111111111", + "1982.0987654320988", + "1983.0864197530864", + "1984.1152263374486", + "1985.0205761316872", + "1986.0905349794239", + "1987.037037037037", + "1988.0658436213992", + "1989.0123456790122", + "1990", + "1991.0699588477366", + "1991.9753086419753", + "1992.798353909465", + "1993.6213991769548", + "1994.9382716049383", + "1995.9670781893003", + "1996.5432098765432", + "1997.1604938271605", + "2000.0823045267489", + "2001.0699588477366", + "2003.9506172839506" + ], + "y": [ + "71.62790697674419", + "70.93023255813955", + "71.97674418604652", + "69.88372093023256", + "65", + "69.18604651162791", + "68.02325581395348", + "74.76744186046513", + "74.06976744186046", + "70.5813953488372", + "70.58139534883722", + "67.44186046511628", + "70", + "70.93023255813955", + "64.18604651162791", + "56.04651162790698", + "45.116279069767444", + "45.11627906976744", + "44.65116279069767", + "43.48837209302325", + "40.116279069767444", + "43.48837209302326", + "35.46511627906977", + "36.74418604651163", + "35.69767441860465", + "38.13953488372094", + "38.139534883720934", + "44.30232558139534", + "46.74418604651164", + "47.674418604651166", + "46.744186046511636", + "45.46511627906976", + "43.83720930232559", + "41.046511627906995", + "41.395348837209305", + "35.23255813953489" + ], + "name": "99.99-100th", + "line": { + "color": "rgb(2, 63, 101)", + "width": 3 + }, + "opacity": 0.84, + "type": "scattergl" + } + ], + "layout": { + "title": "
Average effective tax rates, by income percentiles, 1960-2004", + "titlefont": { + "color": "", + "family": "Arial, sans-serif", + "size": 14 + }, + "font": { + "family": "Arial, sans-serif", + "size": 12, + "color": "#000" + }, + "showlegend": true, + "autosize": false, + "width": 606, + "height": 400, + "xaxis": { + "title": "Note: Data are for cash income. Source: Piketty and Saez (2007)", + "titlefont": { + "color": "rgb(102, 102, 102)", + "family": "", + "size": 11 + }, + "range": [ + 1960, + 2004 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": false, + "zeroline": true, + "showline": true, + "autotick": true, + "nticks": 0, + "ticks": "outside", + "showticklabels": true, + "tick0": 0, + "dtick": 10, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "#ddd", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "rgba(0, 0, 0, 0)", + "linewidth": 0.1, + "anchor": "y", + "position": 0, + "mirror": true, + "overlaying": false, + "autorange": false + }, + "yaxis": { + "title": "Tax Rate (%)", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + 0, + 80 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": false, + "showline": true, + "autotick": false, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 20, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#000", + "tickangle": 0, + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "e", + "showexponent": "all", + "gridcolor": "rgb(204, 204, 204)", + "gridwidth": 1, + "zerolinecolor": "#000", + "zerolinewidth": 1, + "linecolor": "rgba(0, 0, 0, 0)", + "linewidth": 0.1, + "anchor": "x", + "position": 0, + "mirror": true, + "overlaying": false, + "autorange": false + }, + "legend": { + "x": 1.02, + "y": 0.9689655172413794, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "rgba(255, 255, 255, 0)", + "bordercolor": "rgba(255, 255, 255, 0)", + "borderwidth": 0.1, + "xanchor": "left", + "yanchor": "auto" + }, + "margin": { + "l": 55, + "r": 0, + "b": 50, + "t": 60, + "pad": 2, + "autoexpand": true + }, + "paper_bgcolor": "rgb(245, 245, 247)", + "plot_bgcolor": "rgb(245, 245, 247)", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "stack", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_30.json b/test/image/mocks/gl2d_30.json new file mode 100644 index 00000000000..62d058c340c --- /dev/null +++ b/test/image/mocks/gl2d_30.json @@ -0,0 +1,359 @@ +{ + "data": [ + { + "x": [ + 0, + 0.003960976008861991, + 0.03150059203293912, + 0.10526859511270904, + 0.24609022226350277, + 0.4721359549995793, + 0.7981864223520572, + 1.2350188542663474, + 1.7889371755074976, + 2.461462734490049, + 3.2491969623290635, + 4.14386115680882, + 5.132512300041106, + 6.1979275700621805, + 7.3191442169026075, + 8.472135954999576, + 9.630602171766963, + 10.766842238643621, + 11.852684178251655, + 12.860434996919306, + 13.763819204711734, + 14.538872443229218, + 15.164758710752322, + 15.624482359326736, + 15.905469744054013, + 16, + 15.905469744054013, + 15.624482359326741, + 15.164758710752327, + 14.538872443229218, + 13.763819204711739, + 12.86043499691931, + 11.852684178251652, + 10.766842238643612, + 9.63060217176696, + 8.47213595499958, + 7.31914421690261, + 6.1979275700621805, + 5.132512300041111, + 4.143861156808825, + 3.2491969623290653, + 2.4614627344900533, + 1.7889371755074963, + 1.2350188542663494, + 0.7981864223520586, + 0.4721359549995798, + 0.2460902222635041, + 0.10526859511270895, + 0.031500592032939326, + 0.00396097600886203, + 2.9386816277228384e-47, + -0.003960976008861982, + -0.03150059203293916, + -0.10526859511270932, + -0.24609022226350213, + -0.4721359549995788, + -0.7981864223520572, + -1.235018854266344, + -1.7889371755074983, + -2.4614627344900457, + -3.249196962329056, + -4.14386115680882, + -5.132512300041101, + -6.1979275700621805, + -7.319144216902614, + -8.472135954999576, + -9.630602171766972, + -10.766842238643616, + -11.852684178251664, + -12.86043499691931, + -13.763819204711734, + -14.538872443229222, + -15.164758710752327, + -15.624482359326736, + -15.905469744054013, + -16, + -15.905469744054013, + -15.624482359326741, + -15.164758710752327, + -14.538872443229218, + -13.763819204711739, + -12.860434996919315, + -11.852684178251668, + -10.766842238643608, + -9.630602171766963, + -8.472135954999583, + -7.31914421690262, + -6.197927570062197, + -5.132512300041113, + -4.14386115680882, + -3.2491969623290653, + -2.4614627344900546, + -1.7889371755075063, + -1.2350188542663503, + -0.7981864223520564, + -0.4721359549995803, + -0.24609022226350444, + -0.10526859511270918, + -0.03150059203293943, + -0.003960976008861969 + ], + "y": [ + 5, + 5.080616300409131, + 5.31871565962469, + 5.703227351606254, + 6.216283644631066, + 6.834062241002363, + 7.527902076780752, + 8.26563327357082, + 9.01305111818169, + 9.73545703057813, + 10.399186938124421, + 10.973049417248317, + 11.42960223964364, + 11.746206161585576, + 11.905808285637567, + 11.897423278642144, + 11.716298184929967, + 11.363764486638898, + 10.84679837593238, + 10.177325907410598, + 9.371322893124, + 8.44776935024081, + 7.427524481592261, + 6.332190267304607, + 5.183029728496285, + 4.000000000000001, + 2.800950962391234, + 1.6010279838939834, + 0.4123031224474323, + -0.7563561397601696, + -1.8991869381244164, + -3.013220672255105, + -4.097795849274035, + -5.153937953718788, + -6.183657289781863, + -7.189219346142772, + -8.172442168003817, + -9.134071563663488, + -10.073278032307813, + -10.98730959132906, + -11.871322893123999, + -12.718401966731474, + -13.51976048484151, + -14.265110541886262, + -14.943169390053491, + -15.542266173501735, + -16.05100403502769, + -16.458929465331593, + -16.75716063099873, + -16.93892963581117, + -17, + -16.938929635811174, + -16.75716063099873, + -16.458929465331586, + -16.0510040350277, + -15.542266173501735, + -14.943169390053496, + -14.265110541886274, + -13.519760484841509, + -12.718401966731482, + -11.87132289312401, + -10.987309591329064, + -10.073278032307826, + -9.134071563663484, + -8.172442168003817, + -7.1892193461427745, + -6.183657289781854, + -5.153937953718787, + -4.097795849274024, + -3.0132206722551045, + -1.8991869381244244, + -0.7563561397601599, + 0.41230312244743295, + 1.6010279838939754, + 2.800950962391238, + 3.9999999999999964, + 5.183029728496271, + 6.3321902673046, + 7.4275244815922505, + 8.447769350240813, + 9.371322893123997, + 10.17732590741059, + 10.846798375932371, + 11.363764486638901, + 11.716298184929965, + 11.897423278642144, + 11.905808285637569, + 11.746206161585583, + 11.429602239643645, + 10.973049417248319, + 10.399186938124426, + 9.735457030578136, + 9.0130511181817, + 8.265633273570824, + 7.5279020767807525, + 6.834062241002364, + 6.2162836446310745, + 5.703227351606257, + 5.318715659624693, + 5.080616300409131 + ], + "name": "trace 0", + "line": { + "color": "red", + "width": 6 + }, + "type": "scattergl" + } + ], + "layout": { + "title": "Click to enter Plot title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "font": { + "family": "'Open sans', verdana, arial, sans-serif", + "size": 12, + "color": "#444" + }, + "autosize": true, + "width": 1366, + "height": 713, + "xaxis": { + "title": "Click to enter X axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -16, + 16 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": false, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 5, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Click to enter Y axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -18.605878238090977, + 13.511686523728546 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": false, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 5, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "legend": { + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#444", + "borderwidth": 0 + }, + "margin": { + "l": 80, + "r": 80, + "b": 80, + "t": 100, + "pad": 0, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "group", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_32.json b/test/image/mocks/gl2d_32.json new file mode 100644 index 00000000000..acbbacd5817 --- /dev/null +++ b/test/image/mocks/gl2d_32.json @@ -0,0 +1,1186 @@ +{ + "data": [ + { + "x": [ + "2014-04-07 00:23:00.361471", + "2014-04-07 01:23:00.361471", + "2014-04-07 02:23:00.361471", + "2014-04-07 03:23:00.361471", + "2014-04-07 04:23:00.361471", + "2014-04-07 05:23:00.361471", + "2014-04-07 06:23:00.361471", + "2014-04-07 07:23:00.361471", + "2014-04-07 08:23:00.361471", + "2014-04-07 09:23:00.361471", + "2014-04-07 10:23:00.361471", + "2014-04-07 11:23:00.361471", + "2014-04-07 12:23:00.361471", + "2014-04-07 13:23:00.361471", + "2014-04-07 14:23:00.361471", + "2014-04-07 15:23:00.361471", + "2014-04-07 16:23:00.361471", + "2014-04-07 17:23:00.361471", + "2014-04-07 18:23:00.361471", + "2014-04-07 19:23:00.361471", + "2014-04-07 20:23:00.361471", + "2014-04-07 21:23:00.361471", + "2014-04-07 22:23:00.361471", + "2014-04-07 23:23:00.361471", + "2014-04-08 00:23:00.361471", + "2014-04-08 01:23:00.361471", + "2014-04-08 02:23:00.361471", + "2014-04-08 03:23:00.361471", + "2014-04-08 04:23:00.361471", + "2014-04-08 05:23:00.361471", + "2014-04-08 06:23:00.361471", + "2014-04-08 07:23:00.361471", + "2014-04-08 08:23:00.361471", + "2014-04-08 09:23:00.361471", + "2014-04-08 10:23:00.361471", + "2014-04-08 11:23:00.361471", + "2014-04-08 12:23:00.361471", + "2014-04-08 13:23:00.361471", + "2014-04-08 14:23:00.361471", + "2014-04-08 15:23:00.361471", + "2014-04-08 16:23:00.361471", + "2014-04-08 17:23:00.361471", + "2014-04-08 18:23:00.361471", + "2014-04-08 19:23:00.361471", + "2014-04-08 20:23:00.361471", + "2014-04-08 21:23:00.361471", + "2014-04-08 22:23:00.361471", + "2014-04-08 23:23:00.361471", + "2014-04-09 00:23:00.361471", + "2014-04-09 01:23:00.361471", + "2014-04-09 02:23:00.361471", + "2014-04-09 03:23:00.361471", + "2014-04-09 04:23:00.361471", + "2014-04-09 05:23:00.361471", + "2014-04-09 06:23:00.361471", + "2014-04-09 07:23:00.361471", + "2014-04-09 08:23:00.361471", + "2014-04-09 09:23:00.361471", + "2014-04-09 10:23:00.361471", + "2014-04-09 11:23:00.361471", + "2014-04-09 12:23:00.361471", + "2014-04-09 13:23:00.361471", + "2014-04-09 14:23:00.361471", + "2014-04-09 15:23:00.361471", + "2014-04-09 16:23:00.361471", + "2014-04-09 17:23:00.361471", + "2014-04-09 18:23:00.361471", + "2014-04-09 19:23:00.361471", + "2014-04-09 20:23:00.361471", + "2014-04-09 21:23:00.361471", + "2014-04-09 22:23:00.361471", + "2014-04-09 23:23:00.361471", + "2014-04-10 00:23:00.361471", + "2014-04-10 01:23:00.361471", + "2014-04-10 02:23:00.361471", + "2014-04-10 03:23:00.361471", + "2014-04-10 04:23:00.361471", + "2014-04-10 05:23:00.361471", + "2014-04-10 06:23:00.361471", + "2014-04-10 07:23:00.361471", + "2014-04-10 08:23:00.361471", + "2014-04-10 09:23:00.361471", + "2014-04-10 10:23:00.361471", + "2014-04-10 11:23:00.361471", + "2014-04-10 12:23:00.361471", + "2014-04-10 13:23:00.361471", + "2014-04-10 14:23:00.361471", + "2014-04-10 15:23:00.361471", + "2014-04-10 16:23:00.361471", + "2014-04-10 17:23:00.361471", + "2014-04-10 18:23:00.361471", + "2014-04-10 19:23:00.361471", + "2014-04-10 20:23:00.361471", + "2014-04-10 21:23:00.361471", + "2014-04-10 22:23:00.361471", + "2014-04-10 23:23:00.361471", + "2014-04-11 00:23:00.361471", + "2014-04-11 01:23:00.361471", + "2014-04-11 02:23:00.361471", + "2014-04-11 03:23:00.361471", + "2014-04-11 04:23:00.361471", + "2014-04-11 05:23:00.361471", + "2014-04-11 06:23:00.361471", + "2014-04-11 07:23:00.361471", + "2014-04-11 08:23:00.361471", + "2014-04-11 09:23:00.361471", + "2014-04-11 10:23:00.361471", + "2014-04-11 11:23:00.361471", + "2014-04-11 12:23:00.361471", + "2014-04-11 13:23:00.361471", + "2014-04-11 14:23:00.361471", + "2014-04-11 15:23:00.361471", + "2014-04-11 16:23:00.361471", + "2014-04-11 17:23:00.361471", + "2014-04-11 18:23:00.361471", + "2014-04-11 19:23:00.361471", + "2014-04-11 20:23:00.361471", + "2014-04-11 21:23:00.361471", + "2014-04-11 22:23:00.361471", + "2014-04-11 23:23:00.361471", + "2014-04-12 00:23:00.361471", + "2014-04-12 01:23:00.361471", + "2014-04-12 02:23:00.361471", + "2014-04-12 03:23:00.361471", + "2014-04-12 04:23:00.361471", + "2014-04-12 05:23:00.361471", + "2014-04-12 06:23:00.361471", + "2014-04-12 07:23:00.361471", + "2014-04-12 08:23:00.361471", + "2014-04-12 09:23:00.361471", + "2014-04-12 10:23:00.361471", + "2014-04-12 11:23:00.361471", + "2014-04-12 12:23:00.361471", + "2014-04-12 13:23:00.361471", + "2014-04-12 14:23:00.361471", + "2014-04-12 15:23:00.361471", + "2014-04-12 16:23:00.361471", + "2014-04-12 17:23:00.361471", + "2014-04-12 18:23:00.361471", + "2014-04-12 19:23:00.361471", + "2014-04-12 20:23:00.361471", + "2014-04-12 21:23:00.361471", + "2014-04-12 22:23:00.361471", + "2014-04-12 23:23:00.361471", + "2014-04-13 00:23:00.361471", + "2014-04-13 01:23:00.361471", + "2014-04-13 02:23:00.361471", + "2014-04-13 03:23:00.361471", + "2014-04-13 04:23:00.361471", + "2014-04-13 05:23:00.361471", + "2014-04-13 06:23:00.361471", + "2014-04-13 07:23:00.361471", + "2014-04-13 08:23:00.361471", + "2014-04-13 09:23:00.361471", + "2014-04-13 10:23:00.361471", + "2014-04-13 11:23:00.361471", + "2014-04-13 12:23:00.361471", + "2014-04-13 13:23:00.361471", + "2014-04-13 14:23:00.361471", + "2014-04-13 15:23:00.361471", + "2014-04-13 16:23:00.361471", + "2014-04-13 17:23:00.361471", + "2014-04-13 18:23:00.361471", + "2014-04-13 19:23:00.361471", + "2014-04-13 20:23:00.361471", + "2014-04-13 21:23:00.361471", + "2014-04-13 22:23:00.361471", + "2014-04-13 23:23:00.361471", + "2014-04-14 00:23:00.361471", + "2014-04-14 01:23:00.361471", + "2014-04-14 02:23:00.361471", + "2014-04-14 03:23:00.361471", + "2014-04-14 04:23:00.361471", + "2014-04-14 05:23:00.361471", + "2014-04-14 06:23:00.361471", + "2014-04-14 07:23:00.361471", + "2014-04-14 08:23:00.361471", + "2014-04-14 09:23:00.361471", + "2014-04-14 10:23:00.361471", + "2014-04-14 11:23:00.361471", + "2014-04-14 12:23:00.361471", + "2014-04-14 13:23:00.361471", + "2014-04-14 14:23:00.361471", + "2014-04-14 15:23:00.361471", + "2014-04-14 16:23:00.361471", + "2014-04-14 17:23:00.361471", + "2014-04-14 18:23:00.361471", + "2014-04-14 19:23:00.361471", + "2014-04-14 20:23:00.361471", + "2014-04-14 21:23:00.361471", + "2014-04-14 22:23:00.361471", + "2014-04-14 23:23:00.361471", + "2014-04-15 00:23:00.361471", + "2014-04-15 01:23:00.361471", + "2014-04-15 02:23:00.361471", + "2014-04-15 03:23:00.361471", + "2014-04-15 04:23:00.361471", + "2014-04-15 05:23:00.361471", + "2014-04-15 06:23:00.361471", + "2014-04-15 07:23:00.361471", + "2014-04-15 08:23:00.361471", + "2014-04-15 09:23:00.361471", + "2014-04-15 10:23:00.361471", + "2014-04-15 11:23:00.361471", + "2014-04-15 12:23:00.361471", + "2014-04-15 13:23:00.361471", + "2014-04-15 14:23:00.361471", + "2014-04-15 15:23:00.361471", + "2014-04-15 16:23:00.361471", + "2014-04-15 17:23:00.361471", + "2014-04-15 18:23:00.361471", + "2014-04-15 19:23:00.361471", + "2014-04-15 20:23:00.361471", + "2014-04-15 21:23:00.361471", + "2014-04-15 22:23:00.361471", + "2014-04-15 23:23:00.361471", + "2014-04-16 00:23:00.361471", + "2014-04-16 01:23:00.361471", + "2014-04-16 02:23:00.361471", + "2014-04-16 03:23:00.361471", + "2014-04-16 04:23:00.361471", + "2014-04-16 05:23:00.361471", + "2014-04-16 06:23:00.361471", + "2014-04-16 07:23:00.361471", + "2014-04-16 08:23:00.361471", + "2014-04-16 09:23:00.361471", + "2014-04-16 10:23:00.361471", + "2014-04-16 11:23:00.361471", + "2014-04-16 12:23:00.361471", + "2014-04-16 13:23:00.361471", + "2014-04-16 14:23:00.361471", + "2014-04-16 15:23:00.361471", + "2014-04-16 16:23:00.361471", + "2014-04-16 17:23:00.361471", + "2014-04-16 18:23:00.361471", + "2014-04-16 19:23:00.361471", + "2014-04-16 20:23:00.361471", + "2014-04-16 21:23:00.361471", + "2014-04-16 22:23:00.361471", + "2014-04-16 23:23:00.361471", + "2014-04-17 00:23:00.361471", + "2014-04-17 01:23:00.361471", + "2014-04-17 02:23:00.361471", + "2014-04-17 03:23:00.361471", + "2014-04-17 04:23:00.361471", + "2014-04-17 05:23:00.361471", + "2014-04-17 06:23:00.361471", + "2014-04-17 07:23:00.361471", + "2014-04-17 08:23:00.361471", + "2014-04-17 09:23:00.361471", + "2014-04-17 10:23:00.361471", + "2014-04-17 11:23:00.361471", + "2014-04-17 12:23:00.361471", + "2014-04-17 13:23:00.361471", + "2014-04-17 14:23:00.361471", + "2014-04-17 15:23:00.361471", + "2014-04-17 16:23:00.361471", + "2014-04-17 17:23:00.361471", + "2014-04-17 18:23:00.361471", + "2014-04-17 19:23:00.361471", + "2014-04-17 20:23:00.361471", + "2014-04-17 21:23:00.361471", + "2014-04-17 22:23:00.361471", + "2014-04-17 23:23:00.361471", + "2014-04-18 00:23:00.361471", + "2014-04-18 01:23:00.361471", + "2014-04-18 02:23:00.361471", + "2014-04-18 03:23:00.361471", + "2014-04-18 04:23:00.361471", + "2014-04-18 05:23:00.361471", + "2014-04-18 06:23:00.361471", + "2014-04-18 07:23:00.361471", + "2014-04-18 08:23:00.361471", + "2014-04-18 09:23:00.361471", + "2014-04-18 10:23:00.361471", + "2014-04-18 11:23:00.361471", + "2014-04-18 12:23:00.361471", + "2014-04-18 13:23:00.361471", + "2014-04-18 14:23:00.361471", + "2014-04-18 15:23:00.361471", + "2014-04-18 16:23:00.361471", + "2014-04-18 17:23:00.361471", + "2014-04-18 18:23:00.361471", + "2014-04-18 19:23:00.361471", + "2014-04-18 20:23:00.361471", + "2014-04-18 21:23:00.361471", + "2014-04-18 22:23:00.361471", + "2014-04-18 23:23:00.361471", + "2014-04-19 00:23:00.361471", + "2014-04-19 01:23:00.361471", + "2014-04-19 02:23:00.361471", + "2014-04-19 03:23:00.361471", + "2014-04-19 04:23:00.361471", + "2014-04-19 05:23:00.361471", + "2014-04-19 06:23:00.361471", + "2014-04-19 07:23:00.361471", + "2014-04-19 08:23:00.361471", + "2014-04-19 09:23:00.361471", + "2014-04-19 10:23:00.361471", + "2014-04-19 11:23:00.361471", + "2014-04-19 12:23:00.361471", + "2014-04-19 13:23:00.361471", + "2014-04-19 14:23:00.361471", + "2014-04-19 15:23:00.361471", + "2014-04-19 16:23:00.361471", + "2014-04-19 17:23:00.361471", + "2014-04-19 18:23:00.361471", + "2014-04-19 19:23:00.361471", + "2014-04-19 20:23:00.361471", + "2014-04-19 21:23:00.361471", + "2014-04-19 22:23:00.361471", + "2014-04-19 23:23:00.361471", + "2014-04-20 00:23:00.361471", + "2014-04-20 01:23:00.361471", + "2014-04-20 02:23:00.361471", + "2014-04-20 03:23:00.361471", + "2014-04-20 04:23:00.361471", + "2014-04-20 05:23:00.361471", + "2014-04-20 06:23:00.361471", + "2014-04-20 07:23:00.361471", + "2014-04-20 08:23:00.361471", + "2014-04-20 09:23:00.361471", + "2014-04-20 10:23:00.361471", + "2014-04-20 11:23:00.361471", + "2014-04-20 12:23:00.361471", + "2014-04-20 13:23:00.361471", + "2014-04-20 14:23:00.361471", + "2014-04-20 15:23:00.361471", + "2014-04-20 16:23:00.361471", + "2014-04-20 17:23:00.361471", + "2014-04-20 18:23:00.361471", + "2014-04-20 19:23:00.361471", + "2014-04-20 20:23:00.361471", + "2014-04-20 21:23:00.361471", + "2014-04-20 22:23:00.361471", + "2014-04-20 23:23:00.361471", + "2014-04-21 00:23:00.361471", + "2014-04-21 01:23:00.361471", + "2014-04-21 02:23:00.361471", + "2014-04-21 03:23:00.361471", + "2014-04-21 04:23:00.361471", + "2014-04-21 05:23:00.361471", + "2014-04-21 06:23:00.361471", + "2014-04-21 07:23:00.361471", + "2014-04-21 08:23:00.361471", + "2014-04-21 09:23:00.361471", + "2014-04-21 10:23:00.361471", + "2014-04-21 11:23:00.361471", + "2014-04-21 12:23:00.361471", + "2014-04-21 13:23:00.361471", + "2014-04-21 14:23:00.361471", + "2014-04-21 15:23:00.361471", + "2014-04-21 16:23:00.361471", + "2014-04-21 17:23:00.361471", + "2014-04-21 18:23:00.361471", + "2014-04-21 19:23:00.361471", + "2014-04-21 20:23:00.361471", + "2014-04-21 21:23:00.361471", + "2014-04-21 22:23:00.361471", + "2014-04-21 23:23:00.361471", + "2014-04-22 00:23:00.361471", + "2014-04-22 01:23:00.361471", + "2014-04-22 02:23:00.361471", + "2014-04-22 03:23:00.361471", + "2014-04-22 04:23:00.361471", + "2014-04-22 05:23:00.361471", + "2014-04-22 06:23:00.361471", + "2014-04-22 07:23:00.361471", + "2014-04-22 08:23:00.361471", + "2014-04-22 09:23:00.361471", + "2014-04-22 10:23:00.361471", + "2014-04-22 11:23:00.361471", + "2014-04-22 12:23:00.361471", + "2014-04-22 13:23:00.361471", + "2014-04-22 14:23:00.361471", + "2014-04-22 15:23:00.361471", + "2014-04-22 16:23:00.361471", + "2014-04-22 17:23:00.361471", + "2014-04-22 18:23:00.361471", + "2014-04-22 19:23:00.361471", + "2014-04-22 20:23:00.361471", + "2014-04-22 21:23:00.361471", + "2014-04-22 22:23:00.361471", + "2014-04-22 23:23:00.361471", + "2014-04-23 00:23:00.361471", + "2014-04-23 01:23:00.361471", + "2014-04-23 02:23:00.361471", + "2014-04-23 03:23:00.361471", + "2014-04-23 04:23:00.361471", + "2014-04-23 05:23:00.361471", + "2014-04-23 06:23:00.361471", + "2014-04-23 07:23:00.361471", + "2014-04-23 08:23:00.361471", + "2014-04-23 09:23:00.361471", + "2014-04-23 10:23:00.361471", + "2014-04-23 11:23:00.361471", + "2014-04-23 12:23:00.361471", + "2014-04-23 13:23:00.361471", + "2014-04-23 14:23:00.361471", + "2014-04-23 15:23:00.361471", + "2014-04-23 16:23:00.361471", + "2014-04-23 17:23:00.361471", + "2014-04-23 18:23:00.361471", + "2014-04-23 19:23:00.361471", + "2014-04-23 20:23:00.361471", + "2014-04-23 21:23:00.361471", + "2014-04-23 22:23:00.361471", + "2014-04-23 23:23:00.361471", + "2014-04-24 00:23:00.361471", + "2014-04-24 01:23:00.361471", + "2014-04-24 02:23:00.361471", + "2014-04-24 03:23:00.361471", + "2014-04-24 04:23:00.361471", + "2014-04-24 05:23:00.361471", + "2014-04-24 06:23:00.361471", + "2014-04-24 07:23:00.361471", + "2014-04-24 08:23:00.361471", + "2014-04-24 09:23:00.361471", + "2014-04-24 10:23:00.361471", + "2014-04-24 11:23:00.361471", + "2014-04-24 12:23:00.361471", + "2014-04-24 13:23:00.361471", + "2014-04-24 14:23:00.361471", + "2014-04-24 15:23:00.361471", + "2014-04-24 16:23:00.361471", + "2014-04-24 17:23:00.361471", + "2014-04-24 18:23:00.361471", + "2014-04-24 19:23:00.361471", + "2014-04-24 20:23:00.361471", + "2014-04-24 21:23:00.361471", + "2014-04-24 22:23:00.361471", + "2014-04-24 23:23:00.361471", + "2014-04-25 00:23:00.361471", + "2014-04-25 01:23:00.361471", + "2014-04-25 02:23:00.361471", + "2014-04-25 03:23:00.361471", + "2014-04-25 04:23:00.361471", + "2014-04-25 05:23:00.361471", + "2014-04-25 06:23:00.361471", + "2014-04-25 07:23:00.361471", + "2014-04-25 08:23:00.361471", + "2014-04-25 09:23:00.361471", + "2014-04-25 10:23:00.361471", + "2014-04-25 11:23:00.361471", + "2014-04-25 12:23:00.361471", + "2014-04-25 13:23:00.361471", + "2014-04-25 14:23:00.361471", + "2014-04-25 15:23:00.361471", + "2014-04-25 16:23:00.361471", + "2014-04-25 17:23:00.361471", + "2014-04-25 18:23:00.361471", + "2014-04-25 19:23:00.361471", + "2014-04-25 20:23:00.361471", + "2014-04-25 21:23:00.361471", + "2014-04-25 22:23:00.361471", + "2014-04-25 23:23:00.361471", + "2014-04-26 00:23:00.361471", + "2014-04-26 01:23:00.361471", + "2014-04-26 02:23:00.361471", + "2014-04-26 03:23:00.361471", + "2014-04-26 04:23:00.361471", + "2014-04-26 05:23:00.361471", + "2014-04-26 06:23:00.361471", + "2014-04-26 07:23:00.361471", + "2014-04-26 08:23:00.361471", + "2014-04-26 09:23:00.361471", + "2014-04-26 10:23:00.361471", + "2014-04-26 11:23:00.361471", + "2014-04-26 12:23:00.361471", + "2014-04-26 13:23:00.361471", + "2014-04-26 14:23:00.361471", + "2014-04-26 15:23:00.361471", + "2014-04-26 16:23:00.361471", + "2014-04-26 17:23:00.361471", + "2014-04-26 18:23:00.361471", + "2014-04-26 19:23:00.361471", + "2014-04-26 20:23:00.361471", + "2014-04-26 21:23:00.361471", + "2014-04-26 22:23:00.361471", + "2014-04-26 23:23:00.361471", + "2014-04-27 00:23:00.361471", + "2014-04-27 01:23:00.361471", + "2014-04-27 02:23:00.361471", + "2014-04-27 03:23:00.361471", + "2014-04-27 04:23:00.361471", + "2014-04-27 05:23:00.361471", + "2014-04-27 06:23:00.361471", + "2014-04-27 07:23:00.361471", + "2014-04-27 08:23:00.361471", + "2014-04-27 09:23:00.361471", + "2014-04-27 10:23:00.361471", + "2014-04-27 11:23:00.361471", + "2014-04-27 12:23:00.361471", + "2014-04-27 13:23:00.361471", + "2014-04-27 14:23:00.361471", + "2014-04-27 15:23:00.361471", + "2014-04-27 16:23:00.361471", + "2014-04-27 17:23:00.361471", + "2014-04-27 18:23:00.361471", + "2014-04-27 19:23:00.361471" + ], + "y": [ + 0.19765470068858682, + 0.20521331647372043, + 0.16755063139716098, + 0.33922566654565267, + 0.34970148839371, + 0.1555145565054959, + 0.2194166034778496, + 0.4295653784060315, + 0.512247622146756, + 0.576227442344601, + 0.5054920497654491, + 0.33281985518095775, + 0.6303979986024282, + 0.6368371903293952, + 0.5769484338035371, + 0.49788894837604897, + 0.7715926214080304, + 0.7023686769747766, + 0.8126081484506353, + 0.5359334958577814, + 0.6448244343523106, + 0.823984256646129, + 0.845399779866264, + 0.6507313136649306, + 0.7319806470017823, + 0.6506855310644194, + 0.9021873628436208, + 0.8206558625545528, + 0.9287776975455394, + 0.8053876292512482, + 0.9453842621551022, + 0.8483226958573711, + 1.038823695751795, + 0.9676387446183442, + 0.7760322498021628, + 1.066958724864698, + 0.8243867840364228, + 1.05032769254689, + 1.0634505295237573, + 0.828391939467096, + 1.1317596589053647, + 1.142189632897578, + 1.1022055678206693, + 1.1193858599591051, + 0.9565247223287424, + 0.9730944748882759, + 0.8356953331015646, + 0.9794687556227845, + 1.0629887941343463, + 0.8240294645593155, + 1.0060815063648183, + 0.9675490639904663, + 1.0227939994186659, + 1.0367259025331732, + 0.8496536757357459, + 0.8678781503129664, + 0.8320612429766577, + 0.8515676180343128, + 0.9275678115524566, + 1.0629963728079137, + 1.0569480701572997, + 0.8400454629014165, + 0.7763029538513967, + 0.9417583356472458, + 0.7677036155468753, + 0.718700313231347, + 0.9116630425455607, + 0.7500037834872255, + 0.9000336075317015, + 0.853656627207099, + 0.7126052330370088, + 0.6593050682113163, + 0.8125284412622841, + 0.6590814542881617, + 0.82753347323429, + 0.7939919695085054, + 0.7353019640208421, + 0.6073827791924317, + 0.781061226207377, + 0.572404942694392, + 0.5492635953483325, + 0.6639758734583403, + 0.5389790711449571, + 0.4392927934885033, + 0.5552084533934009, + 0.49929653233177457, + 0.5492032306434419, + 0.44131060978537356, + 0.4177672327799625, + 0.33190713716842346, + 0.5394318784380159, + 0.24366562549865498, + 0.2971797499092804, + 0.2392005314953442, + 0.1422895535333546, + 0.15059515171776372, + 0.34239880549917373, + 0.1517789398514327, + 0.21695270409910472, + 0.12087676155073471, + 0.20809270471804636, + 0.2551923513588294, + 0.0847928672604771, + 0.08853920352565883, + -0.05163534435005168, + 0.08735749676665222, + -0.020157836605359275, + -0.10913404412308525, + -0.10696960424538784, + 0.08327048779860943, + -0.1313338123292334, + 0.04628350626071781, + -0.04879200274032788, + -0.0359898566865641, + -0.11884746881102526, + -0.04265794820805635, + -0.20471154232191519, + -0.2774293314863318, + -0.003187605265057847, + -0.12046528551137412, + -0.2678464999774644, + -0.15440011634128273, + -0.36099807167200504, + -0.294063824247998, + -0.16900794801643748, + -0.17384256111360458, + -0.3644288051650968, + -0.19271208620262809, + -0.18467570426048097, + -0.23927777888230603, + -0.17978386425930531, + -0.437253981926649, + -0.4260580431820467, + -0.40440261357756474, + -0.2514236431771909, + -0.397237100329037, + -0.19690379589251433, + -0.4344113294748106, + -0.4832709449975265, + -0.3120995170754286, + -0.287183737218622, + -0.40089405399288913, + -0.34038917864411344, + -0.26767076822674485, + -0.2881141227541607, + -0.43029697159856134, + -0.4555982011934097, + -0.383984683053189, + -0.3449243661460978, + -0.2655126950699553, + -0.26814640538112633, + -0.526235690698094, + -0.27292428585004985, + -0.5193282944406485, + -0.20462333965101093, + -0.4316405922421438, + -0.4767779226343584, + -0.37662653861699424, + -0.47739472276581285, + -0.48358499829966556, + -0.35555680488893615, + -0.3295654809376622, + -0.18014967413078187, + -0.20285683290846396, + -0.34729744678389507, + -0.18600845284066903, + -0.25678692057318064, + -0.1427339298733344, + -0.3849884465594967, + -0.3261150377012011, + -0.2747984390067606, + -0.2357199021702649, + -0.23904077232737508, + -0.20120728204943442, + -0.18444384342477557, + -0.21503086036604752, + -0.15143223441666062, + -0.32493839686298387, + -0.07313129523696832, + -0.0737864078289103, + -0.18946379504336963, + 0.011322367158938307, + -0.015662903941943918, + -0.04286642972628005, + 0.02607626918033268, + -0.16032555776099733, + -0.09706908117409947, + -0.10786409160109182, + 0.07118706739745206, + 0.041445986477439245, + -0.000896263092693611, + 0.02116290631426554, + 0.17901436786307373, + 0.007777736687825693, + 0.03644709450503528, + 0.2200652792156807, + 0.193055026838177, + 0.007538548846269109, + 0.20632331694298178, + 0.0655419694566952, + 0.13746970608233003, + 0.31691473739326714, + 0.05490557153641939, + 0.34070711036081747, + 0.2620053957099667, + 0.13253261205796218, + 0.29838948202982674, + 0.15858618367589056, + 0.38515362591681823, + 0.35453979097714083, + 0.24642269834301522, + 0.31555658600572695, + 0.28322334930037907, + 0.3458190600719905, + 0.24770231698136752, + 0.3509756732432827, + 0.22150332818718257, + 0.4012778220752289, + 0.5092730176702855, + 0.49633016616556547, + 0.4511412091440035, + 0.41734571109047425, + 0.5343016529876503, + 0.550586185400687, + 0.43045413308928027, + 0.47938953946111884, + 0.3179646553699141, + 0.6211272265408118, + 0.5909460260629996, + 0.4226448480286274, + 0.41633712928423927, + 0.5171527002602441, + 0.3463849595528193, + 0.6616831299919462, + 0.3545658588859932, + 0.6099866414080936, + 0.48010389414831867, + 0.5371097751220948, + 0.6326722480836873, + 0.6439164180970759, + 0.4427292197490715, + 0.673031296607135, + 0.45257901132526657, + 0.6405597113780699, + 0.3738617358258385, + 0.4284648668412742, + 0.6383507210388615, + 0.41716187834624885, + 0.6214251193993228, + 0.5870530350524654, + 0.5092746665841432, + 0.6209086791299265, + 0.5905862210069059, + 0.4952511422940002, + 0.591306490932872, + 0.6030702848056178, + 0.6410697966874396, + 0.6713800155156342, + 0.6218983573417067, + 0.5222547086641662, + 0.5042018017894997, + 0.6581126509470454, + 0.35816874389810105, + 0.6089696271534136, + 0.5786217473350402, + 0.3535218298639705, + 0.4112266911970268, + 0.32590674586129187, + 0.605260592021148, + 0.405506337580911, + 0.4080832951602644, + 0.37234909242250347, + 0.3165226765268205, + 0.510695682130649, + 0.3127691168756638, + 0.3764140876838836, + 0.2384047497631894, + 0.2988967065312465, + 0.45525748010948497, + 0.4066362024976332, + 0.2877248726924939, + 0.23297108951390105, + 0.24348542635897719, + 0.4647466091217012, + 0.3021008812341327, + 0.23286045418698775, + 0.4640209583932114, + 0.3699032461247783, + 0.41735952796126047, + 0.3662270452373184, + 0.2982190822262639, + 0.15854252859085233, + 0.3106730085098452, + 0.12674046346038434, + 0.10062754399505451, + 0.22807701918184908, + 0.08306877920060601, + 0.29340387606315654, + 0.18483193480559906, + 0.05354872211471626, + 0.20828239045527727, + 0.09444130711598137, + 0.18290648849679794, + 0.10758208973176134, + 0.009196063742631447, + -0.009638111055282603, + 0.23207298361863657, + 0.07758769455842694, + 0.0648296703334997, + 0.07437862701238934, + -0.019391892203131755, + 0.19707273950789939, + 0.14122239998679614, + 0.0782989629551765, + -0.0555202836042981, + 0.17716233864269343, + 0.01916049058428093, + 0.0796724120798728, + 0.18137858844494972, + 0.10718607468195154, + 0.15334874056795736, + -0.08714485490491271, + 0.13769713717777382, + 0.1259064713439013, + -0.07433265413797552, + -0.013320015498367532, + 0.039110789220852954, + -0.13501115398090163, + -0.04464549416372646, + 0.0369222010313047, + -0.11511819615725465, + 0.10147609183905715, + 0.003935080349546288, + -0.08379319690989509, + -0.1083603994214701, + 0.000785096540412783, + -0.20323650770046925, + -0.03308165114802181, + 0.06395874067990776, + -0.11918343089891902, + -0.12645241802859078, + -0.11164341538848649, + 0.07802135215564432, + -0.16220214916148618, + 0.04757766577556577, + -0.058286391861309655, + -0.1953809263028491, + -0.013084153947983457, + 0.07437483850028123, + -0.13112474677514618, + -0.17756320989827756, + 0.008314429564085846, + 0.03057255537527459, + 0.026507944768350777, + 0.06966156667868759, + -0.20784206829651677, + -0.05266103232887537, + -0.008270566229588522, + -0.16264950357368618, + -0.11845069592934603, + -0.2091433227223665, + -0.0864342238752138, + 0.08352498181450138, + -0.07369060896456503, + -0.20122752894130247, + -0.10697167700051395, + 0.05265202370684466, + -0.1552037433493705, + 0.01402328013079629, + -0.1165026728545674, + 0.029286197900231264, + -0.08845257804534576, + -0.1333332232260796, + 0.0334597508602979, + 0.054225225581673364, + -0.0747503507813561, + -0.12687089352790498, + 0.17247766225959985, + 0.012608133525602139, + 0.1052134986361245, + 0.18825013643687505, + -0.02039510928529903, + -0.011552996207187777, + -0.07487982718182137, + -0.05783621930692962, + 0.134135887545773, + 0.13171960697328983, + 0.10845388147158654, + 0.003782625057040051, + 0.10285792157456236, + 0.09533699562757493, + 0.05186689207100474, + 0.1524506869367554, + -0.005379639595492286, + 0.07781427604396238, + 0.2072227682910497, + 0.15671557485356455, + 0.10560860194405271, + 0.3062149467759454, + 0.1952944697058698, + 0.17692384492400862, + 0.26235756550654654, + 0.34271058401666893, + 0.25593350370071266, + 0.2734125293118493, + 0.2607405877660304, + 0.33980199976968734, + 0.11109766934343071, + 0.30343968736045457, + 0.16813653962021263, + 0.33531774627272015, + 0.10714195986278627, + 0.16694901730204412, + 0.3235810972648848, + 0.35812200131277894, + 0.4171618141467545, + 0.35968008124870054, + 0.1351249610993187, + 0.4179281118689222, + 0.3489195371232143, + 0.3121297199161446, + 0.15624687602029003, + 0.16154715368980077, + 0.15453573419287792, + 0.26141039428731994, + 0.19492564375641586, + 0.3679907819239834, + 0.35885552144894567, + 0.3399496733311481, + 0.15900881489424307, + 0.3429370040982559, + 0.1913195841637587, + 0.3809163398756114, + 0.16679935944478053, + 0.4599748357357145, + 0.4280672133730278, + 0.3781867616998943, + 0.2386637585984039, + 0.4722417239765633, + 0.16998559009598183, + 0.2635563945137509, + 0.3282036541980837, + 0.4937616842307869, + 0.23968030455692663, + 0.3468994230768282, + 0.26642102209090596, + 0.37736041225354977, + 0.4180250865683808, + 0.4639266437846405, + 0.35042429058701874, + 0.35290850689524284, + 0.3402966170920335, + 0.4688971885646238, + 0.402422919569149, + 0.3700317740420995, + 0.37358905797951514, + 0.2201850869328622, + 0.38162058388918796, + 0.2243764710930679, + 0.4605977556979652, + 0.2606809256993072, + 0.41106002712017065, + 0.2606347326589714, + 0.332715455010289, + 0.1933229152841127, + 0.2414038280378541, + 0.2178761925475518, + 0.27600270801249616, + 0.4163362319777352, + 0.17190211606407715, + 0.43504318432484246, + 0.43631904600218413, + 0.42010956944721956, + 0.23882665546227805, + 0.4026272858540526, + 0.2936755637150322, + 0.1808080365002213, + 0.14440074435722025, + 0.321250523954253, + 0.29036357894875464, + 0.23946521904420498, + 0.14378308284128677, + 0.40424498140520165, + 0.10911267736214142, + 0.362722811666903, + 0.16823253035744085, + 0.3421472925371005, + 0.3298755467893478, + 0.15483706651579818, + 0.11784399238621912, + 0.33441011724444947, + 0.0760723066536405, + 0.16422621706589172, + 0.3242143157940129, + 0.35129719978396173, + 0.19896764249912952, + 0.18335732436477, + 0.16480078902575024, + 0.17171558892195632, + 0.1503396897328274 + ], + "mode": "markers", + "name": "trace 0", + "type": "scattergl" + } + ], + "layout": { + "title": "Datetime Decay", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "font": { + "family": "'Open sans', verdana, arial, sans-serif", + "size": 12, + "color": "#444" + }, + "autosize": true, + "width": 1366, + "height": 713, + "xaxis": { + "title": "Click to enter X axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + 1396739232835.0674, + 1398746327887.8745 + ], + "domain": [ + 0, + 1 + ], + "type": "date", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 946789200000, + "dtick": 259200000, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "y", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "yaxis": { + "title": "Click to enter Y axis title", + "titlefont": { + "color": "", + "family": "", + "size": 0 + }, + "range": [ + -0.6306663659031007, + 1.2466203081025848 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "showgrid": true, + "zeroline": true, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": true, + "tick0": 0, + "dtick": 0.2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "x", + "position": 0, + "mirror": false, + "overlaying": false, + "autorange": true + }, + "legend": { + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#444", + "borderwidth": 0 + }, + "annotations": [ + { + "x": 0, + "y": 0, + "xref": "paper", + "yref": "paper", + "text": "The date-formatted x-axis will increase it's time-resolution when you zoom.
Click-and-drag your mouse on the plot to see how it responds!", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "align": "center", + "showarrow": false, + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -35.9765625, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1, + "xanchor": "auto", + "yanchor": "auto", + "tag": "" + } + ], + "margin": { + "l": 80, + "r": 80, + "b": 80, + "t": 100, + "pad": 0, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "barmode": "group", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "separators": ".,", + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_axes_booleans.json b/test/image/mocks/gl2d_axes_booleans.json new file mode 100644 index 00000000000..450e2584e28 --- /dev/null +++ b/test/image/mocks/gl2d_axes_booleans.json @@ -0,0 +1,74 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 0 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "xaxis": { + "showticklabels": false, + "ticks": "", + "showgrid": false, + "zeroline": false, + "showline": false, + "autotick": true, + "autorange": true + }, + "yaxis": { + "showticklabels": false, + "ticks": "", + "showgrid": false, + "zeroline": false, + "showline": false, + "autotick": true, + "autorange": true + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_axes_labels.json b/test/image/mocks/gl2d_axes_labels.json new file mode 100644 index 00000000000..1a210487050 --- /dev/null +++ b/test/image/mocks/gl2d_axes_labels.json @@ -0,0 +1,90 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 0 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "xaxis": { + "tickfont": { + "color": "black", + "family": "Old Standard TT, serif", + "size": 14 + }, + "showexponent": "All", + "showticklabels": true, + "title": "AXIS TITLE", + "tickangle": 45, + "titlefont": { + "color": "lightgrey", + "family": "Arial, sans-serif", + "size": 18 + }, + "exponentformat": "e" + }, + "yaxis": { + "tickfont": { + "color": "black", + "family": "Old Standard TT, serif", + "size": 14 + }, + "showexponent": "All", + "showticklabels": true, + "title": "AXIS TITLE", + "tickangle": 45, + "titlefont": { + "color": "lightgrey", + "family": "Arial, sans-serif", + "size": 18 + }, + "exponentformat": "e" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_axes_lines.json b/test/image/mocks/gl2d_axes_lines.json new file mode 100644 index 00000000000..3fd39c9ca5f --- /dev/null +++ b/test/image/mocks/gl2d_axes_lines.json @@ -0,0 +1,80 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 0 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "xaxis": { + "zerolinewidth": 4, + "gridwidth": 2, + "showgrid": true, + "zerolinecolor": "#969696", + "gridcolor": "#bdbdbd", + "linecolor": "#636363", + "mirror": "ticks", + "zeroline": true, + "showline": true, + "linewidth": 6 + }, + "yaxis": { + "zerolinewidth": 4, + "gridwidth": 2, + "showgrid": true, + "zerolinecolor": "#969696", + "gridcolor": "#bdbdbd", + "linecolor": "#636363", + "mirror": "ticks", + "zeroline": true, + "showline": true, + "linewidth": 6 + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_axes_range_manual.json b/test/image/mocks/gl2d_axes_range_manual.json new file mode 100644 index 00000000000..061e8161ff5 --- /dev/null +++ b/test/image/mocks/gl2d_axes_range_manual.json @@ -0,0 +1,68 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 0 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "xaxis": { + "range": [ + 2, + 5 + ] + }, + "yaxis": { + "range": [ + 2, + 5 + ] + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_axes_range_mode.json b/test/image/mocks/gl2d_axes_range_mode.json new file mode 100644 index 00000000000..d30aadb22bb --- /dev/null +++ b/test/image/mocks/gl2d_axes_range_mode.json @@ -0,0 +1,28 @@ +{ + "data": [ + { + "x": [ + 2, + 4, + 6 + ], + "y": [ + -3, + 0, + 3 + ], + "type": "scattergl" + } + ], + "layout": { + "showlegend": false, + "xaxis": { + "autorange": true, + "rangemode": "tozero" + }, + "yaxis": { + "autorange": true, + "rangemode": "nonnegative" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_axes_range_type.json b/test/image/mocks/gl2d_axes_range_type.json new file mode 100644 index 00000000000..7a4455c68b0 --- /dev/null +++ b/test/image/mocks/gl2d_axes_range_type.json @@ -0,0 +1,64 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 0 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "xaxis": { + "type": "log", + "autorange": true + }, + "yaxis": { + "type": "log", + "autorange": true + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_basic_error_bar.json b/test/image/mocks/gl2d_basic_error_bar.json new file mode 100644 index 00000000000..660e6ea3c9b --- /dev/null +++ b/test/image/mocks/gl2d_basic_error_bar.json @@ -0,0 +1,26 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2 + ], + "y": [ + 6, + 10, + 2 + ], + "error_y": { + "type": "data", + "array": [ + 1, + 2, + 3 + ], + "visible": true + }, + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_bubble_markersize0.json b/test/image/mocks/gl2d_bubble_markersize0.json new file mode 100644 index 00000000000..fe76576fc14 --- /dev/null +++ b/test/image/mocks/gl2d_bubble_markersize0.json @@ -0,0 +1,51 @@ +{ + "data": [ + { + "type": "scattergl", + "mode": "markers", + "x": [ + 100.75, + 157.53, + 140.72, + 134.03 + ], + "y": [ + -102.63, + -110.53, + -96.97, + -163.59 + ], + "marker": { + "size": [ + 0, + 20, + 30, + 40 + ] + } + } + ], + "layout": { + "title": "Bubble with marker.size[0] === 0", + "showlegend": true, + "xaxis": { + "type": "linear", + "range": [ + 97.17617854849068, + 161.79670520231213 + ], + "autorange": true + }, + "yaxis": { + "type": "linear", + "range": [ + -172.7879485636938, + -89.02449541284403 + ], + "autorange": true + }, + "height": 598, + "width": 1080, + "autosize": true + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_bubble_nonnumeric-sizes.json b/test/image/mocks/gl2d_bubble_nonnumeric-sizes.json new file mode 100644 index 00000000000..f4e6268b952 --- /dev/null +++ b/test/image/mocks/gl2d_bubble_nonnumeric-sizes.json @@ -0,0 +1,184 @@ +{ + "data": [ + { + "type": "scattergl", + "mode": "markers", + "x": [ + -180, + -171, + -162, + -153, + -144, + -135, + -126, + -117, + -108, + -99, + -90, + -81, + -72, + -63, + -54, + -45, + -36, + -27, + -18, + -9, + 0, + 9, + 18, + 27, + 36, + 45, + 54, + 63, + 72, + 81, + 90, + 99, + 108, + 117, + 126, + 135, + 144, + 153, + 162, + 171 + ], + "y": [ + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5 + ], + "marker": { + "size": [ + "sup", + 679522.6183513794, + "sup", + 783486.8911723467, + "sup", + -559652.2230095522, + "sup", + -869111.4676419107, + "sup", + 426681.6061477646, + "sup", + 934392.0656841636, + "sup", + -283723.3159966294, + "sup", + -977800.610791179, + "sup", + 134123.69014247367, + "sup", + 998321.0048695421, + "sup", + 18615.47483921243, + "sup", + -995472.9108508574, + "sup", + -170918.8927014062, + "sup", + 969322.9963208752, + "sup", + 319221.47707400384, + "sup", + -920483.3729785895, + "sup", + -460051.7922556981, + "sup", + 850097.2684543622, + "sup", + 590113.3118508832, + "sup", + -759812.2658780153 + ], + "sizeref": 10000, + "sizemin": 3 + }, + "text": [ + "sup", + 679522.6183513794, + "sup", + 783486.8911723467, + "sup", + -559652.2230095522, + "sup", + -869111.4676419107, + "sup", + 426681.6061477646, + "sup", + 934392.0656841636, + "sup", + -283723.3159966294, + "sup", + -977800.610791179, + "sup", + 134123.69014247367, + "sup", + 998321.0048695421, + "sup", + 18615.47483921243, + "sup", + -995472.9108508574, + "sup", + -170918.8927014062, + "sup", + 969322.9963208752, + "sup", + 319221.47707400384, + "sup", + -920483.3729785895, + "sup", + -460051.7922556981, + "sup", + 850097.2684543622, + "sup", + 590113.3118508832, + "sup", + -759812.2658780153 + ] + } + ], + "layout": { + "title": "scaled bubbles with non-numeric marker sizes", + "showlegend": true + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_date_axes.json b/test/image/mocks/gl2d_date_axes.json new file mode 100644 index 00000000000..bb1e979e50a --- /dev/null +++ b/test/image/mocks/gl2d_date_axes.json @@ -0,0 +1,17 @@ +{ + "data": [ + { + "x": [ + "2013-10-04 22:23:00", + "2013-11-04 22:23:00", + "2013-12-04 22:23:00" + ], + "y": [ + 1, + 3, + 6 + ], + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_error_bar_asymmetric_array.json b/test/image/mocks/gl2d_error_bar_asymmetric_array.json new file mode 100644 index 00000000000..e181765826a --- /dev/null +++ b/test/image/mocks/gl2d_error_bar_asymmetric_array.json @@ -0,0 +1,35 @@ +{ + "data": [ + { + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 2, + 1, + 3, + 4 + ], + "error_y": { + "type": "data", + "symmetric": false, + "array": [ + 0.1, + 0.2, + 0.1, + 0.1 + ], + "arrayminus": [ + 0.2, + 0.4, + 1, + 0.2 + ] + }, + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_error_bar_asymmetric_constant.json b/test/image/mocks/gl2d_error_bar_asymmetric_constant.json new file mode 100644 index 00000000000..a58a6677d0e --- /dev/null +++ b/test/image/mocks/gl2d_error_bar_asymmetric_constant.json @@ -0,0 +1,25 @@ +{ + "data": [ + { + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 2, + 1, + 3, + 4 + ], + "error_y": { + "type": "percent", + "symmetric": false, + "value": 15, + "valueminus": 25 + }, + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_error_bar_horizontal.json b/test/image/mocks/gl2d_error_bar_horizontal.json new file mode 100644 index 00000000000..14c4dc3d538 --- /dev/null +++ b/test/image/mocks/gl2d_error_bar_horizontal.json @@ -0,0 +1,23 @@ +{ + "data": [ + { + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 2, + 1, + 3, + 4 + ], + "error_x": { + "type": "percent", + "value": 10 + }, + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_error_bar_style.json b/test/image/mocks/gl2d_error_bar_style.json new file mode 100644 index 00000000000..0c503b7b87e --- /dev/null +++ b/test/image/mocks/gl2d_error_bar_style.json @@ -0,0 +1,269 @@ +{ + "data": [ + { + "x": [ + -4, + -3.91919191919, + -3.83838383838, + -3.75757575758, + -3.67676767677, + -3.59595959596, + -3.51515151515, + -3.43434343434, + -3.35353535354, + -3.27272727273, + -3.19191919192, + -3.11111111111, + -3.0303030303, + -2.94949494949, + -2.86868686869, + -2.78787878788, + -2.70707070707, + -2.62626262626, + -2.54545454545, + -2.46464646465, + -2.38383838384, + -2.30303030303, + -2.22222222222, + -2.14141414141, + -2.06060606061, + -1.9797979798, + -1.89898989899, + -1.81818181818, + -1.73737373737, + -1.65656565657, + -1.57575757576, + -1.49494949495, + -1.41414141414, + -1.33333333333, + -1.25252525253, + -1.17171717172, + -1.09090909091, + -1.0101010101, + -0.929292929293, + -0.848484848485, + -0.767676767677, + -0.686868686869, + -0.606060606061, + -0.525252525253, + -0.444444444444, + -0.363636363636, + -0.282828282828, + -0.20202020202, + -0.121212121212, + -0.040404040404, + 0.040404040404, + 0.121212121212, + 0.20202020202, + 0.282828282828, + 0.363636363636, + 0.444444444444, + 0.525252525253, + 0.606060606061, + 0.686868686869, + 0.767676767677, + 0.848484848485, + 0.929292929293, + 1.0101010101, + 1.09090909091, + 1.17171717172, + 1.25252525253, + 1.33333333333, + 1.41414141414, + 1.49494949495, + 1.57575757576, + 1.65656565657, + 1.73737373737, + 1.81818181818, + 1.89898989899, + 1.9797979798, + 2.06060606061, + 2.14141414141, + 2.22222222222, + 2.30303030303, + 2.38383838384, + 2.46464646465, + 2.54545454545, + 2.62626262626, + 2.70707070707, + 2.78787878788, + 2.86868686869, + 2.94949494949, + 3.0303030303, + 3.11111111111, + 3.19191919192, + 3.27272727273, + 3.35353535354, + 3.43434343434, + 3.51515151515, + 3.59595959596, + 3.67676767677, + 3.75757575758, + 3.83838383838, + 3.91919191919, + 4 + ], + "y": [ + -3.89817183252e-17, + -0.0203977985419, + -0.0403193724878, + -0.0584576295394, + -0.0735635288038, + -0.0845267627957, + -0.0904511079188, + -0.0907196677349, + -0.0850456745641, + -0.073505226971, + -0.0565492889615, + -0.0349934120018, + -0.00998490184733, + 0.0170515316115, + 0.044487306888, + 0.0705791505007, + 0.0935693553283, + 0.111791748259, + 0.123777480556, + 0.12835455837, + 0.124735175461, + 0.112585395965, + 0.0920725428959, + 0.0638867404972, + 0.0292343807019, + -0.0101972326738, + -0.052303243234, + -0.0946502243888, + -0.134586933222, + -0.16937168695, + -0.196310165005, + -0.21289670377, + -0.216951773509, + -0.206748335783, + -0.181120181105, + -0.139546125971, + -0.0822050699273, + -0.00999832175161, + 0.075462772185, + 0.171904109116, + 0.276469438182, + 0.385830975753, + 0.49632512003, + 0.604107005716, + 0.705316598492, + 0.796248356504, + 0.873516220656, + 0.934205854304, + 0.97600663017, + 0.997316829847, + 0.997316829847, + 0.97600663017, + 0.934205854304, + 0.873516220656, + 0.796248356504, + 0.705316598492, + 0.604107005716, + 0.49632512003, + 0.385830975753, + 0.276469438182, + 0.171904109116, + 0.075462772185, + -0.00999832175161, + -0.0822050699273, + -0.139546125971, + -0.181120181105, + -0.206748335783, + -0.216951773509, + -0.21289670377, + -0.196310165005, + -0.16937168695, + -0.134586933222, + -0.0946502243888, + -0.052303243234, + -0.0101972326738, + 0.029234380702, + 0.0638867404972, + 0.0920725428959, + 0.112585395965, + 0.124735175461, + 0.12835455837, + 0.123777480556, + 0.111791748259, + 0.0935693553283, + 0.0705791505007, + 0.044487306888, + 0.0170515316115, + -0.00998490184733, + -0.0349934120018, + -0.0565492889615, + -0.073505226971, + -0.0850456745641, + -0.0907196677349, + -0.0904511079188, + -0.0845267627957, + -0.0735635288038, + -0.0584576295394, + -0.0403193724878, + -0.0203977985419, + -3.89817183252e-17 + ], + "name": "sinc(x)", + "type": "scattergl" + }, + { + "x": [ + -3.8, + -3.03, + -1.91, + -1.46, + -0.89, + -0.24, + 0, + 0.41, + 0.89, + 1.01, + 1.91, + 2.28, + 2.79, + 3.56 + ], + "y": [ + -0.02, + 0.04, + -0.01, + -0.27, + 0.36, + 0.75, + 1.03, + 0.65, + 0.28, + 0.02, + -0.11, + 0.16, + 0.04, + -0.15 + ], + "mode": "markers", + "name": "measured", + "error_y": { + "type": "constant", + "value": 0.1, + "color": "#85144B", + "thickness": 1.5, + "width": 3, + "opacity": 1 + }, + "error_x": { + "type": "constant", + "value": 0.2, + "color": "#85144B", + "thickness": 1.5, + "width": 3, + "opacity": 1 + }, + "marker": { + "color": "#85144B", + "size": 8 + }, + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_fonts.json b/test/image/mocks/gl2d_fonts.json new file mode 100644 index 00000000000..e658a3c3aba --- /dev/null +++ b/test/image/mocks/gl2d_fonts.json @@ -0,0 +1,470 @@ +{ + "data": [ + { + "x": [ + "1", + "2", + "1", + "2" + ], + "y": [ + "1", + "1", + "2", + "2" + ], + "mode": "markers", + "name": "Col2", + "type": "scattergl" + } + ], + "layout": { + "title": "Click to enter Plot title", + "titlefont": { + "family": "", + "size": 0, + "color": "" + }, + "font": { + "family": "\"Open sans\", verdana, arial, sans-serif", + "size": 16, + "color": "#444" + }, + "showlegend": false, + "autosize": true, + "width": 1785, + "height": 764, + "xaxis": { + "title": "Click to enter X axis title", + "titlefont": { + "family": "", + "size": 0, + "color": "" + }, + "range": [ + 0.9421558530724339, + 2.057844146927566 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "autorange": true, + "showgrid": false, + "zeroline": false, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": false, + "tick0": 0, + "dtick": 0.2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "mirror": false, + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "y", + "overlaying": false, + "position": 0 + }, + "yaxis": { + "title": "Click to enter Y axis title", + "titlefont": { + "family": "", + "size": 0, + "color": "" + }, + "range": [ + 0.9380292532717475, + 2.0619707467282526 + ], + "domain": [ + 0, + 1 + ], + "type": "linear", + "rangemode": "normal", + "autorange": true, + "showgrid": false, + "zeroline": false, + "showline": false, + "autotick": true, + "nticks": 0, + "ticks": "", + "showticklabels": false, + "tick0": 0, + "dtick": 0.2, + "ticklen": 5, + "tickwidth": 1, + "tickcolor": "#444", + "tickangle": "auto", + "tickfont": { + "family": "", + "size": 0, + "color": "" + }, + "exponentformat": "B", + "showexponent": "all", + "mirror": false, + "gridcolor": "#eee", + "gridwidth": 1, + "zerolinecolor": "#444", + "zerolinewidth": 1, + "linecolor": "#444", + "linewidth": 1, + "anchor": "x", + "overlaying": false, + "position": 0 + }, + "legend": { + "x": 1.02, + "y": 1, + "traceorder": "normal", + "font": { + "family": "", + "size": 0, + "color": "" + }, + "bgcolor": "#fff", + "bordercolor": "#444", + "borderwidth": 0, + "xanchor": "left", + "yanchor": "top" + }, + "annotations": [ + { + "x": 0.1, + "y": 1, + "xref": "paper", + "yref": "paper", + "text": "Arial Bold Italic", + "showarrow": false, + "font": { + "family": "Arial, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -26.7109375, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.9090909090909091, + "xref": "paper", + "yref": "paper", + "text": "Balto Bold Italic", + "showarrow": false, + "font": { + "family": "Balto, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -26.0078125, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.8181818181818181, + "xref": "paper", + "yref": "paper", + "text": "Courier New Bold Italic", + "showarrow": false, + "font": { + "family": "Courier New, monospace", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -26.8046875, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.7272727272727273, + "xref": "paper", + "yref": "paper", + "text": "Droid Sans Bold", + "showarrow": false, + "font": { + "family": "Droid Sans, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -27.0390625, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.6363636363636364, + "xref": "paper", + "yref": "paper", + "text": "Droid Serif Bold Italic", + "showarrow": false, + "font": { + "family": "Droid Serif, serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -27.0390625, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.5454545454545454, + "xref": "paper", + "yref": "paper", + "text": "Droid Sans Mono", + "showarrow": false, + "font": { + "family": "Droid Sans Mono, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -27.9765625, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.36363636363636365, + "xref": "paper", + "yref": "paper", + "text": "Old Standard TT Bold", + "showarrow": false, + "font": { + "family": "Old Standard TT, serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -27.390625, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.2727272727272727, + "xref": "paper", + "yref": "paper", + "text": "Open Sans Bold Italic", + "showarrow": false, + "font": { + "family": "Open Sans, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -28.171875, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.18181818181818177, + "xref": "paper", + "yref": "paper", + "text": "PT Sans Narrow Bold", + "showarrow": false, + "font": { + "family": "PT Sans Narrow, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -27.0625, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0.09090909090909094, + "xref": "paper", + "yref": "paper", + "text": "Raleway Bold Italic", + "showarrow": false, + "font": { + "family": "Raleway, sans-serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -27.046875, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + }, + { + "x": 0.1, + "y": 0, + "xref": "paper", + "yref": "paper", + "text": "Times New Roman Bold", + "showarrow": false, + "font": { + "family": "Times New Roman, Times, serif", + "size": 20 + }, + "xanchor": "left", + "yanchor": "middle", + "align": "center", + "arrowhead": 1, + "arrowsize": 1, + "arrowwidth": 0, + "arrowcolor": "", + "ax": -10, + "ay": -26.65625, + "textangle": 0, + "bordercolor": "", + "borderwidth": 1, + "borderpad": 1, + "bgcolor": "rgba(0,0,0,0)", + "opacity": 1 + } + ], + "margin": { + "l": 80, + "r": 80, + "b": 80, + "t": 100, + "pad": 0, + "autoexpand": true + }, + "paper_bgcolor": "#fff", + "plot_bgcolor": "#fff", + "hovermode": "x", + "dragmode": "zoom", + "separators": ".,", + "barmode": "group", + "bargap": 0.2, + "bargroupgap": 0, + "boxmode": "overlay", + "boxgap": 0.3, + "boxgroupgap": 0.3, + "hidesources": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_global_font.json b/test/image/mocks/gl2d_global_font.json new file mode 100644 index 00000000000..fcb3dbc7a7e --- /dev/null +++ b/test/image/mocks/gl2d_global_font.json @@ -0,0 +1,37 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "title": "Global Font", + "font": { + "family": "Courier New, monospace", + "size": 18, + "color": "#7f7f7f" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_legend_inside.json b/test/image/mocks/gl2d_legend_inside.json new file mode 100644 index 00000000000..6c5f5b2e582 --- /dev/null +++ b/test/image/mocks/gl2d_legend_inside.json @@ -0,0 +1,62 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 3, + 6, + 4, + 5, + 2, + 3, + 5, + 4 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 4, + 7, + 8, + 3, + 6, + 3, + 3, + 4 + ], + "type": "scattergl" + } + ], + "layout": { + "showlegend": true, + "legend": { + "x": 1, + "y": 1, + "xanchor": "auto" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_legend_labels.json b/test/image/mocks/gl2d_legend_labels.json new file mode 100644 index 00000000000..088707bb3de --- /dev/null +++ b/test/image/mocks/gl2d_legend_labels.json @@ -0,0 +1,56 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 3, + 6, + 4, + 5, + 2, + 3, + 5, + 4 + ], + "name": "Blue Trace", + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 4, + 7, + 8, + 3, + 6, + 3, + 3, + 4 + ], + "name": "Orange Trace", + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_legend_outside.json b/test/image/mocks/gl2d_legend_outside.json new file mode 100644 index 00000000000..51bf874d890 --- /dev/null +++ b/test/image/mocks/gl2d_legend_outside.json @@ -0,0 +1,62 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 3, + 6, + 4, + 5, + 2, + 3, + 5, + 4 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 4, + 7, + 8, + 3, + 6, + 3, + 3, + 4 + ], + "type": "scattergl" + } + ], + "layout": { + "showlegend": true, + "legend": { + "x": 1, + "y": 1, + "xanchor": "left" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_legend_style.json b/test/image/mocks/gl2d_legend_style.json new file mode 100644 index 00000000000..4b4a1460490 --- /dev/null +++ b/test/image/mocks/gl2d_legend_style.json @@ -0,0 +1,70 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 3, + 6, + 4, + 5, + 2, + 3, + 5, + 4 + ], + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 4, + 7, + 8, + 3, + 6, + 3, + 3, + 4 + ], + "type": "scattergl" + } + ], + "layout": { + "legend": { + "x": 0, + "y": 1, + "traceorder": "normal", + "font": { + "family": "Arial, sans-serif", + "size": 12, + "color": "#000" + }, + "bgcolor": "#E2E2E2", + "bordercolor": "#FFFFFF", + "borderwidth": 2, + "showlegend": true + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_line_style.json b/test/image/mocks/gl2d_line_style.json new file mode 100644 index 00000000000..9683c5e50e3 --- /dev/null +++ b/test/image/mocks/gl2d_line_style.json @@ -0,0 +1,169 @@ +{ + "data": [ + { + "x": [ + 52698, + 43117 + ], + "y": [ + 53, + 31 + ], + "mode": "markers", + "name": "North America", + "text": [ + "United States", + "Canada" + ], + "marker": { + "color": "rgb(164, 194, 244)", + "size": 12, + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "scattergl" + }, + { + "x": [ + 39317, + 37236, + 35650, + 30066, + 29570, + 27159, + 23557, + 21046, + 18007 + ], + "y": [ + 33, + 20, + 13, + 19, + 27, + 19, + 49, + 44, + 38 + ], + "mode": "markers", + "name": "Europe", + "text": [ + "Germany", + "Britain", + "France", + "Spain", + "Italy", + "Czech Rep.", + "Greece", + "Poland" + ], + "marker": { + "color": "rgb(255, 217, 102)", + "size": 12, + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "scattergl" + }, + { + "x": [ + 42952, + 37037, + 33106, + 17478, + 9813, + 5253, + 4692, + 3899 + ], + "y": [ + 23, + 42, + 54, + 89, + 14, + 99, + 93, + 70 + ], + "mode": "markers", + "name": "Asia/Pacific", + "text": [ + "Australia", + "Japan", + "South Korea", + "Malaysia", + "China", + "Indonesia", + "Philippines", + "India" + ], + "marker": { + "color": "rgb(234, 153, 153)", + "size": 12, + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "scattergl" + }, + { + "x": [ + 19097, + 18601, + 15595, + 13546, + 12026, + 7434, + 5419 + ], + "y": [ + 43, + 47, + 56, + 80, + 86, + 93, + 80 + ], + "mode": "markers", + "name": "Latin America", + "text": [ + "Chile", + "Argentina", + "Mexico", + "Venezuela", + "Venezuela", + "El Salvador", + "Bolivia" + ], + "marker": { + "color": "rgb(142, 124, 195)", + "size": 12, + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "scattergl" + } + ], + "layout": { + "title": "Quarter 1 Growth", + "xaxis": { + "zeroline": false, + "showgrid": false, + "title": "GDP per Capita" + }, + "yaxis": { + "showline": false, + "title": "Percent" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_multiple_subplots.json b/test/image/mocks/gl2d_multiple_subplots.json new file mode 100644 index 00000000000..c646969e354 --- /dev/null +++ b/test/image/mocks/gl2d_multiple_subplots.json @@ -0,0 +1,116 @@ +{ + "data": [ + { + "x": [ + 1, + 2, + 3 + ], + "y": [ + 4, + 5, + 6 + ], + "type": "scattergl" + }, + { + "x": [ + 20, + 30, + 40 + ], + "y": [ + 50, + 60, + 70 + ], + "xaxis": "x2", + "yaxis": "y2", + "type": "scattergl" + }, + { + "x": [ + 300, + 400, + 500 + ], + "y": [ + 600, + 700, + 800 + ], + "xaxis": "x3", + "yaxis": "y3", + "type": "scattergl" + }, + { + "x": [ + 4000, + 5000, + 6000 + ], + "y": [ + 7000, + 8000, + 9000 + ], + "xaxis": "x4", + "yaxis": "y4", + "type": "scattergl" + } + ], + "layout": { + "xaxis": { + "domain": [ + 0, + 0.45 + ] + }, + "yaxis": { + "domain": [ + 0, + 0.45 + ] + }, + "xaxis4": { + "domain": [ + 0.55, + 1 + ], + "anchor": "y4" + }, + "xaxis3": { + "domain": [ + 0, + 0.45 + ], + "anchor": "y3" + }, + "xaxis2": { + "domain": [ + 0.55, + 1 + ] + }, + "yaxis2": { + "domain": [ + 0, + 0.45 + ], + "anchor": "x2" + }, + "yaxis3": { + "domain": [ + 0.55, + 1 + ] + }, + "yaxis4": { + "domain": [ + 0.55, + 1 + ], + "anchor": "x4" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_scatter-colorscale-colorbar.json b/test/image/mocks/gl2d_scatter-colorscale-colorbar.json new file mode 100644 index 00000000000..9750e8a3f2b --- /dev/null +++ b/test/image/mocks/gl2d_scatter-colorscale-colorbar.json @@ -0,0 +1,162 @@ +{ + "data": [ + { + "marker": { + "color": [ + 0, + -1, + -2, + -3, + -4, + -5, + -6, + -7, + -8, + -9, + -10, + -11, + -12, + -13, + -14, + -15, + -16, + -17, + -18, + -19, + -20, + -21, + -22, + -23, + -24, + -25, + -26, + -27, + -28, + -29, + -30, + -31, + -32, + -33, + -34, + -35, + -36, + -37, + -38, + -39 + ], + "size": [ + 0, + 10, + 14.142135623730951, + 17.320508075688775, + 20, + 22.360679774997898, + 24.49489742783178, + 26.457513110645905, + 28.284271247461902, + 30, + 31.622776601683793, + 33.166247903554, + 34.64101615137755, + 36.05551275463989, + 37.416573867739416, + 38.72983346207417, + 40, + 41.23105625617661, + 42.42640687119285, + 43.58898943540674, + 44.721359549995796, + 45.8257569495584, + 46.9041575982343, + 47.958315233127195, + 48.98979485566356, + 50, + 50.99019513592785, + 51.96152422706632, + 52.91502622129181, + 53.85164807134504, + 54.772255750516614, + 55.67764362830022, + 56.568542494923804, + 57.445626465380286, + 58.309518948453004, + 59.16079783099616, + 60, + 60.8276253029822, + 61.644140029689765, + 62.44997998398398 + ], + "colorbar": { + "title": "WOW" + } + }, + "y": [ + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5 + ], + "type": "scattergl", + "mode": "markers" + } + ], + "layout": { + "title": "scatter + colorbar = <3", + "xaxis": { + "type": "linear", + "range": [ + -2.501411175139456, + 43.340777299865266 + ], + "autorange": true + }, + "yaxis": { + "type": "linear", + "range": [ + 4, + 6 + ], + "autorange": true + }, + "height": 598, + "width": 1080, + "autosize": true, + "showlegend": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_scatter-marker-line-colorscales.json b/test/image/mocks/gl2d_scatter-marker-line-colorscales.json new file mode 100644 index 00000000000..fec83aa07ea --- /dev/null +++ b/test/image/mocks/gl2d_scatter-marker-line-colorscales.json @@ -0,0 +1,204 @@ +{ + "data": [ + { + "type": "scattergl", + "mode": "markers", + "y": [ + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5, + 5 + ], + "marker": { + "color": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ], + "size": 30, + "cmin": 0, + "cmax": 45, + "colorscale": [ + [ + 0, + "rgb(5, 10, 172)" + ], + [ + 0.35, + "rgb(106, 137, 247)" + ], + [ + 0.5, + "rgb(190,190,190)" + ], + [ + 0.6, + "rgb(220, 170, 132)" + ], + [ + 0.7, + "rgb(230, 145, 90)" + ], + [ + 1, + "rgb(178, 10, 28)" + ] + ], + "line": { + "color": [ + 39, + 38, + 37, + 36, + 35, + 34, + 33, + 32, + 31, + 30, + 29, + 28, + 27, + 26, + 25, + 24, + 23, + 22, + 21, + 20, + 19, + 18, + 17, + 16, + 15, + 14, + 13, + 12, + 11, + 10, + 9, + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 0 + ], + "width": 5, + "cmin": 0, + "cmax": 43, + "colorscale": [ + [ + 0, + "rgb(220, 170, 132)" + ], + [ + 1, + "rgb(190,190,190)" + ] + ] + } + }, + "uid": "0a4533" + } + ], + "layout": { + "title": "scatter trace with colorscales for both marker color and marker line color", + "xaxis": { + "type": "linear", + "range": [ + -3.19449715370019, + 42.19449715370019 + ], + "autorange": true + }, + "yaxis": { + "type": "linear", + "range": [ + 4, + 6 + ], + "autorange": true + }, + "height": 598, + "width": 1080, + "autosize": true, + "showlegend": false + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_show_legend.json b/test/image/mocks/gl2d_show_legend.json new file mode 100644 index 00000000000..59da48e7941 --- /dev/null +++ b/test/image/mocks/gl2d_show_legend.json @@ -0,0 +1,36 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2 + ], + "y": [ + 1, + 2, + 3 + ], + "name": "First Trace", + "showlegend": false, + "type": "scattergl" + }, + { + "x": [ + 0, + 1, + 2, + 3 + ], + "y": [ + 8, + 4, + 2, + 0 + ], + "name": "Second Trace", + "showlegend": true, + "type": "scattergl" + } + ] +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_simple_inset.json b/test/image/mocks/gl2d_simple_inset.json new file mode 100644 index 00000000000..f0342b364f8 --- /dev/null +++ b/test/image/mocks/gl2d_simple_inset.json @@ -0,0 +1,48 @@ +{ + "data": [ + { + "x": [ + 1, + 2, + 3 + ], + "y": [ + 4, + 3, + 2 + ], + "type": "scattergl" + }, + { + "x": [ + 20, + 30, + 40 + ], + "y": [ + 30, + 40, + 50 + ], + "xaxis": "x2", + "yaxis": "y2", + "type": "scattergl" + } + ], + "layout": { + "yaxis2": { + "domain": [ + 0.6, + 0.95 + ], + "anchor": "x2" + }, + "xaxis2": { + "domain": [ + 0.6, + 0.95 + ], + "anchor": "y2" + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_size_margins.json b/test/image/mocks/gl2d_size_margins.json new file mode 100644 index 00000000000..bc4f1ed50a7 --- /dev/null +++ b/test/image/mocks/gl2d_size_margins.json @@ -0,0 +1,43 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "y": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8 + ], + "type": "scattergl" + } + ], + "layout": { + "autosize": false, + "width": 500, + "height": 500, + "margin": { + "l": 50, + "r": 50, + "b": 100, + "t": 100, + "pad": 4 + }, + "paper_bgcolor": "#7f7f7f", + "plot_bgcolor": "#c7c7c7" + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_stacked_coupled_subplots.json b/test/image/mocks/gl2d_stacked_coupled_subplots.json new file mode 100644 index 00000000000..27915792aa5 --- /dev/null +++ b/test/image/mocks/gl2d_stacked_coupled_subplots.json @@ -0,0 +1,68 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2 + ], + "y": [ + 10, + 11, + 12 + ], + "type": "scattergl" + }, + { + "x": [ + 2, + 3, + 4 + ], + "y": [ + 100, + 110, + 120 + ], + "yaxis": "y2", + "type": "scattergl" + }, + { + "x": [ + 3, + 4, + 5 + ], + "y": [ + 1000, + 1100, + 1200 + ], + "yaxis": "y3", + "type": "scattergl" + } + ], + "layout": { + "yaxis": { + "domain": [ + 0, + 0.33 + ] + }, + "legend": { + "traceorder": "reversed" + }, + "yaxis2": { + "domain": [ + 0.33, + 0.66 + ] + }, + "yaxis3": { + "domain": [ + 0.66, + 1 + ] + } + } +} \ No newline at end of file diff --git a/test/image/mocks/gl2d_stacked_subplots.json b/test/image/mocks/gl2d_stacked_subplots.json new file mode 100644 index 00000000000..ff5d275efed --- /dev/null +++ b/test/image/mocks/gl2d_stacked_subplots.json @@ -0,0 +1,76 @@ +{ + "data": [ + { + "x": [ + 0, + 1, + 2 + ], + "y": [ + 10, + 11, + 12 + ], + "type": "scattergl" + }, + { + "x": [ + 2, + 3, + 4 + ], + "y": [ + 100, + 110, + 120 + ], + "xaxis": "x2", + "yaxis": "y2", + "type": "scattergl" + }, + { + "x": [ + 3, + 4, + 5 + ], + "y": [ + 1000, + 1100, + 1200 + ], + "xaxis": "x3", + "yaxis": "y3", + "type": "scattergl" + } + ], + "layout": { + "yaxis": { + "domain": [ + 0, + 0.266 + ] + }, + "legend": { + "traceorder": "reversed" + }, + "xaxis3": { + "anchor": "y3" + }, + "xaxis2": { + "anchor": "y2" + }, + "yaxis2": { + "domain": [ + 0.366, + 0.633 + ] + }, + "yaxis3": { + "domain": [ + 0.733, + 1 + ] + } + } +} \ No newline at end of file diff --git a/devtools/test_dashboard/testplots-3d/autocolorscale.json b/test/image/mocks/gl3d_autocolorscale.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/autocolorscale.json rename to test/image/mocks/gl3d_autocolorscale.json diff --git a/devtools/test_dashboard/testplots-3d/autorange-zero.json b/test/image/mocks/gl3d_autorange-zero.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/autorange-zero.json rename to test/image/mocks/gl3d_autorange-zero.json diff --git a/devtools/test_dashboard/testplots-3d/bunny-hull.json b/test/image/mocks/gl3d_bunny-hull.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/bunny-hull.json rename to test/image/mocks/gl3d_bunny-hull.json diff --git a/devtools/test_dashboard/testplots-3d/bunny.json b/test/image/mocks/gl3d_bunny.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/bunny.json rename to test/image/mocks/gl3d_bunny.json diff --git a/devtools/test_dashboard/testplots-3d/chrisp-nan-1.json b/test/image/mocks/gl3d_chrisp-nan-1.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/chrisp-nan-1.json rename to test/image/mocks/gl3d_chrisp-nan-1.json diff --git a/devtools/test_dashboard/testplots-3d/contour-lines.json b/test/image/mocks/gl3d_contour-lines.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/contour-lines.json rename to test/image/mocks/gl3d_contour-lines.json diff --git a/devtools/test_dashboard/testplots-3d/convex-hull.json b/test/image/mocks/gl3d_convex-hull.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/convex-hull.json rename to test/image/mocks/gl3d_convex-hull.json diff --git a/devtools/test_dashboard/testplots-3d/cufflinks.json b/test/image/mocks/gl3d_cufflinks.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/cufflinks.json rename to test/image/mocks/gl3d_cufflinks.json diff --git a/devtools/test_dashboard/testplots-3d/delaunay.json b/test/image/mocks/gl3d_delaunay.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/delaunay.json rename to test/image/mocks/gl3d_delaunay.json diff --git a/devtools/test_dashboard/testplots-3d/ibm-plot.json b/test/image/mocks/gl3d_ibm-plot.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/ibm-plot.json rename to test/image/mocks/gl3d_ibm-plot.json diff --git a/devtools/test_dashboard/testplots-3d/log-axis-big.json b/test/image/mocks/gl3d_log-axis-big.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/log-axis-big.json rename to test/image/mocks/gl3d_log-axis-big.json diff --git a/devtools/test_dashboard/testplots-3d/log-axis.json b/test/image/mocks/gl3d_log-axis.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/log-axis.json rename to test/image/mocks/gl3d_log-axis.json diff --git a/devtools/test_dashboard/testplots-3d/marker-arrays.json b/test/image/mocks/gl3d_marker-arrays.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/marker-arrays.json rename to test/image/mocks/gl3d_marker-arrays.json diff --git a/devtools/test_dashboard/testplots-3d/marker-color.json b/test/image/mocks/gl3d_marker-color.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/marker-color.json rename to test/image/mocks/gl3d_marker-color.json diff --git a/devtools/test_dashboard/testplots-3d/mirror-ticks.json b/test/image/mocks/gl3d_mirror-ticks.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/mirror-ticks.json rename to test/image/mocks/gl3d_mirror-ticks.json diff --git a/devtools/test_dashboard/testplots-3d/multi-scene.json b/test/image/mocks/gl3d_multi-scene.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/multi-scene.json rename to test/image/mocks/gl3d_multi-scene.json diff --git a/devtools/test_dashboard/testplots-3d/nan-holes.json b/test/image/mocks/gl3d_nan-holes.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/nan-holes.json rename to test/image/mocks/gl3d_nan-holes.json diff --git a/devtools/test_dashboard/testplots-3d/opacity-scaling-spikes.json b/test/image/mocks/gl3d_opacity-scaling-spikes.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/opacity-scaling-spikes.json rename to test/image/mocks/gl3d_opacity-scaling-spikes.json diff --git a/devtools/test_dashboard/testplots-3d/opacity-surface.json b/test/image/mocks/gl3d_opacity-surface.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/opacity-surface.json rename to test/image/mocks/gl3d_opacity-surface.json diff --git a/devtools/test_dashboard/testplots-3d/projection-traces.json b/test/image/mocks/gl3d_projection-traces.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/projection-traces.json rename to test/image/mocks/gl3d_projection-traces.json diff --git a/devtools/test_dashboard/testplots-3d/ribbons.json b/test/image/mocks/gl3d_ribbons.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/ribbons.json rename to test/image/mocks/gl3d_ribbons.json diff --git a/devtools/test_dashboard/testplots-3d/scatter-date.json b/test/image/mocks/gl3d_scatter-date.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/scatter-date.json rename to test/image/mocks/gl3d_scatter-date.json diff --git a/devtools/test_dashboard/testplots-3d/scatter3d-colorscale.json b/test/image/mocks/gl3d_scatter3d-colorscale.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/scatter3d-colorscale.json rename to test/image/mocks/gl3d_scatter3d-colorscale.json diff --git a/devtools/test_dashboard/testplots-3d/snowden.json b/test/image/mocks/gl3d_snowden.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/snowden.json rename to test/image/mocks/gl3d_snowden.json diff --git a/devtools/test_dashboard/testplots-3d/surface-lighting.json b/test/image/mocks/gl3d_surface-lighting.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/surface-lighting.json rename to test/image/mocks/gl3d_surface-lighting.json diff --git a/devtools/test_dashboard/testplots-3d/text-weirdness.json b/test/image/mocks/gl3d_text-weirdness.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/text-weirdness.json rename to test/image/mocks/gl3d_text-weirdness.json diff --git a/devtools/test_dashboard/testplots-3d/triangle.json b/test/image/mocks/gl3d_triangle.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/triangle.json rename to test/image/mocks/gl3d_triangle.json diff --git a/devtools/test_dashboard/testplots-3d/wire-surface.json b/test/image/mocks/gl3d_wire-surface.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/wire-surface.json rename to test/image/mocks/gl3d_wire-surface.json diff --git a/devtools/test_dashboard/testplots-3d/xy-defined-ticks.json b/test/image/mocks/gl3d_xy-defined-ticks.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/xy-defined-ticks.json rename to test/image/mocks/gl3d_xy-defined-ticks.json diff --git a/devtools/test_dashboard/testplots-3d/z-range.json b/test/image/mocks/gl3d_z-range.json similarity index 100% rename from devtools/test_dashboard/testplots-3d/z-range.json rename to test/image/mocks/gl3d_z-range.json diff --git a/test/image/tools/get-options.js b/test/image/tools/get-options.js deleted file mode 100644 index 92be73eac5f..00000000000 --- a/test/image/tools/get-options.js +++ /dev/null @@ -1,20 +0,0 @@ -'use strict'; -/* -* Give it a json object for the body, -* it'll return an options object ready -* for request(). -* Just for added testing easypeasyness. -*/ -function getOptions (body, url) { - - var opts = { - url: url || 'http://localhost:9010/', - method: 'POST' - }; - - if (body) opts.body = JSON.stringify(body); - - return opts; -} - -module.exports = getOptions;