{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "## Section 0: Getting Started with Plotly" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Welcome to Plotly's Python API User Guide. \n", "\n", "> Links to the other sections are on the User Guide's [homepage](https://plotly.com/python/userguide) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Section 0 is divided as follows:\n", "\n", "* [0.1 The Plotly philosophy](#0.1-The-Plotly-Philosophy)\n", "\n", "* [0.2 Set up Plotly to start making plots](#0.2-Set-up-Plotly-to-start-making-plots)\n", "\n", "* [0.3 A first Plotly plot](#0.3-A-first-Plotly-plot)\n", "\n", "* [0.4 Plotly's graph objects](#0.4-Plotly's-graph-objects)\n", "\n", "* [0.5 Graph object methods](#0.5-Graph-object-methods)\n", "\n", "* [0.6 Get figure and new possible workflows](#0.6-Get-figure-and-new-possible-workflows)\n", "\n", "
" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 0.1 The Plotly Philosophy" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Python gives users access to easy-to-use, serializible data structures, namely lists and dictionaries. \n", "\n", "Plotly let's you use what you already know about handling these data structures to make beautiful visualizations of your data. The underlying each figure you make in Plotly is nothing more than an organized, nested dictionary.\n", "\n", "> Working with Plotly's Python API sums up to working with Python lists and dictionaries.\n", "\n", "If you are new to Python or in need of a brush up, we recommand looking over the User Guide's [Appendix A](https://plotly.com/python/python-tutorial), where we present valuable information about the Python features most used in the User Guide." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 0.2 Set up Plotly to start making plots" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The User Guide's homepage walks you through the Plotly installation/sign up process. \n", "\n", "**We recommend staying up-to-date with the latest version of the Plotly Python package.**\n", "\n", "To check which Plotly version is currently installed on your machine, run (inside Python or IPython):" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "'1.9.5'" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (*) Import plotly package\n", "import plotly\n", "\n", "# Check plotly package version\n", "plotly.__version__ " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In order to ensure you have the latest version, type the following in a terminal:\n", "\n", " * `$ pip install plotly --upgrade`\n", " \n", "If you have issues upgrading and installing Plotly, feel free to post in our [Community Forum](http://community.plot.ly/). \n", " \n", "The content of the Plotly Python package is split into three main modules:\n", "\n", "* `plotly.plotly` \n", "* `plotly.tools`\n", "* `plotly.graph_objs`\n", "\n", "Loosley speaking, the `plotly.plotly` module contains functions that require a response from Plotly's servers. Functions in this module are the liaison between your local machine and Plotly. \n", "\n", "The `plotly.tools` module is a set of helpful (new) functions facilitating and enhancing the Plotly experience. Functions for subplot generation, embedding Plotly plots in IPython notebooks, saving and retrieving your credentials are now at your finger tips.\n", "\n", "And finally, the `plotly.graph_objs` module contains all of the class definitions for the objects that make up the plots you see. These *graph objects* are for instance: Figure, Data, Layout, Scatter, etc. Graph objects are dictionary- and list-like objects used to generate and/or modify every feature of a Plotly plot. Graph objects are covered in details in [subsection 0.4](#0.4-Plotly's-graph-objects)." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "But for now, let's sign in to Plotly and get ready to make a simple first plot:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) How you communicate with Plotly's servers\n", "import plotly.plotly as py " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> Once you have set up your [credentials file](https://plotly.com/python/getting-started/), the above line of code is all you need to sign in to Plotly's servers. \n", "\n", "*That's right, you are now signed in!*\n", "\n", "How does that work? While being imported, the `plotly.plotly` module looks for your credentials file on your machine and automatically uses it to sign in to Plotly's servers.\n", "\n", "Using the credentials file allows users to share code without having to type in (let alone remember) their own username and API key every time they want to generate a new Plotly plot, or modify an existing Plotly plot.\n", "\n", "That said, if more convenient, users can still manually sign in to Plotly by typing:\n", "\n", " >>> py.sign_in('your_username','your_api_key')\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, to enhance our Plotly plotting experience, we import the `plotly.tools` module:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) Useful tools, e.g., get_sublots(), embed()\n", "import plotly.tools as tls" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `py` and `tls` are the recommended references for the `plotly.plotly` and `plotly.tools` modules respectively. They are used throughout the User Guide." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 0.3 A first Plotly plot" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For our first plot, let's take two lists of numbers and plot them against each other. \n", "In later sections, we will use real data files, but for now, this will do.\n", "\n", "Plot data and style options are sent to Plotly through the first argument of the `plot()` function of the `plotly.plotly` module.\n", "\n", "That's right, data AND style options make up only one argument in Plotly, and they're both packaged in one Python dictionary.\n", "More specifically, this `plot()` function anticipates one and only one *figure object* (more in [subsection 0.4](#0.4-Plotly's-graph-objects)).\n", " \n", "Consider the following code:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (1) Two lists of numbers\n", "x1 = [1, 2, 3, 5, 6]\n", "y1 = [1, 4.5, 7, 24, 38]\n", "\n", "# (2) Make dictionary linking x and y coordinate lists to 'x' and 'y' keys\n", "trace1 = dict(x=x1, y=y1)\n", "\n", "# (3) Make list of 1 trace, to be sent to Plotly\n", "data = [trace1]" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "u'https://plotly.com/~etpinard/157'" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Call the plot() function of the plotly.plotly submodule,\n", "# save figure as 's0_first_plot'\n", "py.plot(data, filename='s0_first_plot')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Good.\n", "\n", "We need to mention that, by default, the `plot()` function prints the unique URL that identifies the figure on the stdout and opens a new tab in your browser showing the plot just generated on the Plotly website.\n", "\n", "Here's a snapshot:\n", "\n", "\n", "\n", "
\n", "\n", "If you don't like having Plotly open a new tab every time you make a plot, you can turn this feature off simply by adding one keyword argument to `plot()`:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "u'https://plotly.com/~etpinard/157'" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Make Plotly plot but do no open a new tab\n", "py.plot(data, filename='s0_first_plot', auto_open=False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The keyword argument `filename` is used to name our Plotly plot. Here, the generated figure is saved in your own Plotly directory as `s0_first_plot`. \n", "\n", "By default, this figure is accessible for all. If you want to keep your plots private, add the following keyword argument in the `plot()` call:\n", "\n", " `sharing = private` OR `sharing = secret` \n", " \n", "But careful! Users with a free account have a limiting number of private figures that they can save on the Plotly servers. For more info, see our plans and pricing." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For IPython notebook users (like us here in the User Guide), Plotly makes it easy to incorporate Plotly plots inside IPython notebooks. By calling the `iplot()` function instead of the `plot()`, Plotly embeds the generated plot directly in the cell, similar to the IPython `%matplotlib inline` magic:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Sent data to Plotly and show result in notebook \n", "py.iplot(data, filename='s0_first_plot')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Fantastic and convenient, the `iplot()` function is used throughout the User Guide.\n", "\n", "Plotly plots are fully interactive (even inside IPython notebooks):\n", "\n", "* Users can check the x and y coordinates of every point on the plot by hovering with the cursor. \n", "* By scrolling or clicking and dragging the cursor over a region, Plotly zooms in on the plot and resizes lines, points and axes (not just a static zoom, try it!). \n", "* Hold the shift key while clicking and dragging to pan.\n", "* Finally, a double click on the plot zooms back out to the original version. \n", "\n", "In brief, Plotly is a great way to make beautiful interactive plots in a clean and simple manner. It turns lists of numbers into plots very easily. That said, for custom and professional-looking plots (with titles among other things), we need to learn how to use Plotly in conjunction with Python lists, dictionaries and their decendent, Plotly graph objects." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 0.4 Plotly's graph objects" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "

Question:

\n", "What are these Plotly graph objects?\n", "\n", "

Answer 1:

\n", "Plotly graph objects are Python dictionaries and lists.\n", "\n", "

Answer 2:

\n", "More precisely, Plotly's Graph Objects inherit from Python's native dictionary and list data structures. Thus, by defining the Plotly graph objects as new classes, users can have access to class-specific help, validation, and functionality. \n", "\n", "

Answer 3:

\n", "And for the really technical among us, each Plotly graph object is represented by a sub-dictionary in a JSON structure that stores every bit of information of a Plotly plot that is rendered by your browser. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> All bits of information of a Plotly plot are stored in a figure object. Specifically, the `Figure` object is the first required argument for the `plot()` and `iplot()` functions.\n", "\n", "A `Figure` object contains in turn one `Data` graph object and one `Layout` graph object:\n", "\n", "* `Data` stores data and style options associated with traces.\n", "\n", " As a convention, we use the term *trace* to refer to any collection of data points meant to be plotted as a whole. For example in our first plot, the `x1`, `y1` lists represent one trace.\n", "\n", "* `Layout` stores information associated with the axes, legend, annotations and other *aesthetic* features outside the plotting area.\n", "\n", "For example, setting the line color is made via `Data` while setting the title of the plot is made via `Layout`.\n", "\n", "Plotly's Python API helps you create these objects by now offering up tons of help documentation, doing validation for you and offering tools to make the manipulation of these structures simpler." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "So, let's start playing around with graph objects by importing `Data`, `Layout` and `Figure` from the `plotly.graph_objs` module:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) Graph objects to piece together plots\n", "from plotly.graph_objs import Data, Layout, Figure" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Admire the extensive help documentation:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Figure in module plotly.graph_objs.graph_objs:\n", "\n", "class Figure(PlotlyDict)\n", " | A dictionary-like object representing a figure to be rendered by plotly.\n", " | This is the container for all things to be rendered in a figure.\n", " | \n", " | Quick method reference:\n", " | \n", " | Figure.update(changes)\n", " | Figure.strip_style()\n", " | Figure.get_data()\n", " | Figure.to_graph_objs()\n", " | Figure.validate()\n", " | Figure.to_string()\n", " | Figure.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | data [required=False] (value=Data object | list-like object of one or\n", " | several dictionary-like object):\n", " | A list-like object of one or multiple trace dictionary-like objects\n", " | to be shown on one plotly figure.\n", " | \n", " | For more, run `help(plotly.graph_objs.Data)`\n", " | \n", " | layout [required=False] (value=Layout object | dictionary-like object):\n", " | A dictionary-like object that contains the layout parameters (e.g.\n", " | information about the axis, global settings and layout information\n", " | related to the rendering of the figure).\n", " | \n", " | For more, run `help(plotly.graph_objs.Layout)`\n", " | \n", " | Method resolution order:\n", " | Figure\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods defined here:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | append_trace(self, trace, row, col)\n", " | Helper function to add a data traces to your figure\n", " | that is bound to axes at the row, col index.\n", " | \n", " | The row, col index is generated from figures created with\n", " | plotly.tools.make_subplots and can be viewed with Figure.print_grid.\n", " | \n", " | Example:\n", " | # stack two subplots vertically\n", " | fig = tools.make_subplots(rows=2)\n", " | \n", " | This is the format of your plot grid:\n", " | [ (1,1) x1,y1 ]\n", " | [ (2,1) x2,y2 ]\n", " | \n", " | fig.append_trace(Scatter(x=[1,2,3], y=[2,1,2]), 1, 1)\n", " | fig.append_trace(Scatter(x=[1,2,3], y=[2,1,2]), 2, 1)\n", " | \n", " | Arguments:\n", " | \n", " | trace (plotly trace object):\n", " | The data trace to be bound.\n", " | \n", " | row (int):\n", " | Subplot row index on the subplot grid (see Figure.print_grid)\n", " | \n", " | col (int):\n", " | Subplot column index on the subplot grid (see Figure.print_grid)\n", " | \n", " | print_grid(self)\n", " | Print a visual layout of the figure's axes arrangement.\n", " | \n", " | This is only valid for figures that are created\n", " | with plotly.tools.make_subplots.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Figure) # call help()!" ] }, { "cell_type": "code", "execution_count": 10, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Data in module plotly.graph_objs.graph_objs:\n", "\n", "class Data(PlotlyList)\n", " | A list-like object of trace dictionary-like objects to be shown on one\n", " | plotly figure.\n", " | \n", " | Example:\n", " | \n", " | >>> Data([Bar(x=[1,2], y=[4,5]), Scatter(x=[1,2], y[2,3])])\n", " | \n", " | Parent key:\n", " | \n", " | data\n", " | \n", " | Quick method reference:\n", " | \n", " | Data.update(changes)\n", " | Data.strip_style()\n", " | Data.get_data()\n", " | Data.to_graph_objs()\n", " | Data.validate()\n", " | Data.to_string()\n", " | Data.force_clean()\n", " | \n", " | Method resolution order:\n", " | Data\n", " | PlotlyList\n", " | __builtin__.list\n", " | __builtin__.object\n", " | \n", " | Methods defined here:\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Change any nested collections to subclasses of PlotlyDict/List.\n", " | \n", " | Procedure:\n", " | 1. Attempt to convert all entries to a subclass of PlotlyTrace.\n", " | 2. Call `to_graph_objects` on each of these entries.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyList:\n", " | \n", " | __init__(self, *args)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and calls force_clean() on entries.\n", " | \n", " | Calling force_clean() on a PlotlyList will ensure that the object is\n", " | valid and may be sent to plotly. This process will remove any entries\n", " | that end up with a length == 0. It will also remove itself from\n", " | enclosing trivial structures if it is enclosed by a collection with\n", " | length 1, meaning the data is the ONLY object in the collection.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | update(self, changes, make_copies=False)\n", " | Update current list with changed_list, which must be iterable.\n", " | The 'changes' should be a list of dictionaries, however,\n", " | it is permitted to be a single dict object.\n", " | \n", " | Because mutable objects contain references to their values, updating\n", " | multiple items in a list will cause the items to all reference the same\n", " | original set of objects. To change this behavior add\n", " | `make_copies=True` which makes deep copies of the update items and\n", " | therefore break references.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the entries in a PlotlyList.\n", " | \n", " | PlotlyList may only contain suclasses of PlotlyDict, or dictionary-like\n", " | objects that can be re-instantiated as subclasses of PlotlyDict.\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire list has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyList:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.list:\n", " | \n", " | __add__(...)\n", " | x.__add__(y) <==> x+y\n", " | \n", " | __contains__(...)\n", " | x.__contains__(y) <==> y in x\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __delslice__(...)\n", " | x.__delslice__(i, j) <==> del x[i:j]\n", " | \n", " | Use of negative indices is not supported.\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __getslice__(...)\n", " | x.__getslice__(i, j) <==> x[i:j]\n", " | \n", " | Use of negative indices is not supported.\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iadd__(...)\n", " | x.__iadd__(y) <==> x+=y\n", " | \n", " | __imul__(...)\n", " | x.__imul__(y) <==> x*=y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x*n\n", " | \n", " | __ne__(...)\n", " | x.__ne__(y) <==> x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __reversed__(...)\n", " | L.__reversed__() -- return a reverse iterator over the list\n", " | \n", " | __rmul__(...)\n", " | x.__rmul__(n) <==> n*x\n", " | \n", " | __setitem__(...)\n", " | x.__setitem__(i, y) <==> x[i]=y\n", " | \n", " | __setslice__(...)\n", " | x.__setslice__(i, j, y) <==> x[i:j]=y\n", " | \n", " | Use of negative indices is not supported.\n", " | \n", " | __sizeof__(...)\n", " | L.__sizeof__() -- size of L in memory, in bytes\n", " | \n", " | append(...)\n", " | L.append(object) -- append object to end\n", " | \n", " | count(...)\n", " | L.count(value) -> integer -- return number of occurrences of value\n", " | \n", " | extend(...)\n", " | L.extend(iterable) -- extend list by appending elements from the iterable\n", " | \n", " | index(...)\n", " | L.index(value, [start, [stop]]) -> integer -- return first index of value.\n", " | Raises ValueError if the value is not present.\n", " | \n", " | insert(...)\n", " | L.insert(index, object) -- insert object before index\n", " | \n", " | pop(...)\n", " | L.pop([index]) -> item -- remove and return item at index (default last).\n", " | Raises IndexError if list is empty or index is out of range.\n", " | \n", " | remove(...)\n", " | L.remove(value) -- remove first occurrence of value.\n", " | Raises ValueError if the value is not present.\n", " | \n", " | reverse(...)\n", " | L.reverse() -- reverse *IN PLACE*\n", " | \n", " | sort(...)\n", " | L.sort(cmp=None, key=None, reverse=False) -- stable sort *IN PLACE*;\n", " | cmp(x, y) -> -1, 0, 1\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.list:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Data) # call help()!" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Layout in module plotly.graph_objs.graph_objs:\n", "\n", "class Layout(PlotlyDict)\n", " | A dictionary-like object containing specification of the layout of a plotly\n", " | figure.\n", " | \n", " | Online examples:\n", " | \n", " | https://plotly.com/python/figure-labels/\n", " | https://plotly.com/python/axes/\n", " | https://plotly.com/python/bar-charts/\n", " | https://plotly.com/python/log-plot/\n", " | \n", " | Parent key:\n", " | \n", " | layout\n", " | \n", " | Quick method reference:\n", " | \n", " | Layout.update(changes)\n", " | Layout.strip_style()\n", " | Layout.get_data()\n", " | Layout.to_graph_objs()\n", " | Layout.validate()\n", " | Layout.to_string()\n", " | Layout.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | title [required=False] (value=a string):\n", " | The title of the figure.\n", " | \n", " | titlefont [required=False] (value=Font object | dictionary-like object):\n", " | Links a dictionary-like object describing the font settings of the\n", " | figure's title.\n", " | \n", " | For more, run `help(plotly.graph_objs.Font)`\n", " | \n", " | font [required=False] (value=Font object | dictionary-like object):\n", " | Links a dictionary-like object describing the global font settings\n", " | for this figure (e.g. all axis titles and labels).\n", " | \n", " | For more, run `help(plotly.graph_objs.Font)`\n", " | \n", " | showlegend [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the legend will be shown in this figure.\n", " | \n", " | autosize [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the dimensions of the figure are automatically\n", " | picked by Plotly. Plotly picks figure's dimensions as a function of\n", " | your machine's display resolution. Once 'autosize' is set to False,\n", " | the figure's dimensions can be set with 'width' and 'height'.\n", " | \n", " | width [required=False] (value=number: x > 0):\n", " | Sets the width in pixels of the figure you are generating.\n", " | \n", " | height [required=False] (value=number: x > 0):\n", " | Sets the height in pixels of the figure you are generating.\n", " | \n", " | xaxis [required=False] (value=XAxis object | dictionary-like object):\n", " | Links a dictionary-like object describing an x-axis (i.e. an\n", " | horizontal axis). The first XAxis object can be entered into\n", " | 'layout' by linking it to 'xaxis' OR 'xaxis1', both keys are\n", " | identical to Plotly. To create references other than x-axes, you\n", " | need to define them in 'layout' using keys 'xaxis2', 'xaxis3' and so\n", " | on. Note that in 3D plots, XAxis objects must be linked from a Scene\n", " | object.\n", " | \n", " | For more, run `help(plotly.graph_objs.XAxis)`\n", " | \n", " | yaxis [required=False] (value=YAxis object | dictionary-like object):\n", " | Links a dictionary-like object describing an y-axis (i.e. an\n", " | vertical axis). The first YAxis object can be entered into 'layout'\n", " | by linking it to 'yaxis' OR 'yaxis1', both keys are identical to\n", " | Plotly. To create references other than y-axes, you need to define\n", " | them in 'layout' using keys 'yaxis2', 'yaxis3' and so on. Note that\n", " | in 3D plots, YAxis objects must be linked from a Scene object.\n", " | \n", " | For more, run `help(plotly.graph_objs.YAxis)`\n", " | \n", " | legend [required=False] (value=Legend object | dictionary-like object):\n", " | Links a dictionary-like object containing the legend parameters for\n", " | this figure.\n", " | \n", " | For more, run `help(plotly.graph_objs.Legend)`\n", " | \n", " | annotations [required=False] (value=Annotations object | list-like\n", " | object of one or several dictionary-like object):\n", " | Links a list-like object that contains one or multiple annotation\n", " | dictionary-like objects.\n", " | \n", " | For more, run `help(plotly.graph_objs.Annotations)`\n", " | \n", " | margin [required=False] (value=Margin object | dictionary-like object):\n", " | Links a dictionary-like object containing the margin parameters for\n", " | this figure.\n", " | \n", " | For more, run `help(plotly.graph_objs.Margin)`\n", " | \n", " | paper_bgcolor [required=False] (value=a string describing color):\n", " | Sets the color of the figure's paper (i.e. area representing the\n", " | canvas of the figure).\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | plot_bgcolor [required=False] (value=a string describing color):\n", " | Sets the background color of the plot (i.e. the area laying inside\n", " | this figure's axes.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | hovermode [required=False] (value='closest' | 'x' | 'y'):\n", " | Sets this figure's behavior when a user hovers over it. When set to\n", " | 'x', all data sharing the same 'x' coordinate will be shown on\n", " | screen with corresponding trace labels. When set to 'y' all data\n", " | sharing the same 'y' coordinates will be shown on the screen with\n", " | corresponding trace labels. When set to 'closest', information about\n", " | the data point closest to where the viewer is hovering will appear.\n", " | \n", " | dragmode [required=False] (value='zoom' | 'pan' | 'rotate' (in 3D\n", " | plots)):\n", " | Sets this figure's behavior when a user preforms a mouse 'drag' in\n", " | the plot area. When set to 'zoom', a portion of the plot will be\n", " | highlighted, when the viewer exits the drag, this highlighted\n", " | section will be zoomed in on. When set to 'pan', data in the plot\n", " | will move along with the viewers dragging motions. A user can always\n", " | depress the 'shift' key to access the whatever functionality has not\n", " | been set as the default. In 3D plots, the default drag mode is\n", " | 'rotate' which rotates the scene.\n", " | \n", " | separators [required=False] (value=a two-character string):\n", " | Sets the decimal (the first character) and thousands (the second\n", " | character) separators to be displayed on this figure's tick labels\n", " | and hover mode. This is meant for internationalization purposes. For\n", " | example, if 'separator' is set to ', ', then decimals are separated\n", " | by commas and thousands by spaces. One may have to set\n", " | 'exponentformat' to 'none' in the corresponding axis object(s) to\n", " | see the effects.\n", " | \n", " | barmode [required=False] (value='stack' | 'group' | 'overlay'):\n", " | For bar and histogram plots only. This sets how multiple bar objects\n", " | are plotted together. In other words, this defines how bars at the\n", " | same location appear on the plot. If set to 'stack' the bars are\n", " | stacked on top of one another. If set to 'group', the bars are\n", " | plotted next to one another, centered around the shared location. If\n", " | set to 'overlay', the bars are simply plotted over one another, you\n", " | may need to set the opacity to see this.\n", " | \n", " | bargap [required=False] (value=number: x in [0, 1)):\n", " | For bar and histogram plots only. Sets the gap between bars (or sets\n", " | of bars) at different locations.\n", " | \n", " | bargroupgap [required=False] (value=number: x in [0, 1)):\n", " | For bar and histogram plots only. Sets the gap between bars in the\n", " | same group. That is, when multiple bar objects are plotted and share\n", " | the same locations, this sets the distance between bars at each\n", " | location.\n", " | \n", " | boxmode [required=False] (value='overlay' | 'group'):\n", " | For box plots only. Sets how groups of box plots appear. If set to\n", " | 'overlay', a group of boxes will be plotted directly on top of one\n", " | another at their specified location. If set to 'group', the boxes\n", " | will be centered around their shared location, but they will not\n", " | overlap.\n", " | \n", " | boxgap [required=False] (value=number: x in [0, 1)):\n", " | For box plots only. Sets the gap between boxes at different\n", " | locations (i.e. x-labels). If there are multiple boxes at a single\n", " | x-label, then this sets the gap between these sets of boxes.For\n", " | example, if 0, then there is no gap between boxes. If 0.25, then\n", " | this gap occupies 25% of the available space and the box width (or\n", " | width of the set of boxes) occupies the remaining 75%.\n", " | \n", " | boxgroupgap [required=False] (value=number: x in [0, 1)):\n", " | For box plots only. Sets the gap between boxes in the same group,\n", " | where a group is the set of boxes with the same location (i.e.\n", " | x-label). For example, if 0, then there is no gap between boxes. If\n", " | 0.25, then this gap occupies 25% of the available space and the box\n", " | width occupies the remaining 75%.\n", " | \n", " | radialaxis [required=False] (value=RadialAxis object | dictionary-like\n", " | object):\n", " | Links a dictionary-like object describing the radial axis in a polar\n", " | plot.\n", " | \n", " | For more, run `help(plotly.graph_objs.RadialAxis)`\n", " | \n", " | angularaxis [required=False] (value=AngularAxis object | dictionary-like\n", " | object):\n", " | Links a dictionary-like object describing the angular axis in a\n", " | polar plot.\n", " | \n", " | For more, run `help(plotly.graph_objs.AngularAxis)`\n", " | \n", " | scene [required=False] (value=Scene object | dictionary-like object):\n", " | Links a dictionary-like object describing a scene in a 3D plot. The\n", " | first Scene object can be entered into 'layout' by linking it to\n", " | 'scene' OR 'scene1', both keys are identical to Plotly. Link\n", " | subsequent Scene objects using 'scene2', 'scene3', etc.\n", " | \n", " | For more, run `help(plotly.graph_objs.Scene)`\n", " | \n", " | direction [required=False] (value='clockwise' | 'counterclockwise'):\n", " | For polar plots only. Sets the direction corresponding to positive\n", " | angles.\n", " | \n", " | orientation [required=False] (value=number: x in [-360, 360]):\n", " | For polar plots only. Rotates the entire polar by the given angle.\n", " | \n", " | hidesources [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not an annotation citing the data source is placed\n", " | at the bottom-right corner of the figure.This key has an effect only\n", " | on graphs that have been generated from forked graphs from plot.ly.\n", " | \n", " | Method resolution order:\n", " | Layout\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods defined here:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a Layout will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | This method differs from the parent (PlotlyDict) method in that it\n", " | must check for an infinite number of possible axis keys, i.e. 'xaxis',\n", " | 'xaxis1', 'xaxis2', 'xaxis3', etc. Therefore, it cannot make a call\n", " | to super...\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Layout) # call help()!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Notice that `Data` is a list-like object whereas `Figure` and `Layout` are dictionary-like objects. Ordering is important in `Data` as individual traces are plotted in order starting from the first trace graph object in `Data`. For example, a scatter trace plotted over a bar trace does not yield, in general, the same plot as a bar trace plotted over a scatter trace.\n", "\n", "Speaking of traces, every Plotly plot type has its own graph object (or more specifically its own *trace graph object*) e.g. `Scatter`, `Bar`, `Histogram`. As a first example, let's try to improve on our first plot by incorporating the graph object `Scatter`:" ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) Import the Scatter graph object\n", "from plotly.graph_objs import Scatter" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Scatter in module plotly.graph_objs.graph_objs:\n", "\n", "class Scatter(PlotlyTrace)\n", " | A dictionary-like object for representing a scatter trace in plotly.\n", " | \n", " | Example:\n", " | \n", " | >>> py.plot([Scatter(name='tacters', x=[1,4,2,3], y=[1,6,2,1])])\n", " | \n", " | Online examples:\n", " | \n", " | https://plotly.com/python/line-and-scatter/\n", " | https://plotly.com/python/bubble-charts/\n", " | https://plotly.com/python/filled-area-plots/\n", " | https://plotly.com/python/time-series/\n", " | \n", " | Quick method reference:\n", " | \n", " | Scatter.update(changes)\n", " | Scatter.strip_style()\n", " | Scatter.get_data()\n", " | Scatter.to_graph_objs()\n", " | Scatter.validate()\n", " | Scatter.to_string()\n", " | Scatter.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | x [required= when 'y','r' and 't' are unset] (value=list or 1d numpy\n", " | array of numbers, strings, datetimes) (streamable):\n", " | Sets the x coordinates of the points of this scatter trace. If 'x'\n", " | is linked to a list or 1d numpy array of strings, then the x\n", " | coordinates are integers, 0, 1, 2, 3, ..., labeled on the x-axis by\n", " | the list or 1d numpy array of strings linked to 'x'.\n", " | \n", " | y [required= when 'x','r' and 't' are unset] (value=list or 1d numpy\n", " | array of numbers, strings, datetimes) (streamable):\n", " | Sets the y coordinates of the points of this scatter trace. If 'y'\n", " | is linked to a list or 1d numpy array of strings, then the y\n", " | coordinates are integers, 0, 1, 2, 3, ..., labeled on the y-axis by\n", " | the list or 1d numpy array of strings linked to 'y'.\n", " | \n", " | r [required= when making a Polar Chart] (value=list or 1d numpy array of\n", " | numbers) (streamable):\n", " | For Polar charts only. Sets the radial coordinates of the points in\n", " | this polar scatter trace about the origin.\n", " | \n", " | t [required= when making a Polar Chart] (value=list or 1d numpy array of\n", " | numbers, strings, datetimes) (streamable):\n", " | For Polar charts only. Sets the angular coordinates of the points in\n", " | this polar scatter trace. By default, the angular coordinates are in\n", " | degrees (0 to 360) where the angles are measured clockwise about the\n", " | right-hand side of the origin. To change this behavior, modify\n", " | 'range' in 'angularaxis' or/and 'direction' in 'layout'. If 't' is\n", " | linked to a list or 1d numpy array of strings, then the angular\n", " | coordinates are 0, 360\\N, 2*360/N, ... where N is the number of\n", " | coordinates given labeled by the list or 1d numpy array of strings\n", " | linked to 't'.\n", " | \n", " | mode [required=False] (value='lines' | 'markers' | 'text' |\n", " | 'lines+markers' | 'lines+text' | 'markers+text' | 'lines+markers+text'):\n", " | Plotting mode for this scatter trace. If the mode includes 'text'\n", " | then the 'text' will appear at the (x,y) points, otherwise it will\n", " | appear on hover.\n", " | \n", " | name [required=False] (value=a string):\n", " | The label associated with this trace. This name will appear in the\n", " | legend, on hover and in the column header in the online spreadsheet.\n", " | \n", " | text [required=False] (value=list or 1d numpy array of strings)\n", " | (streamable):\n", " | The text elements associated with each (x,y) pair in this scatter\n", " | trace. If the scatter 'mode' does not include 'text' then elements\n", " | linked to 'text' will appear on hover only. In contrast, if 'text'\n", " | is included in 'mode', the elements in 'text' will be rendered on\n", " | the plot at the locations specified in part by their corresponding\n", " | (x,y) coordinate pair and the 'textposition' key.\n", " | \n", " | error_y [required=False] (value=ErrorY object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object describing the vertical error bars\n", " | (i.e. along the y-axis) that can be drawn from the (x,y) coordinates\n", " | of this scatter trace.\n", " | \n", " | For more, run `help(plotly.graph_objs.ErrorY)`\n", " | \n", " | error_x [required=False] (value=ErrorX object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object describing the horizontal error bars\n", " | (i.e. along the x-axis) that can be drawn from the (x,y) coordinates\n", " | of this scatter trace.\n", " | \n", " | For more, run `help(plotly.graph_objs.ErrorX)`\n", " | \n", " | marker [required=False] (value=Marker object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object containing marker style parameters\n", " | for this scatter trace. Has an effect only if 'mode' contains\n", " | 'markers'.\n", " | \n", " | For more, run `help(plotly.graph_objs.Marker)`\n", " | \n", " | line [required=False] (value=Line object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object containing line parameters for this\n", " | scatter trace. Has an effect only if 'mode' contains 'lines'.\n", " | \n", " | For more, run `help(plotly.graph_objs.Line)`\n", " | \n", " | textposition [required=False] (value='top left' | 'top' (or 'top\n", " | center')| 'top right' | 'left' (or 'middle left') | '' (or 'middle\n", " | center') | 'right' (or 'middle right') | 'bottom left' | 'bottom' (or\n", " | 'bottom center') | 'bottom right'):\n", " | Sets the position of the text elements in the 'text' key with\n", " | respect to the data points. By default, the text elements are\n", " | plotted directly at the (x,y) coordinates.\n", " | \n", " | textfont [required=False] (value=Font object | dictionary-like object):\n", " | Links a dictionary-like object describing the font style of this\n", " | scatter trace's text elements. Has only an effect if 'mode' is set\n", " | and includes 'text'.\n", " | \n", " | For more, run `help(plotly.graph_objs.Font)`\n", " | \n", " | connectgaps [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not missing data points (i.e. '' or numpy.nan)\n", " | linked to 'x' and/or 'y', are added in by Plotly using linear\n", " | interpolation.\n", " | \n", " | fill [required=False] (value='none' | 'tozeroy' | 'tonexty' | 'tozerox'\n", " | | 'tonextx):\n", " | Use to make area-style charts. Determines which area to fill with a\n", " | solid color.By default, the area will appear in a more-transparent\n", " | shape of the line color (or of the marker color if 'mode' does not\n", " | contains 'lines').\n", " | \n", " | fillcolor [required=False] (value=a string describing color):\n", " | Sets the color that will appear in the specified fill area (set in\n", " | 'fill'). Has no effect if 'fill' is set to 'none'.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | opacity [required=False] (value=number: x in [0, 1]):\n", " | Sets the opacity, or transparency, of the entire object, also known\n", " | as the alpha channel of colors. If the object's color is given in\n", " | terms of 'rgba' color model, 'opacity' is redundant.\n", " | \n", " | xaxis [required=False] (value='x1' | 'x2' | 'x3' | etc.):\n", " | This key determines which x-axis the x-coordinates of this trace\n", " | will reference in the figure. Values 'x1' and 'x' reference to\n", " | 'xaxis' in 'layout', 'x2' references to 'xaxis2' in 'layout', and so\n", " | on. Note that 'x1' will always refer to 'xaxis' or 'xaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | yaxis [required=False] (value='y1' | 'y2' | 'y3' | etc.):\n", " | This key determines which y-axis the y-coordinates of this trace\n", " | will reference in the figure. Values 'y1' and 'y' reference to\n", " | 'yaxis' in 'layout', 'y2' references to 'yaxis2' in 'layout', and so\n", " | on. Note that 'y1' will always refer to 'yaxis' or 'yaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | showlegend [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not this trace will be labeled in the legend.\n", " | \n", " | stream [required=False] (value=Stream object | dictionary-like object):\n", " | Links a dictionary-like object that initializes this trace as a\n", " | writable-stream, for use with the streaming API.\n", " | \n", " | For more, run `help(plotly.graph_objs.Stream)`\n", " | \n", " | visible [required=False] (value=a boolean: True | False):\n", " | Toggles whether or not this object will be visible on the rendered\n", " | figure.\n", " | \n", " | xsrc [required= when 'y','r' and 't' are unset] (value=a string equal to\n", " | the unique identifier of a plotly grid column) (streamable):\n", " | Sets the x coordinates of the points of this scatter trace. If 'x'\n", " | is linked to a list or 1d numpy array of strings, then the x\n", " | coordinates are integers, 0, 1, 2, 3, ..., labeled on the x-axis by\n", " | the list or 1d numpy array of strings linked to 'x'.\n", " | \n", " | ysrc [required= when 'x','r' and 't' are unset] (value=a string equal to\n", " | the unique identifier of a plotly grid column) (streamable):\n", " | Sets the y coordinates of the points of this scatter trace. If 'y'\n", " | is linked to a list or 1d numpy array of strings, then the y\n", " | coordinates are integers, 0, 1, 2, 3, ..., labeled on the y-axis by\n", " | the list or 1d numpy array of strings linked to 'y'.\n", " | \n", " | type [required=False] (value='scatter'):\n", " | Plotly identifier for this data's trace type.\n", " | \n", " | Method resolution order:\n", " | Scatter\n", " | PlotlyTrace\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods inherited from PlotlyTrace:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Scatter) # call help()!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Consider the following code:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Make three lists of numbers\n", "x = [1, 2, 3, 5, 6]\n", "y1 = [1, 4.5, 7, 24, 38]\n", "y2 = [1, 4, 9, 25, 36]\n", "\n", "# (1.1) Make a 1st Scatter object\n", "trace1 = Scatter(\n", " x=x, # x-coordinates of trace\n", " y=y1, # y-coordinates of trace\n", " mode='markers' # scatter mode (more in UG section 1)\n", ")\n", "\n", "# (1.2) Make a 2nd Scatter object\n", "trace2 = Scatter(\n", " x=x, # same x-coordinates\n", " y=y2, # different y-coordinates\n", " mode='lines' # different scatter mode\n", ") \n", "\n", "# (2) Make Data object \n", "data = Data([trace1, trace2]) # (!) Data is list-like, must use [ ]\n", "\n", "# (3) Make Layout object (Layout is dict-like)\n", "layout = Layout(title='Fig 0.3: Some Experiment')\n", "\n", "# (4) Make Figure object (Figure is dict-like)\n", "fig = Figure(data=data, layout=layout) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Note that the statement\n", "\n", " trace1 = Scatter(\n", " x=x\n", " )\n", " \n", "where `x=x` means link the content of variable `x`, already defined in working namespce, to the key `'x'` in `Scatter`. This syntax inherits from Python's `dict()` constructor. For more info see Appendix A.\n", "\n", "And similarly, \n", "\n", " fig = Figure(data=data, layout=layout)\n", " \n", "means link the content of variables `data` and `layout` to keys `'data'` and `'layout'` in `Figure`.\n", "\n", "This notation is used throughout the User Guide and Plotly's online documentation." ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'layout': {'title': 'Fig 0.3: Some Experiment'}, 'data': [{'y': [1, 4.5, 7, 24, 38], 'x': [1, 2, 3, 5, 6], 'type': u'scatter', 'mode': 'markers'}, {'y': [1, 4, 9, 25, 36], 'x': [1, 2, 3, 5, 6], 'type': u'scatter', 'mode': 'lines'}]}\n" ] } ], "source": [ "print(fig) # print the figure object in notebook" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Figure objects store data just like a Python dictionary. For instance, the `'layout'` has for value a dictionary and the `'data'` key has for value a list of dictionaries. These dictionaries store data and style options of each trace to be plotted. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "All Plotly graph objects are equipped with the `.to_string()` *graph object method* which yields a human-friendly string representation of any graph object. For example," ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Figure(\n", " data=Data([\n", " Scatter(\n", " x=[1, 2, 3, 5, 6],\n", " y=[1, 4.5, 7, 24, 38],\n", " mode='markers'\n", " ),\n", " Scatter(\n", " x=[1, 2, 3, 5, 6],\n", " y=[1, 4, 9, 25, 36],\n", " mode='lines'\n", " )\n", " ]),\n", " layout=Layout(\n", " title='Fig 0.3: Some Experiment'\n", " )\n", ")\n" ] } ], "source": [ "print(fig.to_string()) # print figure object in human-friendly form" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Using `.to_string()`, we can conveniently identify individual graph objects that make up the figure object. *Nice.*" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now, we send the figure object to Plotly, give our Plotly plot a file name and get it in return directly in this IPython notebook:" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 17, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Send Figure object to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_second-plot') " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Not bad.\n", "\n", "But your high school science teacher would not entirely be proud of you, the axes are not labelled.\n", "\n", "To do so, we again turn to Plotly graph objects. For the task at hand, the relevant graph objects are `XAxis` and `YAxis`:" ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) Import graph objects XAxis and YAxis\n", "from plotly.graph_objs import XAxis, YAxis" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class XAxis in module plotly.graph_objs.graph_objs:\n", "\n", "class XAxis(PlotlyDict)\n", " | A dictionary-like object for representing an x-axis in plotly.\n", " | \n", " | Online examples:\n", " | \n", " | https://plotly.com/python/axes/\n", " | https://plotly.com/python/multiple-axes/\n", " | https://plotly.com/python/subplots/\n", " | https://plotly.com/python/insets/\n", " | \n", " | Parent key:\n", " | \n", " | xaxis\n", " | \n", " | Quick method reference:\n", " | \n", " | XAxis.update(changes)\n", " | XAxis.strip_style()\n", " | XAxis.get_data()\n", " | XAxis.to_graph_objs()\n", " | XAxis.validate()\n", " | XAxis.to_string()\n", " | XAxis.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | title [required=False] (value=a string):\n", " | The x-axis title.\n", " | \n", " | titlefont [required=False] (value=Font object | dictionary-like object):\n", " | Links a dictionary-like object describing the font settings of the\n", " | x-axis title.\n", " | \n", " | For more, run `help(plotly.graph_objs.Font)`\n", " | \n", " | range [required=False] (value=number array of length 2):\n", " | Defines the start and end point of this x-axis.\n", " | \n", " | Examples:\n", " | [-13, 20] | [0, 1]\n", " | \n", " | domain [required=False] (value=number array of length 2):\n", " | Sets the domain of this x-axis; that is, the available space for\n", " | this x-axis to live in. Domain coordinates are given in normalized\n", " | coordinates with respect to the paper.\n", " | \n", " | Examples:\n", " | [0, 0.4] | [0.6, 1]\n", " | \n", " | type [required=False] (value='linear' | 'log' | 'date' | 'category'):\n", " | Sets the format of this axis.\n", " | \n", " | rangemode [required=False] (value='normal' | 'tozero' | 'nonnegative'):\n", " | Choose between Plotly's automated axis generation modes: 'normal'\n", " | (the default) sets the axis range in relation to the extrema in the\n", " | data object, 'tozero' extends the axes to x=0 no matter the data\n", " | plotted and 'nonnegative' sets a non-negative range no matter the\n", " | data plotted.\n", " | \n", " | autorange [required=False] (value=True | False | 'reversed'):\n", " | Toggle whether or not the range of this x-axis is automatically\n", " | picked by Plotly. If 'range' is set, then 'autorange' is set to\n", " | False automatically. Otherwise, if 'autorange' is set to True (the\n", " | default behavior), the range of this x-axis can respond to\n", " | adjustments made in the web GUI automatically. If 'autorange' is set\n", " | to 'reversed', then this x-axis is drawn in reverse, e.g. in a 2D\n", " | plot, from right to left instead of from left to right (the default\n", " | behavior).\n", " | \n", " | showgrid [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not this axis features grid lines.\n", " | \n", " | zeroline [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not an additional grid line (thicker than the\n", " | other grid lines, by default) will appear on this axis along x=0.\n", " | \n", " | showline [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the line bounding this x-axis will be shown on\n", " | the figure.\n", " | \n", " | autotick [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the axis ticks parameters are picked\n", " | automatically by Plotly. Once 'autotick' is set to False, the axis\n", " | ticks parameters can be declared with 'ticks', 'tick0', 'dtick0' and\n", " | other tick-related key in this axis object.\n", " | \n", " | nticks [required=False] (value=number: x > 0):\n", " | Sets the number of axis ticks. No need to set 'autoticks' to False\n", " | for 'nticks' to apply.\n", " | \n", " | ticks [required=False] (value='' | 'inside' | 'outside'):\n", " | Sets the format of the ticks on this axis. For hidden ticks, link\n", " | 'ticks' to an empty string.\n", " | \n", " | showticklabels [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the axis ticks will feature tick labels.\n", " | \n", " | tick0 [required=False] (value=number):\n", " | Sets the starting point of the ticks of this axis.\n", " | \n", " | dtick [required=False] (value=number):\n", " | Sets the distance between ticks on this axis.\n", " | \n", " | ticklen [required=False] (value=number):\n", " | Sets the length of the tick lines on this axis.\n", " | \n", " | tickwidth [required=False] (value=number: x > 0):\n", " | Sets the width of the tick lines on this axis.\n", " | \n", " | tickcolor [required=False] (value=a string describing color):\n", " | Sets the color of the tick lines on this axis.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | tickangle [required=False] (value=number: x in [-90, 90]):\n", " | Sets the angle in degrees of the ticks on this axis.\n", " | \n", " | tickfont [required=False] (value=Font object | dictionary-like object):\n", " | Links a dictionary-like object defining the parameters of the ticks'\n", " | font.\n", " | \n", " | For more, run `help(plotly.graph_objs.Font)`\n", " | \n", " | exponentformat [required=False] (value='none' | 'e' | 'E' | 'power' |\n", " | 'SI' | 'B'):\n", " | Sets how exponents show up. Here's how the number 1000000000 (1\n", " | billion) shows up in each. If set to 'none': 1,000,000,000. If set\n", " | to 'e': 1e+9. If set to 'E': 1E+9. If set to 'power': 1x10^9 (where\n", " | the 9 will appear super-scripted). If set to 'SI': 1G. If set to\n", " | 'B': 1B (useful when referring to currency).\n", " | \n", " | showexponent [required=False] (value='all' | 'first' | 'last' | 'none'):\n", " | If set to 'all', ALL exponents will be shown appended to their\n", " | significands. If set to 'first', the first tick's exponent will be\n", " | appended to its significand, however no other exponents will appear\n", " | --only the significands. If set to 'last', the last tick's exponent\n", " | will be appended to its significand, however no other exponents will\n", " | appear--only the significands. If set to 'none', no exponents will\n", " | appear, only the significands.\n", " | \n", " | mirror [required=False] (value=True | False | 'ticks' | 'all' |\n", " | 'allticks'):\n", " | Toggle the axis line and/or ticks across the plots or subplots. If\n", " | True, mirror the axis line across the primary subplot (i.e. the axis\n", " | that this axis is anchored to). If 'ticks', mirror the axis line and\n", " | the ticks. If 'all', mirror the axis line to all subplots containing\n", " | this axis. If 'allticks', mirror the line and ticks to all subplots\n", " | containing this axis. If False, don't mirror the axis or the ticks.\n", " | \n", " | gridcolor [required=False] (value=a string describing color):\n", " | Sets the axis grid color.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | gridwidth [required=False] (value=number: x > 0):\n", " | Sets the grid width (in pixels).\n", " | \n", " | zerolinecolor [required=False] (value=a string describing color):\n", " | Sets the color of this axis' zeroline.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | zerolinewidth [required=False] (value=number: x > 0):\n", " | Sets the width of this axis' zeroline (in pixels).\n", " | \n", " | linecolor [required=False] (value=a string describing color):\n", " | Sets the axis line color.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | linewidth [required=False] (value=number: x > 0):\n", " | Sets the width of the axis line (in pixels).\n", " | \n", " | anchor [required=False] (value='y' | 'y1' | 'y2' | ... | 'free' ):\n", " | Choose whether the position of this x-axis will be anchored to a\n", " | corresponding y-axis or will be 'free' to appear anywhere in the\n", " | vertical space of this figure. Has no effect in 3D plots.\n", " | \n", " | overlaying [required=False] (value='x' | 'x1' | 'x2' | ... | False):\n", " | Choose to overlay the data bound to this x-axis on the same plotting\n", " | area as a corresponding y-axis or choose not overlay other x-the\n", " | other axis/axes of this figure.Has no effect in 3D plots.\n", " | \n", " | side [required=False] (value='bottom' | 'top'):\n", " | Sets whether this x-axis sits at the 'bottom' of the plot or at the\n", " | 'top' of the plot.Has no effect in 3D plots.\n", " | \n", " | position [required=False] (value=number: x in [0, 1]):\n", " | Sets where this x-axis is positioned in the plotting space. For\n", " | example if 'position' is set to 0.5, then this axis is placed at the\n", " | exact center of the plotting space. Has an effect only if 'anchor'\n", " | is set to 'free'.Has no effect in 3D plots.\n", " | \n", " | showbackground [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not this x-axis will have a background color. Has\n", " | an effect only in 3D plots.\n", " | \n", " | backgroundcolor [required=False] (value=a string describing color):\n", " | Sets the background color of this x-axis. Has an effect only in 3D\n", " | plots and if 'showbackground' is set to True.\n", " | \n", " | showspikes [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not spikes will link up to this x-axis when\n", " | hovering over data points. Has an effect only in 3D plots.\n", " | \n", " | spikesides [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the spikes will expand out to the x-axis\n", " | bounds when hovering over data points. Has an effect only in 3D\n", " | plots and if 'showspikes' is set to True.\n", " | \n", " | spikethickness [required=False] (value=number: x > 0):\n", " | Sets the thickness (in pixels) of the x-axis spikes.Has an effect\n", " | only in 3D plots and if 'showspikes' is set to True.\n", " | \n", " | Method resolution order:\n", " | XAxis\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(XAxis) # call help()!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now, consider the following:" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (6.1) Make XAxis object, add title key\n", "xaxis = XAxis(title='Some independent variable')\n", "\n", "# (6.2) Make YAxis object, add title key\n", "yaxis = YAxis(title='Some dependent variable')\n", "\n", "# (7) Update 'layout' key in the Figure object\n", "fig['layout'].update(\n", " xaxis1=xaxis, # link XAxis object to 'xaxis1' (corresp. to first/only x-axis)\n", " yaxis1=yaxis # similarly for 'yaxis1'\n", ")" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Figure(\n", " data=Data([\n", " Scatter(\n", " x=[1, 2, 3, 5, 6],\n", " y=[1, 4.5, 7, 24, 38],\n", " mode='markers'\n", " ),\n", " Scatter(\n", " x=[1, 2, 3, 5, 6],\n", " y=[1, 4, 9, 25, 36],\n", " mode='lines'\n", " )\n", " ]),\n", " layout=Layout(\n", " title='Fig 0.3: Some Experiment',\n", " xaxis1=XAxis(\n", " title='Some independent variable'\n", " ),\n", " yaxis1=YAxis(\n", " title='Some dependent variable'\n", " )\n", " )\n", ")\n" ] } ], "source": [ "print(fig.to_string()) # print figure object to stdout" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Graph objects can be *updated* using the `update()` method (similar to the `update()` method for Python dictionaries), meaning that adding or updating features to a Plotly plot does not require whole redefinitions (more in [subsection 0.5](#0.5-Graph-object-methods)).\n", "\n", "A call to Plotly gets us:" ] }, { "cell_type": "code", "execution_count": 22, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Send Figure object to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_second-plot-axis-titles') " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Great!\n", "\n", "Adding or customizing other features such as the legend or annotations is just as easy.\n", "\n", "All Plotly graph objects are associated with an intuitively-named class (using the CamelCase conventions). Moreover, extensive documentation makes running `help()`, helpful.\n", "\n", "In this section, graph objects imports are made using the\n", "\n", " >>> from plotly.graph_objs import GraphObj1, GraphObj2, ...\n", " \n", "form. Although, something like\n", "\n", " >>> import plotly.graph_objs as go\n", "\n", "works too. \n", "\n", "That said, in other sections of the User Guide, Plotly graph objects will be imported all at once using:\n", "\n", " >>> from plotly.graph_objs import * \n", "\n", "for simplicity.\n", "\n", "Users should note that this mass import form *could* but *should not* come in conflict with other Python libraries.\n", "\n", "For a complete list of the graph objects available (hence the names that are populated during the mass import) in the current version of the Plolty package, go to our reference page at plot.ly/python/reference." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 0.5 Graph object methods" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "OK. Now that you know what graph objects are, beginner Plotly users might be saying:\n", "\n", "> Hold on! Plotly graphs objects have the same structure as native Python dictionaries and lists. So why did Plotly add this layer of abstraction in its Python package?\n", "\n", "Well, along with the graph objects' extensive documentation and their `to_string()` method that we saw in the previous subsection, graph objects support:\n", "\n", "* Key validation \n", "* Nested dictionary updates\n", "\n", "on top of Python dictionary and list features. These features will be presented below in this subsection.\n", "\n", "That said, please note:\n", "\n", "> If the Plotly graph objects are too abstract for you, Plotly works perfectly with native Python `dict` and `list`." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##### Key validation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Consider the following example:" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (!) Import Bar graph object\n", "from plotly.graph_objs import Bar\n", "\n", "# Starting with a simple bar object\n", "trace1 = Bar(\n", " x=[1, 2, 3],\n", " y=[2, 1, 1]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Say you want to change to fill color of the bars to red. Intuitively, you may think that the `'fillcolor'` attributes would do just that. So, you try:" ] }, { "cell_type": "code", "execution_count": 24, "metadata": { "collapsed": false }, "outputs": [], "source": [ "trace1['fillcolor'] = 'red'" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "But, then using `validate()`, we get:" ] }, { "cell_type": "code", "execution_count": 25, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Invalid key, 'fillcolor', for class, 'Bar'.\n", "\n", "Run 'help(plotly.graph_objs.Bar)' for more information.\n", "\n", "Path To Error:\n", "['fillcolor']\n", "\n", "Additional Notes:\n", "That key is valid only in these objects:\n", "\n", "\tScatter('fillcolor'=\"a string describing color\")\n", "\tBox('fillcolor'=\"a string describing color\")\n", "\n" ] } ], "source": [ "try:\n", " trace1.validate() # check if valid!\n", "except Exception as validate_error_message:\n", " print validate_error_message # print error message\n", " \n", "# (-) Without the try/except block trace1.validatae() \n", "# would halt the excution of the code" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Hmm, we got an error: `'fillcolor'` is not a valid attribute in Bar.\n", "\n", "> The `validate()` method allows users to validate graph object keys within an Python / IPython session without having to resort to documentation.\n", "\n", "Futhermore, using `help()`:" ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Bar in module plotly.graph_objs.graph_objs:\n", "\n", "class Bar(PlotlyTrace)\n", " | A dictionary-like object for representing a bar trace in plotly.\n", " | \n", " | Example:\n", " | \n", " | >>> py.plot([Bar(x=['yesterday', 'today', 'tomorrow'], y=[5, 4, 10])])\n", " | \n", " | Online example:\n", " | \n", " | https://plotly.com/python/bar-charts/\n", " | \n", " | Quick method reference:\n", " | \n", " | Bar.update(changes)\n", " | Bar.strip_style()\n", " | Bar.get_data()\n", " | Bar.to_graph_objs()\n", " | Bar.validate()\n", " | Bar.to_string()\n", " | Bar.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | x [required= when 'y' is unset] (value=list or 1d numpy array of\n", " | numbers, strings, datetimes) (streamable):\n", " | Sets the x coordinates of the bars. If 'x' is linked to a list or 1d\n", " | numpy array of strings, then the x coordinates are integers, 0, 1,\n", " | 2, 3, ..., labeled on the x-axis by the list or 1d numpy array of\n", " | strings linked to 'x'. If 'y' is not set, the bars are plotted\n", " | horizontally, with their length determined by the list or 1d numpy\n", " | array linked to 'x'.\n", " | \n", " | y [required= when 'x' is unset] (value=list or 1d numpy array of\n", " | numbers, strings, datetimes) (streamable):\n", " | Sets the y coordinates of the bars. If 'y' is linked to a list or 1d\n", " | numpy array of strings, then the y coordinates are integers, 0, 1,\n", " | 2, 3, ..., labeled on the y-axis by the list or 1d numpy array of\n", " | strings linked to 'y'. If 'x' is not set, the bars are plotted\n", " | vertically, with their length determined by the list or 1d numpy\n", " | array linked to 'y'.\n", " | \n", " | name [required=False] (value=a string):\n", " | The label associated with this trace. This name will appear in the\n", " | legend, on hover and in the column header in the online spreadsheet.\n", " | \n", " | orientation [required=False] (value='v' | 'h'):\n", " | Sets the orientation of the bars. If set to 'v', the length of each\n", " | bar will run vertically. If set to 'h', the length of each bar will\n", " | run horizontally\n", " | \n", " | text [required=False] (value=list or 1d numpy array of strings)\n", " | (streamable):\n", " | The text elements associated with each bar in this trace. The\n", " | entries in 'text' will appear on hover only, in a text box located\n", " | at the top of each bar.\n", " | \n", " | error_y [required=False] (value=ErrorY object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object describing the vertical error bars\n", " | (i.e. along the y-axis) that can be drawn from bar tops.\n", " | \n", " | For more, run `help(plotly.graph_objs.ErrorY)`\n", " | \n", " | error_x [required=False] (value=ErrorX object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object describing the horizontal error bars\n", " | (i.e. along the x-axis) that can be drawn from bar tops.\n", " | \n", " | For more, run `help(plotly.graph_objs.ErrorX)`\n", " | \n", " | marker [required=False] (value=Marker object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object containing marker style parameters\n", " | for this bar trace, for example, the bars' fill color, border width\n", " | and border color.\n", " | \n", " | For more, run `help(plotly.graph_objs.Marker)`\n", " | \n", " | opacity [required=False] (value=number: x in [0, 1]):\n", " | Sets the opacity, or transparency, of the entire object, also known\n", " | as the alpha channel of colors. If the object's color is given in\n", " | terms of 'rgba' color model, 'opacity' is redundant.\n", " | \n", " | xaxis [required=False] (value='x1' | 'x2' | 'x3' | etc.):\n", " | This key determines which x-axis the x-coordinates of this trace\n", " | will reference in the figure. Values 'x1' and 'x' reference to\n", " | 'xaxis' in 'layout', 'x2' references to 'xaxis2' in 'layout', and so\n", " | on. Note that 'x1' will always refer to 'xaxis' or 'xaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | yaxis [required=False] (value='y1' | 'y2' | 'y3' | etc.):\n", " | This key determines which y-axis the y-coordinates of this trace\n", " | will reference in the figure. Values 'y1' and 'y' reference to\n", " | 'yaxis' in 'layout', 'y2' references to 'yaxis2' in 'layout', and so\n", " | on. Note that 'y1' will always refer to 'yaxis' or 'yaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | showlegend [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not this trace will be labeled in the legend.\n", " | \n", " | stream [required=False] (value=Stream object | dictionary-like object):\n", " | Links a dictionary-like object that initializes this trace as a\n", " | writable-stream, for use with the streaming API.\n", " | \n", " | For more, run `help(plotly.graph_objs.Stream)`\n", " | \n", " | visible [required=False] (value=a boolean: True | False):\n", " | Toggles whether or not this object will be visible on the rendered\n", " | figure.\n", " | \n", " | xsrc [required= when 'y' is unset] (value=a string equal to the unique\n", " | identifier of a plotly grid column) (streamable):\n", " | Sets the x coordinates of the bars. If 'x' is linked to a list or 1d\n", " | numpy array of strings, then the x coordinates are integers, 0, 1,\n", " | 2, 3, ..., labeled on the x-axis by the list or 1d numpy array of\n", " | strings linked to 'x'. If 'y' is not set, the bars are plotted\n", " | horizontally, with their length determined by the list or 1d numpy\n", " | array linked to 'x'.\n", " | \n", " | ysrc [required= when 'x' is unset] (value=a string equal to the unique\n", " | identifier of a plotly grid column) (streamable):\n", " | Sets the y coordinates of the bars. If 'y' is linked to a list or 1d\n", " | numpy array of strings, then the y coordinates are integers, 0, 1,\n", " | 2, 3, ..., labeled on the y-axis by the list or 1d numpy array of\n", " | strings linked to 'y'. If 'x' is not set, the bars are plotted\n", " | vertically, with their length determined by the list or 1d numpy\n", " | array linked to 'y'.\n", " | \n", " | r [required= when making a Polar Chart] (value=list or 1d numpy array of\n", " | numbers) (streamable):\n", " | For Polar charts only. Sets the radial coordinates of the bars in\n", " | this polar bar trace about the original; that is, the radial extent\n", " | of each bar.\n", " | \n", " | t [required= when making a Polar Chart] (value=list or 1d numpy array of\n", " | numbers, strings, datetimes) (streamable):\n", " | For Polar charts only. Sets the angular coordinates of the bars in\n", " | this polar bar trace. By default, the angular coordinates are in\n", " | degrees (0 to 360) where the angles are measured clockwise about the\n", " | right-hand side of the origin. To change this behavior, modify\n", " | 'range' in 'angularaxis' or/and 'direction' in 'layout'. If 't' is\n", " | linked to a list or 1d numpy array of strings, then the angular\n", " | coordinates are 0, 360\\N, 2*360/N, ... where N is the number of\n", " | coordinates given labeled by the list or 1d numpy array of strings\n", " | linked to 't'.\n", " | \n", " | type [required=False] (value='bar'):\n", " | Plotly identifier for this data's trace type.\n", " | \n", " | Method resolution order:\n", " | Bar\n", " | PlotlyTrace\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods inherited from PlotlyTrace:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Bar) # call help()!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We notice that in this case, \n", "\n", " >>> trace1['marker'] = Marker(color='red')\n", " \n", "would yield the require result." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The plotting functions `plot()` and `iplot()` run `validate()` before sending your figure object to Plotly. Try running\n", "\n", " >>> py.plot([trace1], filename='s0_wont-work')\n", " \n", "You will get the same error message as the above. \n", "\n", "If you would like to disable this feautre, set \n", "\n", " >>> validate=False\n", "\n", "in your `plot()` or `iplot()` call." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##### Nested dictionary update" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Python dictionary objects carry an update method that does not nest, but rather swaps out value-for-value (see Appendix A for examples). In contrast, Plotly graph objects fully support nested updating.\n", "\n", "Moreover, Python standard list objects do NOT define an update method. Plotly list-like graph objects (e.g. `Data` and `Annotations`) include one.\n", "\n", "Here are some quick examples of how these feature can improve your workflow:" ] }, { "cell_type": "code", "execution_count": 27, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Define 2 (standard) dictionaries with one key in common that links to \n", "# different nested dictionaries\n", "dict1 = dict(\n", " type='scatter', \n", " x=[1, 2, 3],\n", " y=[3, 4, 5], \n", " marker=dict(\n", " color='blue', \n", " symbol='plus' \n", " ) \n", ") # (!) line breaks and indents are just for aesthetics\n", "\n", "dict2 = dict(marker=dict(color='red'))\n", "\n", "# Update dict1 with dict2\n", "dict1.update(dict2)" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "{'marker': {'color': 'red'}, 'type': 'scatter', 'x': [1, 2, 3], 'y': [3, 4, 5]}" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "dict1 # print in notebook" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Snap! The `'symbol'` is gone, and this is because python dictionaries don't support nested updating. \n", "\n", "Say we want to update `dict1`'s marker color but leave its marker symbol alone. What is the most efficient way to proceed? Well, simply use a Plotly graph object instead:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Define a Scatter object (i.e. 'type': 'scatter') and a (standard) dictionary\n", "\n", "go1 = Scatter(\n", " x=[1, 2, 3],\n", " y=[3, 4, 5],\n", " marker=dict(\n", " color='blue', \n", " symbol='plus'\n", " )\n", ")\n", "\n", "dict2 = dict(marker=dict(color='red')) # same as previous code cell\n", "\n", "# Update Scatter object with dict2\n", "go1.update(dict2)" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "{'marker': {'color': 'red', 'symbol': 'plus'},\n", " 'type': 'scatter',\n", " 'x': [1, 2, 3],\n", " 'y': [3, 4, 5]}" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "go1 # print in notebook" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Nice! \n", "\n", "Note that the argument for the `update()` graph object method doesn't need to be a graph object, `update()` accepts Python dictionaries as well.\n", "\n", "Plotly graph objects also help users manipulate list-like graph objects, such as `Data`. \n", "\n", "To show this, we start with a line plot of random numbers:" ] }, { "cell_type": "code", "execution_count": 31, "metadata": { "collapsed": false }, "outputs": [], "source": [ "import numpy as np # (*) import numpy \n", "from plotly.graph_objs import Line # (*) import Line \n", "\n", "# Make Data object, \n", "# made up 20 Scatter objects plotting 50 norm. dist. random pts\n", "data = Data([\n", " Scatter(\n", " x=range(50), \n", " y=np.random.randn(50),\n", " line=Line(\n", " color='black' # set line color to black\n", " )\n", " ) \n", " for i in range(20) # (!) line breaks and indents are just for aesthetics\n", "])\n", "\n", "fig = Figure() # init. Figure object \n", "fig['data'] = data # add data\n", "fig['layout'] = Layout(showlegend=False) # remove legend from plot" ] }, { "cell_type": "code", "execution_count": 32, "metadata": { "collapsed": true }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Send Figure object to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_line-scatter')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Numpy users please note:\n", "\n", "> Plotly accepts 1-dimensional Numpy arrays as list arguments as well.
\n", "No need to convert them!\n", "\n", "Now, say we would like to change the line style for all of the 20 traces linked to `'data'`. Scatter line style are set via the `'line'` key in the `Scatter` graph object and by the keys (e.g. `'color'`, `'width'`, `opacity'`) in the `Line` graph object.\n", "\n", "So, first call help on `Line` graph object:" ] }, { "cell_type": "code", "execution_count": 33, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Line in module plotly.graph_objs.graph_objs:\n", "\n", "class Line(PlotlyDict)\n", " | A dictionary-like object containing specifications of the line segments.\n", " | \n", " | Online examples:\n", " | \n", " | https://plotly.com/python/line-and-scatter/\n", " | https://plotly.com/python/filled-area-plots/\n", " | https://plotly.com/python/contour-plots/\n", " | \n", " | Parent key:\n", " | \n", " | line\n", " | \n", " | Quick method reference:\n", " | \n", " | Line.update(changes)\n", " | Line.strip_style()\n", " | Line.get_data()\n", " | Line.to_graph_objs()\n", " | Line.validate()\n", " | Line.to_string()\n", " | Line.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | color [required=False] (value=a string describing color) (streamable):\n", " | Sets the color of the line object. If linked within 'marker', sets\n", " | the color of the marker's bordering line. If linked within,\n", " | 'contours', sets the color of the contour lines.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | width [required=False] (value=number: x >= 0):\n", " | Sets the width (in pixels) of the line segments in question.\n", " | \n", " | dash [required=False] (value='dash' | 'dashdot' | 'dot' | 'solid'):\n", " | Sets the drawing style of the lines segments in this trace.\n", " | \n", " | opacity [required=False] (value=number: x in [0, 1]):\n", " | Sets the opacity, or transparency, of the entire object, also known\n", " | as the alpha channel of colors. If the object's color is given in\n", " | terms of 'rgba' color model, 'opacity' is redundant.\n", " | \n", " | shape [required=False] (value='linear' | 'spline' | 'hv' | 'vh' | 'hvh'\n", " | | 'vhv'):\n", " | Choose the line shape between each coordinate pair in this trace.\n", " | Applies only to scatter traces. The default value is 'linear'. If\n", " | set to 'spline', then the lines are drawn using spline interpolation\n", " | between the coordinate pairs. The remaining available values\n", " | correspond to step-wise line shapes.\n", " | \n", " | smoothing [required=False] (value=number: x >= 0):\n", " | Sets the amount of smoothing applied to the lines segments in this\n", " | trace. Applies only to contour traces and scatter traces if 'shape'\n", " | is set to 'spline'. The default value is 1. If 'smoothing' is set to\n", " | 0, then no smoothing is applied. Set 'smoothing' to a value less\n", " | (greater) than 1 for a less (more) pronounced line smoothing.\n", " | \n", " | outliercolor [required=False] (value=a string describing color):\n", " | For box plots only. Has an effect only if 'boxpoints' is set to\n", " | 'suspectedoutliers'. Sets the color of the bordering line of the\n", " | outlier points.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | outlierwidth [required=False] (value=a string describing color):\n", " | For box plots only. Has an effect only if 'boxpoints' is set to\n", " | 'suspectedoutliers'. Sets the width in pixels of bordering line of\n", " | the outlier points.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | Method resolution order:\n", " | Line\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Line) # call help()!" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now, we need to update each trace (or element) of the `'data'` key our figure object. If we used Python standard lists and dictionaries, this task would be quite of a hassle. Luckily, the `update()` graph object method applies style changes to all traces by default." ] }, { "cell_type": "code", "execution_count": 34, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Make a dictionary linking the 'line' key to a Line object\n", "style = dict(\n", " line=Line(\n", " color='blue', \n", " width=0.3, \n", " opacity=0.7\n", " )\n", ")\n", "\n", "# Update all traces linked to 'data'!\n", "fig['data'].update(style)" ] }, { "cell_type": "code", "execution_count": 35, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n" ] } ], "source": [ "# Print values linked to the 'line' key of each trace\n", "for trace in fig['data']:\n", " print(trace['line'])" ] }, { "cell_type": "code", "execution_count": 36, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Send Figure object to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_blue-line-scatter')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Each trace now has a new line style! \n", "\n", "The `update()` method for Plotly's list-like objects repeatedly iterates over the given list (e.g. of traces in the above example) until each entry in the original list has received an update.\n", "\n", "To update a single one of the original list entries, specify the trace number when calling `update()`. For example:" ] }, { "cell_type": "code", "execution_count": 37, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Make a dictionary linking the 'line' key to a Line object\n", "style1 = dict(\n", " color='red', \n", " width=1, \n", " opacity=1\n", ")\n", "\n", "# Update 1st trace item linked to 'data' key in figure object\n", "fig['data'][0]['line'].update(style1)" ] }, { "cell_type": "code", "execution_count": 38, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'color': 'red', 'opacity': 1, 'width': 1}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n", "{'color': 'blue', 'opacity': 0.7, 'width': 0.3}\n" ] } ], "source": [ "# Print values linked to the 'line' key of each trace\n", "for trace in fig['data']:\n", " print(trace['line'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "One can also send a list to `update()` graph object method where it iterates over over both receiving and send lists. If needed to fill in the receiving list, iteration over the sent list is repeated. For example:" ] }, { "cell_type": "code", "execution_count": 39, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Make color map (using colorbrewer 'Reds')\n", "colors = ['rgb(254,229,217)', 'rgb(252,174,145)',\n", " 'rgb(251, 106, 74)', 'rgb(222,45,38)', 'rgb(165,15,21)']\n", "\n", "# Make list of 5 dictionaries, sent update to 'data' key in figure object,\n", "# iteration is repeated 4 times over the trace object list\n", "styles = [dict(\n", " line=Line(\n", " color=colors[i], \n", " width=0.5, \n", " opacity=0.7\n", " )\n", ") for i in range(5)]\n", "\n", "# Update figure object\n", "fig['data'].update(styles)" ] }, { "cell_type": "code", "execution_count": 40, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'color': 'rgb(254,229,217)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(252,174,145)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(251, 106, 74)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(222,45,38)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(165,15,21)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(254,229,217)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(252,174,145)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(251, 106, 74)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(222,45,38)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(165,15,21)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(254,229,217)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(252,174,145)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(251, 106, 74)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(222,45,38)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(165,15,21)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(254,229,217)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(252,174,145)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(251, 106, 74)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(222,45,38)', 'opacity': 0.7, 'width': 0.5}\n", "{'color': 'rgb(165,15,21)', 'opacity': 0.7, 'width': 0.5}\n" ] } ], "source": [ "# Print values linked to the 'line' key of each trace\n", "for trace in fig['data']:\n", " print(trace['line'])" ] }, { "cell_type": "code", "execution_count": 41, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 41, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# (@) Send Figure object to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_red-line-scatter')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Using Plotly graph objects let you use the powerful `update()` method and makes style customization a breeze and, hopefully, this will convince you that graph objects are advantageous new tools in Plotly's Python API." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### 0.6 Get figure and new possible workflows" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Possibly the most life-changing new feature of Plotly's new Python API version is the `get_figure()` function.\n", "\n", "Plotly now allows you to pull figures down from its servers as figure objects with a single Python command. That's right, you can pull down *entire* figure objects, containing every data point and every style option used to make the figure inside a Python/IPython session.\n", "\n", "This feature puts forward exciting new workflow possibilities such as:\n", "\n", "* Grab data and style of a plot made by another Plotly user and use them to make your own plot,\n", "* Send data to Plotly, style your plot in the Plotly web GUI and get figure object back in the Python/IPython session.\n", "\n", "Moreover, you can now convert Plotly figure objects to (static) `.png` figures and save them on your machine with a single Python command.\n", "\n", "> With Plotly's `image.save_as()` function, your Plotly figures can now easily live both online and on your machine." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##### Grab data and style" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Say a really nice Plotly plot on shows up on your twitter feed. For example:" ] }, { "cell_type": "code", "execution_count": 42, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Embed a Plotly plot in an IPython notebook:\n", "# 'alexhp' is the username of the plot's maker,\n", "# '68' is the unique file id corresponding to the plot (same as in URL)\n", "tls.embed('alexhp', '68')\n", "\n", "# Or any of:\n", "# tls.embed('https://plotly.com/~alexhp/68/a-century-of-asteroid-flybys/')\n", "# tls.embed('https://plotly.com/~alexhp/68')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And you would like to use the data to make a different plot with the same data, a histogram of asteroid flyby distances. Well first, get the figure object from the Plotly servers using the `get_figure()` function of the `plotly.plotly` module:" ] }, { "cell_type": "code", "execution_count": 43, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Get figure object from Plotly servers\n", "# 'alexhp' is the username of the plot's maker\n", "# '68' is the unique file id corresponding to the plot (same as in URL)\n", "alexhp68 = py.get_figure('alexhp', '68')\n", "\n", "# Or any of:\n", "# py.get_figure('https://plotly.com/~alexhp/68/a-century-of-asteroid-flybys/')\n", "# py.get_figure('https://plotly.com/~alexhp/68')" ] }, { "cell_type": "code", "execution_count": 44, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Figure(\n", " data=Data([\n", " Scatter(\n", " x=[2004.7449496677464],\n", " y=[242.84457898323254],\n", " name=u'',\n", " text=[u'4179 Toutatis
Radius: 2188 meters
Velocity: 11..'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=220.77616239495518,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2079.2679907394736],\n", " y=[279.6571383427504],\n", " name=u'',\n", " text=[u'52768 1998 OR2
Radius: 1738 meters
Velocity: 8..'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=175.78008287493748,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2073.30556125785],\n", " y=[269.23559863262216],\n", " name=u'',\n", " text=[u'164121 2003 YT1
Radius: 1445 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,151,0)',\n", " size=146.5439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2076.571951553305],\n", " y=[253.48302415127242],\n", " name=u'',\n", " text=[u'385343 2002 LV
Radius: 1202 meters
Velocity: 2..'],\n", " marker=Marker(\n", " color=u'rgb(255,86,0)',\n", " size=122.22644346174121,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2028.8114973465322],\n", " y=[145.21541820872923],\n", " name=u'',\n", " text=[u'35396 1997 XF11
Radius: 1047 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=106.71285480509003,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2130.0353827380136],\n", " y=[251.49676396955005],\n", " name=u'',\n", " text=[u'85182 1991 AQ
Radius: 955 meters
Velocity: 24...'],\n", " marker=Marker(\n", " color=u'rgb(255,167,0)',\n", " size=97.49925860214353,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2186.4866490275685],\n", " y=[200.27765102510574],\n", " name=u'',\n", " text=[u'314082 Dryope
Radius: 794 meters
Velocity: 13...'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=81.43282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2071.8080455575323],\n", " y=[208.89464192916287],\n", " name=u'',\n", " text=[u'154276 2002 SY50
Radius: 759 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,110,0)',\n", " size=77.85775750291832,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2198.285350425011],\n", " y=[116.63233555827603],\n", " name=u'',\n", " text=[u'290772 2005 VC
Radius: 724 meters
Velocity: 14..'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=74.44359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2027.5908014384988],\n", " y=[60.77752159620918],\n", " name=u'',\n", " text=[u'137108 1999 AN10
Radius: 661 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,196,0)',\n", " size=68.06934480075964,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2099.9343608868207],\n", " y=[296.6604112621319],\n", " name=u'',\n", " text=[u'33342 1998 WT24
Radius: 661 meters
Velocity: 9..'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=68.06934480075964,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.9576737679242],\n", " y=[296.99310409689184],\n", " name=u'',\n", " text=[u'33342 1998 WT24
Radius: 661 meters
Velocity: 8..'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=68.06934480075964,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2192.584793120752],\n", " y=[307.4356831473995],\n", " name=u'',\n", " text=[u'137126 1999 CF9
Radius: 631 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=65.09573444801933,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2060.104798670985],\n", " y=[190.98414183698262],\n", " name=u'',\n", " text=[u'4660 Nereus
Radius: 575 meters
Velocity: 6.33 ..'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=59.5439937337157,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2028.4774170126059],\n", " y=[39.6952454802193],\n", " name=u'',\n", " text=[u'153814 2001 WN5
Radius: 550 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=56.95408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2169.5936601888598],\n", " y=[266.7230028825372],\n", " name=u'',\n", " text=[u'3362 Khufu
Radius: 550 meters
Velocity: 15.12 ..'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=56.95408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2080.6432758542037],\n", " y=[104.20485559349598],\n", " name=u'',\n", " text=[u'163132 2002 CU11
Radius: 550 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,196,0)',\n", " size=56.95408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.8023223545156],\n", " y=[196.98788235590635],\n", " name=u'',\n", " text=[u'2004 FU4
Radius: 550 meters
Velocity: 13.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=56.95408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2163.90454358834],\n", " y=[264.9034673110986],\n", " name=u'',\n", " text=[u'162474 2000 LB16
Radius: 525 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,228,0)',\n", " size=54.480746024977286,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2096.1371515898],\n", " y=[148.19074322852606],\n", " name=u'',\n", " text=[u'269690 1996 RG3
Radius: 501 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=52.11872336272722,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2086.7834173471406],\n", " y=[181.27485535031002],\n", " name=u'',\n", " text=[u'171576 1999 VP11
Radius: 501 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,96,0)',\n", " size=52.11872336272722,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.1570240864924],\n", " y=[230.49257708676592],\n", " name=u'',\n", " text=[u'2001 EC
Radius: 479 meters
Velocity: 22.49 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,131,0)',\n", " size=49.863009232263806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2172.0556715022126],\n", " y=[110.9297622010966],\n", " name=u'',\n", " text=[u'276033 2002 AJ129
Radius: 457 meters
Velocity:..'],\n", " marker=Marker(\n", " color=u'rgb(255,255,136)',\n", " size=47.708818961487516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2168.786641044356],\n", " y=[195.4961727815103],\n", " name=u'',\n", " text=[u'374158 2004 UL
Radius: 437 meters
Velocity: 35..'],\n", " marker=Marker(\n", " color=u'rgb(255,255,156)',\n", " size=45.65158322401658,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2049.9685784559706],\n", " y=[275.0524620375738],\n", " name=u'',\n", " text=[u'2004 LV3
Radius: 437 meters
Velocity: 20.06 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,89,0)',\n", " size=45.65158322401658,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2015.0668708088135],\n", " y=[192.65313008684595],\n", " name=u'',\n", " text=[u'357439 2004 BL86
Radius: 417 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=43.68693834703356,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.6285069111811],\n", " y=[87.10472693520656],\n", " name=u'',\n", " text=[u'2002 NY40
Radius: 398 meters
Velocity: 20.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,102,0)',\n", " size=41.81071705534972,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2038.1034339218102],\n", " y=[172.20341407587594],\n", " name=u'',\n", " text=[u'2002 NY40
Radius: 398 meters
Velocity: 20.55 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,96,0)',\n", " size=41.81071705534972,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2153.677801347262],\n", " y=[121.03345051128942],\n", " name=u'',\n", " text=[u'1997 GL3
Radius: 380 meters
Velocity: 24.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,172,0)',\n", " size=40.01893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2083.312048568344],\n", " y=[219.9945916545704],\n", " name=u'',\n", " text=[u'2006 JF42
Radius: 380 meters
Velocity: 12.45 k..'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=40.01893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2159.2928413393547],\n", " y=[180.81018325712714],\n", " name=u'',\n", " text=[u'2006 JF42
Radius: 380 meters
Velocity: 12.36 k..'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=40.01893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2101.568298283229],\n", " y=[144.84514448898375],\n", " name=u'',\n", " text=[u'2002 PD43
Radius: 380 meters
Velocity: 39.55 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,255,255)',\n", " size=40.01893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2076.9104625701384],\n", " y=[251.7713190895516],\n", " name=u'',\n", " text=[u'162173 1999 JU3
Radius: 363 meters
Velocity: 4..'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=38.30780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2095.2431686510654],\n", " y=[202.96089724255052],\n", " name=u'',\n", " text=[u'297300 1998 SC15
Radius: 363 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=38.30780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2140.878134361267],\n", " y=[39.098877744260484],\n", " name=u'',\n", " text=[u'153201 2000 WO107
Radius: 347 meters
Velocity:..'],\n", " marker=Marker(\n", " color=u'rgb(255,191,0)',\n", " size=36.67368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2093.8906623025105],\n", " y=[198.55273474877245],\n", " name=u'',\n", " text=[u'153201 2000 WO107
Radius: 347 meters
Velocity:..'],\n", " marker=Marker(\n", " color=u'rgb(255,193,0)',\n", " size=36.67368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2116.8714303635784],\n", " y=[70.66080340352838],\n", " name=u'',\n", " text=[u'152685 1998 MZ
Radius: 347 meters
Velocity: 17..'],\n", " marker=Marker(\n", " color=u'rgb(255,44,0)',\n", " size=36.67368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.979986846707],\n", " y=[299.75387644540876],\n", " name=u'',\n", " text=[u'184266 2004 VW14
Radius: 331 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=35.11311214825913,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2052.1997209677174],\n", " y=[181.2015586556112],\n", " name=u'',\n", " text=[u'221455 2006 BC10
Radius: 331 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,60,0)',\n", " size=35.11311214825913,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2108.469614372824],\n", " y=[263.1350483627057],\n", " name=u'',\n", " text=[u'2011 UW158
Radius: 331 meters
Velocity: 6.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=35.11311214825913,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.501121451272],\n", " y=[70.13564709938875],\n", " name=u'',\n", " text=[u'2004 XP14
Radius: 331 meters
Velocity: 17.41 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=35.11311214825913,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2029.0685168711889],\n", " y=[197.43688161911285],\n", " name=u'',\n", " text=[u'292220 2006 SU49
Radius: 316 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=33.622776601683796,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2122.8787711174978],\n", " y=[131.99607710521659],\n", " name=u'',\n", " text=[u'2005 GC120
Radius: 302 meters
Velocity: 17.78 ..'],\n", " marker=Marker(\n", " color=u'rgb(255,47,0)',\n", " size=32.19951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2072.775787676961],\n", " y=[111.79484630627688],\n", " name=u'',\n", " text=[u'2011 SM68
Radius: 302 meters
Velocity: 22.93 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,138,0)',\n", " size=32.19951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4751665070023],\n", " y=[273.967005350134],\n", " name=u'',\n", " text=[u'1999 XL136
Radius: 302 meters
Velocity: 19.55 ..'],\n", " marker=Marker(\n", " color=u'rgb(255,78,0)',\n", " size=32.19951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2029.2757819746666],\n", " y=[9.51642303441163],\n", " name=u'',\n", " text=[u'99942 Apophis
Radius: 288 meters
Velocity: 7.4..'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=30.840315031266062,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2182.9787152350104],\n", " y=[219.6939957795712],\n", " name=u'',\n", " text=[u'332446 2008 AF4
Radius: 288 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=30.840315031266062,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2073.302333759105],\n", " y=[194.41140512142036],\n", " name=u'',\n", " text=[u'2010 HQ80
Radius: 288 meters
Velocity: 19.94 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,86,0)',\n", " size=30.840315031266062,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2150.218272432827],\n", " y=[289.66118621472856],\n", " name=u'',\n", " text=[u'267221 2001 AD2
Radius: 275 meters
Velocity: 2..'],\n", " marker=Marker(\n", " color=u'rgb(255,110,0)',\n", " size=29.54228703338165,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2149.889576965771],\n", " y=[212.32292938332822],\n", " name=u'',\n", " text=[u'279744 1998 KM3
Radius: 275 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(255,54,0)',\n", " size=29.54228703338165,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2133.221937107492],\n", " y=[208.3390756799714],\n", " name=u'',\n", " text=[u'267221 2001 AD2
Radius: 275 meters
Velocity: 2..'],\n", " marker=Marker(\n", " color=u'rgb(255,112,0)',\n", " size=29.54228703338165,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.5968344661892],\n", " y=[259.7314120400353],\n", " name=u'',\n", " text=[u'2004 QB
Radius: 275 meters
Velocity: 18.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,54,0)',\n", " size=29.54228703338165,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2185.537663655855],\n", " y=[190.17105473015798],\n", " name=u'',\n", " text=[u'2011 EL11
Radius: 275 meters
Velocity: 19.78 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,83,0)',\n", " size=29.54228703338165,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2046.242856925627],\n", " y=[270.2738468506286],\n", " name=u'',\n", " text=[u'267221 2001 AD2
Radius: 275 meters
Velocity: 2..'],\n", " marker=Marker(\n", " color=u'rgb(255,120,0)',\n", " size=29.54228703338165,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2041.7485383118167],\n", " y=[220.19675417646192],\n", " name=u'',\n", " text=[u'2008 QS11
Radius: 263 meters
Velocity: 10.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=28.302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2086.7816344296943],\n", " y=[139.55610573458395],\n", " name=u'',\n", " text=[u'2340 Hathor
Radius: 251 meters
Velocity: 13.23..'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2194.820505071241],\n", " y=[138.85260596869048],\n", " name=u'',\n", " text=[u'374855 2006 VQ13
Radius: 251 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,26,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2130.3949770387603],\n", " y=[166.5443698583311],\n", " name=u'',\n", " text=[u'163348 2002 NN4
Radius: 251 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2130.7701195961254],\n", " y=[144.71445907748515],\n", " name=u'',\n", " text=[u'2340 Hathor
Radius: 251 meters
Velocity: 13.4 ..'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2048.145758253121],\n", " y=[155.1245180337067],\n", " name=u'',\n", " text=[u'162162 1999 DB7
Radius: 251 meters
Velocity: 7..'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2069.786099326369],\n", " y=[158.3877130486779],\n", " name=u'',\n", " text=[u'2340 Hathor
Radius: 251 meters
Velocity: 13.2 ..'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2070.4108788376443],\n", " y=[242.226385898058],\n", " name=u'',\n", " text=[u'163348 2002 NN4
Radius: 251 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2160.1790178367773],\n", " y=[246.00906377720838],\n", " name=u'',\n", " text=[u'2006 FX
Radius: 251 meters
Velocity: 17.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=27.118864315095795,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2078.5865095114273],\n", " y=[301.7493287067417],\n", " name=u'',\n", " text=[u'277475 2005 WK4
Radius: 240 meters
Velocity: 9..'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=25.988329190194886,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2100.2920715295836],\n", " y=[82.65911823568861],\n", " name=u'',\n", " text=[u'363116 2001 GQ2
Radius: 240 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(255,78,0)',\n", " size=25.988329190194886,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2141.635121572921],\n", " y=[194.30960220485184],\n", " name=u'',\n", " text=[u'196625 2003 RM10
Radius: 229 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,47,0)',\n", " size=24.908676527677734,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2054.516772349193],\n", " y=[194.62032860184158],\n", " name=u'',\n", " text=[u'2013 LM31
Radius: 229 meters
Velocity: 15.66 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=24.908676527677734,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2170.0992503383363],\n", " y=[280.37069344514504],\n", " name=u'',\n", " text=[u'2007 RV9
Radius: 229 meters
Velocity: 13.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=24.908676527677734,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2181.056570563995],\n", " y=[255.1451638623617],\n", " name=u'',\n", " text=[u'2005 CJ
Radius: 229 meters
Velocity: 12.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=24.908676527677734,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2192.0682963824643],\n", " y=[144.36303702928228],\n", " name=u'',\n", " text=[u'2007 PV27
Radius: 229 meters
Velocity: 16.37 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,23,0)',\n", " size=24.908676527677734,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2179.937936225537],\n", " y=[245.4640466665211],\n", " name=u'',\n", " text=[u'1995 YR1
Radius: 229 meters
Velocity: 29.06 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,243,0)',\n", " size=24.908676527677734,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.0754280522483],\n", " y=[89.15305640400283],\n", " name=u'',\n", " text=[u'2007 TU24
Radius: 219 meters
Velocity: 9.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2081.1994320514577],\n", " y=[239.2422048539637],\n", " name=u'',\n", " text=[u'2006 GB
Radius: 219 meters
Velocity: 7.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2037.2118364429846],\n", " y=[249.62771604834242],\n", " name=u'',\n", " text=[u'2006 GB
Radius: 219 meters
Velocity: 6.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2168.0338602253546],\n", " y=[272.439149979968],\n", " name=u'',\n", " text=[u'2007 TU24
Radius: 219 meters
Velocity: 9.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2136.027152426136],\n", " y=[296.4701602446613],\n", " name=u'',\n", " text=[u'2000 YF29
Radius: 219 meters
Velocity: 7.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2193.006413180664],\n", " y=[158.55316523001198],\n", " name=u'',\n", " text=[u'2000 YF29
Radius: 219 meters
Velocity: 7.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7634935297963],\n", " y=[303.4977767290281],\n", " name=u'',\n", " text=[u'2006 RZ
Radius: 219 meters
Velocity: 13.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=23.877616239495516,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1327361130118],\n", " y=[266.64168140285415],\n", " name=u'',\n", " text=[u'208023 1999 AQ10
Radius: 209 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=22.892961308540407,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.674596657695],\n", " y=[231.80186187154268],\n", " name=u'',\n", " text=[u'2002 SZ
Radius: 209 meters
Velocity: 17.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,49,0)',\n", " size=22.892961308540407,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2150.6499646457733],\n", " y=[262.16756154430385],\n", " name=u'',\n", " text=[u'2002 SZ
Radius: 209 meters
Velocity: 17.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=22.892961308540407,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2059.878221796451],\n", " y=[110.73945925229582],\n", " name=u'',\n", " text=[u'2009 WM1
Radius: 209 meters
Velocity: 14.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=22.892961308540407,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2088.3458973891093],\n", " y=[290.6568464816115],\n", " name=u'',\n", " text=[u'2012 HZ33
Radius: 209 meters
Velocity: 13.84 k..'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=22.892961308540407,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2042.4447200553502],\n", " y=[234.2223387424332],\n", " name=u'',\n", " text=[u'2004 MD6
Radius: 200 meters
Velocity: 21.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,115,0)',\n", " size=21.95262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2057.765683210924],\n", " y=[274.49363949696],\n", " name=u'',\n", " text=[u'162120 1998 SH36
Radius: 200 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,44,0)',\n", " size=21.95262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.5945687544668],\n", " y=[294.1521360980591],\n", " name=u'',\n", " text=[u'162422 2000 EV70
Radius: 200 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(255,18,0)',\n", " size=21.95262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2189.702843924395],\n", " y=[286.12526104604416],\n", " name=u'',\n", " text=[u'360191 1988 TA
Radius: 191 meters
Velocity: 13..'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=21.05460717963246,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2120.2803229019355],\n", " y=[226.78840274849495],\n", " name=u'',\n", " text=[u'2011 DV
Radius: 191 meters
Velocity: 5.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=21.05460717963246,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2053.7343776135517],\n", " y=[137.2696893785205],\n", " name=u'',\n", " text=[u'360191 1988 TA
Radius: 191 meters
Velocity: 12..'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=21.05460717963246,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.1579136444507],\n", " y=[287.40565611204664],\n", " name=u'',\n", " text=[u'2008 RG1
Radius: 182 meters
Velocity: 14.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2065.3867524291777],\n", " y=[59.977242621714375],\n", " name=u'',\n", " text=[u'2005 WY55
Radius: 182 meters
Velocity: 18.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2047.0222617581314],\n", " y=[252.12763430774342],\n", " name=u'',\n", " text=[u'2010 WZ8
Radius: 182 meters
Velocity: 7.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.21211585542],\n", " y=[294.3444667931309],\n", " name=u'',\n", " text=[u'4581 Asclepius
Radius: 182 meters
Velocity: 11..'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2066.710123853839],\n", " y=[73.43584577081073],\n", " name=u'',\n", " text=[u'2011 SR5
Radius: 182 meters
Velocity: 26.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,196,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2082.927734820492],\n", " y=[165.42792744222396],\n", " name=u'',\n", " text=[u'2010 MU112
Radius: 182 meters
Velocity: 29.25 ..'],\n", " marker=Marker(\n", " color=u'rgb(255,246,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8674178489425],\n", " y=[261.4144048615441],\n", " name=u'',\n", " text=[u'2010 RF181
Radius: 182 meters
Velocity: 7.87 k..'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2194.1245495187263],\n", " y=[199.76152774512818],\n", " name=u'',\n", " text=[u'1999 FA
Radius: 182 meters
Velocity: 7.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2143.13607005459],\n", " y=[284.1035802863662],\n", " name=u'',\n", " text=[u'1999 FA
Radius: 182 meters
Velocity: 6.95 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2193.162865136931],\n", " y=[97.60154138774682],\n", " name=u'',\n", " text=[u'354182 2002 DU3
Radius: 182 meters
Velocity: 8..'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=20.197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2087.794175676292],\n", " y=[66.34187605009713],\n", " name=u'',\n", " text=[u'2011 WL2
Radius: 174 meters
Velocity: 11.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=19.378008287493746,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2093.735898225446],\n", " y=[254.85299391697595],\n", " name=u'',\n", " text=[u'350751 2002 AW
Radius: 174 meters
Velocity: 8...'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=19.378008287493746,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2077.796378662774],\n", " y=[160.52185613936103],\n", " name=u'',\n", " text=[u'2011 WL2
Radius: 174 meters
Velocity: 11.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=19.378008287493746,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2083.3943288779406],\n", " y=[207.68940871557717],\n", " name=u'',\n", " text=[u'2005 ED318
Radius: 174 meters
Velocity: 6.38 k..'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=19.378008287493746,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2166.4033974271247],\n", " y=[267.89909693873244],\n", " name=u'',\n", " text=[u'2005 ED318
Radius: 174 meters
Velocity: 6.63 k..'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=19.378008287493746,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2038.2924915986193],\n", " y=[284.1571480732129],\n", " name=u'',\n", " text=[u'2011 WL2
Radius: 174 meters
Velocity: 11.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=19.378008287493746,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2135.693486458951],\n", " y=[93.67132044811923],\n", " name=u'',\n", " text=[u'101955 Bennu
Radius: 166 meters
Velocity: 6.02..'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=18.595869074375614,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.01811428919],\n", " y=[136.34893409773488],\n", " name=u'',\n", " text=[u'2001 YB5
Radius: 166 meters
Velocity: 30.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,22)',\n", " size=18.595869074375614,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2089.1795728601187],\n", " y=[213.27736293545385],\n", " name=u'',\n", " text=[u'216985 2000 QK130
Radius: 166 meters
Velocity:..'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=18.595869074375614,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2036.194334200082],\n", " y=[267.291685032573],\n", " name=u'',\n", " text=[u'216985 2000 QK130
Radius: 166 meters
Velocity:..'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=18.595869074375614,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2060.711714794033],\n", " y=[115.79286117186356],\n", " name=u'',\n", " text=[u'101955 Bennu
Radius: 166 meters
Velocity: 6.19..'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=18.595869074375614,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2100.9749365144535],\n", " y=[36.892687731615965],\n", " name=u'',\n", " text=[u'2007 YV56
Radius: 158 meters
Velocity: 19.27 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,73,0)',\n", " size=17.848931924611136,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2073.7339385368673],\n", " y=[300.79096170283856],\n", " name=u'',\n", " text=[u'2012 GV17
Radius: 151 meters
Velocity: 12.44 k..'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=17.13561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2172.132506120463],\n", " y=[268.7286673046504],\n", " name=u'',\n", " text=[u'2007 ED125
Radius: 151 meters
Velocity: 13.56 ..'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=17.13561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2148.014620683363],\n", " y=[53.34533570174979],\n", " name=u'',\n", " text=[u'85640 1998 OX4
Radius: 151 meters
Velocity: 12..'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=17.13561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2125.8164830527803],\n", " y=[256.17097668292905],\n", " name=u'',\n", " text=[u'2005 GL
Radius: 145 meters
Velocity: 12.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=16.45439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2058.83438635707],\n", " y=[253.34208114381656],\n", " name=u'',\n", " text=[u'2005 GL
Radius: 145 meters
Velocity: 12.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=16.45439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2039.1507420586045],\n", " y=[272.65594695594893],\n", " name=u'',\n", " text=[u'369057 2008 DK5
Radius: 138 meters
Velocity: 1..'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=15.80384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.311345285343],\n", " y=[101.04189321444147],\n", " name=u'',\n", " text=[u'2011 JA
Radius: 138 meters
Velocity: 22.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,133,0)',\n", " size=15.80384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2023.785479677022],\n", " y=[189.72962457907522],\n", " name=u'',\n", " text=[u'1998 HH49
Radius: 138 meters
Velocity: 14.79 k..'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=15.80384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2022.9827847725926],\n", " y=[125.44515904787092],\n", " name=u'',\n", " text=[u'2010 XC15
Radius: 132 meters
Velocity: 10.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=15.182567385564079,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2137.3840647476545],\n", " y=[130.28813217917153],\n", " name=u'',\n", " text=[u'1999 MN
Radius: 132 meters
Velocity: 15.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=15.182567385564079,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2148.380491309703],\n", " y=[206.47707805175347],\n", " name=u'',\n", " text=[u'1999 MN
Radius: 132 meters
Velocity: 15.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,7,0)',\n", " size=15.182567385564079,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2110.391221127382],\n", " y=[160.5593445351745],\n", " name=u'',\n", " text=[u'1999 MN
Radius: 132 meters
Velocity: 15.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=15.182567385564079,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2064.9678504630265],\n", " y=[220.7884595747251],\n", " name=u'',\n", " text=[u'2010 XC15
Radius: 132 meters
Velocity: 9.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=15.182567385564079,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2028.5595490625428],\n", " y=[231.8562739168102],\n", " name=u'',\n", " text=[u'2011 LJ19
Radius: 132 meters
Velocity: 9.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=15.182567385564079,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.450040296215],\n", " y=[282.979599788406],\n", " name=u'',\n", " text=[u'2011 LT17
Radius: 120 meters
Velocity: 13.56 k..'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=14.022644346174118,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2156.913123640953],\n", " y=[66.0379011948337],\n", " name=u'',\n", " text=[u'2011 LT17
Radius: 120 meters
Velocity: 14.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=14.022644346174118,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2155.4100139896295],\n", " y=[111.10306754036324],\n", " name=u'',\n", " text=[u'2011 LT17
Radius: 120 meters
Velocity: 13.88 k..'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=14.022644346174118,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2046.4373127746605],\n", " y=[166.4126490354283],\n", " name=u'',\n", " text=[u'2000 LF3
Radius: 120 meters
Velocity: 15.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=14.022644346174118,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2167.423273725347],\n", " y=[220.47015879069914],\n", " name=u'',\n", " text=[u'162416 2000 EH26
Radius: 115 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=13.481536214968829,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2103.114258777732],\n", " y=[261.77301182364425],\n", " name=u'',\n", " text=[u'1995 CR
Radius: 115 meters
Velocity: 29.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,2)',\n", " size=13.481536214968829,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2106.2725240636832],\n", " y=[219.1861873000545],\n", " name=u'',\n", " text=[u'162416 2000 EH26
Radius: 115 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=13.481536214968829,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2101.9887607773367],\n", " y=[205.96115327094938],\n", " name=u'',\n", " text=[u'2011 BT15
Radius: 110 meters
Velocity: 7.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=12.964781961431845,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2040.0831147453735],\n", " y=[169.02101218648934],\n", " name=u'',\n", " text=[u'367789 2011 AG5
Radius: 110 meters
Velocity: 9..'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=12.964781961431845,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2023.085722594772],\n", " y=[284.39916778809544],\n", " name=u'',\n", " text=[u'367789 2011 AG5
Radius: 110 meters
Velocity: 9..'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=12.964781961431845,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2072.2346532244574],\n", " y=[293.22959301769083],\n", " name=u'',\n", " text=[u'2007 SQ6
Radius: 105 meters
Velocity: 6.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=12.471285480509001,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2075.8321814698234],\n", " y=[36.5807701541299],\n", " name=u'',\n", " text=[u'308635 2005 YU55
Radius: 105 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=12.471285480509001,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.885452306008],\n", " y=[168.98109672045643],\n", " name=u'',\n", " text=[u'2013 NJ
Radius: 105 meters
Velocity: 6.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=12.471285480509001,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8993583017807],\n", " y=[151.60043223551233],\n", " name=u'',\n", " text=[u'2013 NJ
Radius: 105 meters
Velocity: 6.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=12.471285480509001,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8515901798885],\n", " y=[48.59787057910025],\n", " name=u'',\n", " text=[u'308635 2005 YU55
Radius: 105 meters
Velocity: ..'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=12.471285480509001,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2029.3592046439487],\n", " y=[264.6100205927815],\n", " name=u'',\n", " text=[u'2000 SL10
Radius: 105 meters
Velocity: 8.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=12.471285480509001,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.2537445067896],\n", " y=[207.23639312753195],\n", " name=u'',\n", " text=[u'2003 GG21
Radius: 100 meters
Velocity: 20.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,102,0)',\n", " size=12,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2073.26265149096],\n", " y=[298.9190954287212],\n", " name=u'',\n", " text=[u'2005 GR33
Radius: 100 meters
Velocity: 15.61 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=12,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2046.8875925672492],\n", " y=[229.04387322845056],\n", " name=u'',\n", " text=[u'1994 WR12
Radius: 100 meters
Velocity: 9.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=12,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2141.3109100101883],\n", " y=[115.90984148597967],\n", " name=u'',\n", " text=[u'2005 GE60
Radius: 95 meters
Velocity: 8.2 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2032.351236637623],\n", " y=[263.14286927161436],\n", " name=u'',\n", " text=[u'2011 HJ7
Radius: 95 meters
Velocity: 16.53 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,26,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2185.1877879658773],\n", " y=[225.4084341054481],\n", " name=u'',\n", " text=[u'2009 FD
Radius: 95 meters
Velocity: 16.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,20,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2340221705215],\n", " y=[99.96309461989343],\n", " name=u'',\n", " text=[u'2009 FD
Radius: 95 meters
Velocity: 16.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,18,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2165.7572533187354],\n", " y=[263.3860668167115],\n", " name=u'',\n", " text=[u'2007 US12
Radius: 95 meters
Velocity: 16.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,23,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2188.7288748992596],\n", " y=[202.65675720233548],\n", " name=u'',\n", " text=[u'2005 UO
Radius: 95 meters
Velocity: 18.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,65,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2096.753980201633],\n", " y=[83.31156396327462],\n", " name=u'',\n", " text=[u'2005 UO
Radius: 95 meters
Velocity: 19.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,73,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2190.1884912488786],\n", " y=[155.30357323255816],\n", " name=u'',\n", " text=[u'2009 FD
Radius: 95 meters
Velocity: 15.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,12,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2032.809170810334],\n", " y=[302.547405303882],\n", " name=u'',\n", " text=[u'2004 TD10
Radius: 95 meters
Velocity: 9.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=11.549925860214355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2103.016013944011],\n", " y=[216.66784090861822],\n", " name=u'',\n", " text=[u'2012 BV13
Radius: 91 meters
Velocity: 7.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=11.1201083935591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2061.8523637911894],\n", " y=[141.21487372750045],\n", " name=u'',\n", " text=[u'2000 WC1
Radius: 87 meters
Velocity: 11.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=10.709635899560801,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2065.7773938232745],\n", " y=[170.5429898327779],\n", " name=u'',\n", " text=[u'2013 UG1
Radius: 87 meters
Velocity: 14.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=10.709635899560801,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.2253546827244],\n", " y=[268.9939884274731],\n", " name=u'',\n", " text=[u'2001 EC16
Radius: 87 meters
Velocity: 10.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=10.709635899560801,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.791016605082],\n", " y=[276.6647230238113],\n", " name=u'',\n", " text=[u'2013 UG1
Radius: 87 meters
Velocity: 14.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(246,0,0)',\n", " size=10.709635899560801,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.2612734364309],\n", " y=[198.99282433046497],\n", " name=u'',\n", " text=[u'2002 FD6
Radius: 87 meters
Velocity: 11.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=10.709635899560801,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2161.2217603363592],\n", " y=[213.56458425513836],\n", " name=u'',\n", " text=[u'2002 FD6
Radius: 87 meters
Velocity: 11.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=10.709635899560801,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2066.271377902468],\n", " y=[145.27422604038148],\n", " name=u'',\n", " text=[u'2004 RQ252
Radius: 83 meters
Velocity: 12.15 k..'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=10.317637711026713,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.219810151605],\n", " y=[218.03670686704908],\n", " name=u'',\n", " text=[u'2003 FY6
Radius: 83 meters
Velocity: 14.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=10.317637711026713,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2043.2771942429633],\n", " y=[87.99342550340602],\n", " name=u'',\n", " text=[u'2004 RQ252
Radius: 83 meters
Velocity: 12.13 k..'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=10.317637711026713,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2121.8436392804465],\n", " y=[297.91850375736004],\n", " name=u'',\n", " text=[u'2000 WP19
Radius: 76 meters
Velocity: 8.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=9.58577575029183,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2086.3748764502834],\n", " y=[152.66915162908424],\n", " name=u'',\n", " text=[u'2013 YD48
Radius: 76 meters
Velocity: 15.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=9.58577575029183,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2085.301050742819],\n", " y=[227.49155855559914],\n", " name=u'',\n", " text=[u'2001 BF10
Radius: 76 meters
Velocity: 9.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=9.58577575029183,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.5642743640042],\n", " y=[275.2725513838252],\n", " name=u'',\n", " text=[u'54509 YORP
Radius: 72 meters
Velocity: 7.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2103.97211197786],\n", " y=[125.5061273384125],\n", " name=u'',\n", " text=[u'54509 YORP
Radius: 72 meters
Velocity: 7.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2023.1157660842723],\n", " y=[218.34353958841444],\n", " name=u'',\n", " text=[u'2009 QH6
Radius: 72 meters
Velocity: 9.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2192.7184377993703],\n", " y=[205.267655084282],\n", " name=u'',\n", " text=[u'2004 SC56
Radius: 72 meters
Velocity: 10.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.5639398293874],\n", " y=[273.0824762155471],\n", " name=u'',\n", " text=[u'54509 YORP
Radius: 72 meters
Velocity: 7.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.5650745860135],\n", " y=[288.18456399774107],\n", " name=u'',\n", " text=[u'54509 YORP
Radius: 72 meters
Velocity: 7.13 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2129.7609312987547],\n", " y=[18.650393733886084],\n", " name=u'',\n", " text=[u'2007 UW1
Radius: 72 meters
Velocity: 5.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2172.7409010385777],\n", " y=[272.57683421928306],\n", " name=u'',\n", " text=[u'2007 UW1
Radius: 72 meters
Velocity: 4.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.5639189209737],\n", " y=[305.2411330367689],\n", " name=u'',\n", " text=[u'54509 YORP
Radius: 72 meters
Velocity: 7.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=9.244359600749902,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2146.181452716573],\n", " y=[52.068717369830324],\n", " name=u'',\n", " text=[u'2009 DO111
Radius: 69 meters
Velocity: 9.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=8.918309709189362,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2135661390143],\n", " y=[78.20558775527945],\n", " name=u'',\n", " text=[u'2009 DO111
Radius: 69 meters
Velocity: 9.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=8.918309709189362,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2089.890470325259],\n", " y=[235.75800779973605],\n", " name=u'',\n", " text=[u'2006 WB
Radius: 69 meters
Velocity: 4.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=8.918309709189362,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.3766460623756],\n", " y=[185.47312135515892],\n", " name=u'',\n", " text=[u'2004 JP1
Radius: 69 meters
Velocity: 12.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=8.918309709189362,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2024.8987272478446],\n", " y=[142.53954391366412],\n", " name=u'',\n", " text=[u'2006 WB
Radius: 69 meters
Velocity: 4.2 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=8.918309709189362,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2068.359430834968],\n", " y=[187.6529980256484],\n", " name=u'',\n", " text=[u'2004 JP1
Radius: 69 meters
Velocity: 12.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=8.918309709189362,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2098.977888402293],\n", " y=[143.79487948233935],\n", " name=u'',\n", " text=[u'2004 XM29
Radius: 66 meters
Velocity: 14.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=8.606934480075964,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2123.7148909721273],\n", " y=[229.30406122207984],\n", " name=u'',\n", " text=[u'2007 UY1
Radius: 66 meters
Velocity: 5.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=8.606934480075964,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2165.786500387756],\n", " y=[163.38605025128254],\n", " name=u'',\n", " text=[u'2005 VN
Radius: 66 meters
Velocity: 11.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=8.606934480075964,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.4790896856896],\n", " y=[306.12973765500976],\n", " name=u'',\n", " text=[u'2002 LZ45
Radius: 63 meters
Velocity: 15.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=8.30957344480193,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2138.357832291714],\n", " y=[265.5725928167288],\n", " name=u'',\n", " text=[u'2013 HO11
Radius: 63 meters
Velocity: 6.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=8.30957344480193,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2077.3746635646185],\n", " y=[213.49737848701974],\n", " name=u'',\n", " text=[u'2013 HO11
Radius: 63 meters
Velocity: 6.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=8.30957344480193,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.5751372352236],\n", " y=[216.35308024208015],\n", " name=u'',\n", " text=[u'2011 PE2
Radius: 60 meters
Velocity: 9.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=8.025595860743572,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.183266046257],\n", " y=[154.45959021273808],\n", " name=u'',\n", " text=[u'2013 ET
Radius: 60 meters
Velocity: 11.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=8.025595860743572,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9190882411083],\n", " y=[58.67410281020476],\n", " name=u'',\n", " text=[u'2011 XC2
Radius: 60 meters
Velocity: 20.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,102,0)',\n", " size=8.025595860743572,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2068.224295956693],\n", " y=[150.8004880915584],\n", " name=u'',\n", " text=[u'2005 EU2
Radius: 60 meters
Velocity: 6.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=8.025595860743572,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0030982467345],\n", " y=[218.13747048052323],\n", " name=u'',\n", " text=[u'2013 YL2
Radius: 60 meters
Velocity: 22.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,120,0)',\n", " size=8.025595860743572,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2089.843044341043],\n", " y=[140.91652721939658],\n", " name=u'',\n", " text=[u'2011 UT91
Radius: 60 meters
Velocity: 12.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=8.025595860743572,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2102.193687940027],\n", " y=[143.4621244543303],\n", " name=u'',\n", " text=[u'2002 GR
Radius: 58 meters
Velocity: 5.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=7.7543993733715695,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6596965618965],\n", " y=[261.1709880850357],\n", " name=u'',\n", " text=[u'2009 QK9
Radius: 58 meters
Velocity: 14.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=7.7543993733715695,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2153.243362529082],\n", " y=[248.47090616211835],\n", " name=u'',\n", " text=[u'2004 HM
Radius: 58 meters
Velocity: 12.2 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=7.7543993733715695,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2041.256641272448],\n", " y=[23.985368905847242],\n", " name=u'',\n", " text=[u'2012 UE34
Radius: 55 meters
Velocity: 6.13 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=7.495408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2026.2173486611011],\n", " y=[282.6874402409777],\n", " name=u'',\n", " text=[u'2010 RA91
Radius: 55 meters
Velocity: 10.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=7.495408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.234733056582],\n", " y=[150.23279038126182],\n", " name=u'',\n", " text=[u'2013 GD55
Radius: 55 meters
Velocity: 8.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=7.495408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.4929671699892],\n", " y=[225.25301116553564],\n", " name=u'',\n", " text=[u'2004 MC
Radius: 55 meters
Velocity: 8.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=7.495408738576243,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1035688761158],\n", " y=[146.8839379612865],\n", " name=u'',\n", " text=[u'2007 CT26
Radius: 52 meters
Velocity: 10.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8272394811672],\n", " y=[224.98480927519338],\n", " name=u'',\n", " text=[u'2008 VU3
Radius: 52 meters
Velocity: 10.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2071.5834910968174],\n", " y=[107.78685606830483],\n", " name=u'',\n", " text=[u'2013 PR43
Radius: 52 meters
Velocity: 6.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6056654197648],\n", " y=[158.99927267943727],\n", " name=u'',\n", " text=[u'2013 PR43
Radius: 52 meters
Velocity: 6.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.999064823685],\n", " y=[79.33068362317171],\n", " name=u'',\n", " text=[u'2010 VB1
Radius: 52 meters
Velocity: 7.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2028.9911937563675],\n", " y=[136.38334956748622],\n", " name=u'',\n", " text=[u'2012 XE133
Radius: 52 meters
Velocity: 9.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2103.278021075681],\n", " y=[217.004248614495],\n", " name=u'',\n", " text=[u'2009 UY19
Radius: 52 meters
Velocity: 4.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.0409158645439],\n", " y=[243.24487192337],\n", " name=u'',\n", " text=[u'2008 CE6
Radius: 52 meters
Velocity: 6.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=7.248074602497729,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.861400027371],\n", " y=[297.5275395109452],\n", " name=u'',\n", " text=[u'2007 WP3
Radius: 50 meters
Velocity: 13.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=7.011872336272722,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.4499395556772],\n", " y=[21.090867437968416],\n", " name=u'',\n", " text=[u'2002 MN
Radius: 48 meters
Velocity: 10.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2142.1017707525507],\n", " y=[259.8287461669028],\n", " name=u'',\n", " text=[u'2007 DB61
Radius: 48 meters
Velocity: 9.22 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2055.4523915423565],\n", " y=[295.2587818921493],\n", " name=u'',\n", " text=[u'2003 ME1
Radius: 48 meters
Velocity: 14.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2060.948114821404],\n", " y=[246.7216137533234],\n", " name=u'',\n", " text=[u'2013 YD
Radius: 48 meters
Velocity: 14.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2115.9326958167967],\n", " y=[155.36982729790125],\n", " name=u'',\n", " text=[u'2013 YD
Radius: 48 meters
Velocity: 13.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8080265498836],\n", " y=[217.61931948543733],\n", " name=u'',\n", " text=[u'2008 TT26
Radius: 48 meters
Velocity: 5.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.4659173851558],\n", " y=[220.14346832430397],\n", " name=u'',\n", " text=[u'2003 ME1
Radius: 48 meters
Velocity: 13.98 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.9052126575734],\n", " y=[307.5562487996758],\n", " name=u'',\n", " text=[u'2007 VE191
Radius: 48 meters
Velocity: 16.41 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,23,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.6505063637608],\n", " y=[269.6696454392124],\n", " name=u'',\n", " text=[u'2004 RC11
Radius: 48 meters
Velocity: 7.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.879483904323],\n", " y=[275.41216865449496],\n", " name=u'',\n", " text=[u'2001 WJ15
Radius: 48 meters
Velocity: 17.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,47,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9596239526786],\n", " y=[144.29826417731792],\n", " name=u'',\n", " text=[u'2013 YD
Radius: 48 meters
Velocity: 13.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=6.7863009232263805,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2092.5734436537264],\n", " y=[281.7205162808096],\n", " name=u'',\n", " text=[u'2008 PF2
Radius: 46 meters
Velocity: 8.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.748734090598],\n", " y=[132.6069659023714],\n", " name=u'',\n", " text=[u'2002 TX55
Radius: 46 meters
Velocity: 10.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9679797150372],\n", " y=[257.4907496241174],\n", " name=u'',\n", " text=[u'2013 YQ2
Radius: 46 meters
Velocity: 11.22 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2094.849309262047],\n", " y=[158.61918668749948],\n", " name=u'',\n", " text=[u'2010 VK139
Radius: 46 meters
Velocity: 13.87 k..'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8716394477137],\n", " y=[169.55983711462403],\n", " name=u'',\n", " text=[u'2010 VK139
Radius: 46 meters
Velocity: 13.86 k..'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.0859487857915],\n", " y=[235.0477275346181],\n", " name=u'',\n", " text=[u'2004 CA2
Radius: 46 meters
Velocity: 14.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2089.0774029469458],\n", " y=[271.07361973656106],\n", " name=u'',\n", " text=[u'2012 PK24
Radius: 46 meters
Velocity: 11.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2018.934058665207],\n", " y=[251.29934047812878],\n", " name=u'',\n", " text=[u'2013 VX4
Radius: 46 meters
Velocity: 6.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.9469268433618],\n", " y=[248.60205707157508],\n", " name=u'',\n", " text=[u'2008 XC1
Radius: 46 meters
Velocity: 12.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2072.9630890470326],\n", " y=[257.96467476086326],\n", " name=u'',\n", " text=[u'2013 YA14
Radius: 46 meters
Velocity: 10.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.138527743564],\n", " y=[295.8072083429764],\n", " name=u'',\n", " text=[u'2001 CP36
Radius: 46 meters
Velocity: 8.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2000.9751950184755],\n", " y=[115.05851557450896],\n", " name=u'',\n", " text=[u'2000 YA
Radius: 46 meters
Velocity: 14.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9809334276113],\n", " y=[176.84551127582648],\n", " name=u'',\n", " text=[u'2000 YA
Radius: 46 meters
Velocity: 13.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=6.570881896148752,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8807859282576],\n", " y=[248.1457050892538],\n", " name=u'',\n", " text=[u'2013 WM
Radius: 44 meters
Velocity: 35.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,156)',\n", " size=6.365158322401657,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2043.8007865365023],\n", " y=[296.6216093936469],\n", " name=u'',\n", " text=[u'2000 UR16
Radius: 42 meters
Velocity: 14.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8050575551601],\n", " y=[72.06301383269142],\n", " name=u'',\n", " text=[u'2010 TG19
Radius: 42 meters
Velocity: 10.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1876340039232],\n", " y=[86.66858418494336],\n", " name=u'',\n", " text=[u'2008 ED8
Radius: 42 meters
Velocity: 8.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.752385459909],\n", " y=[72.86854273970236],\n", " name=u'',\n", " text=[u'2006 SO198
Radius: 42 meters
Velocity: 30.82 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,255,30)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1363247570823],\n", " y=[266.5421129274421],\n", " name=u'',\n", " text=[u'2014 BR57
Radius: 42 meters
Velocity: 11.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8245670057631],\n", " y=[283.2943045885601],\n", " name=u'',\n", " text=[u'2013 VJ13
Radius: 42 meters
Velocity: 16.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,23,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2128.1556289250793],\n", " y=[69.49413340416629],\n", " name=u'',\n", " text=[u'2008 ED8
Radius: 42 meters
Velocity: 8.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2068.8473476727036],\n", " y=[268.4922934353825],\n", " name=u'',\n", " text=[u'2005 WA
Radius: 42 meters
Velocity: 7.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8658402141023],\n", " y=[189.0977678161134],\n", " name=u'',\n", " text=[u'2005 WA
Radius: 42 meters
Velocity: 8.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=6.168693834703355,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2087.101367790399],\n", " y=[271.63111207335174],\n", " name=u'',\n", " text=[u'367943 Duende
Radius: 40 meters
Velocity: 6.22..'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2188.0876005504615],\n", " y=[142.24067334412723],\n", " name=u'',\n", " text=[u'2014 CE13
Radius: 40 meters
Velocity: 17.15 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.1832869546706],\n", " y=[292.4875841139334],\n", " name=u'',\n", " text=[u'2002 FW1
Radius: 40 meters
Velocity: 9.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9153665434972],\n", " y=[176.67329683943996],\n", " name=u'',\n", " text=[u'2009 WV25
Radius: 40 meters
Velocity: 10.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1238804494928],\n", " y=[9.70457925089073],\n", " name=u'',\n", " text=[u'367943 Duende
Radius: 40 meters
Velocity: 7.82..'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2053.281440551678],\n", " y=[155.14600872746772],\n", " name=u'',\n", " text=[u'2009 WV25
Radius: 40 meters
Velocity: 11.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.9609316789076],\n", " y=[294.4381547363899],\n", " name=u'',\n", " text=[u'2006 XY
Radius: 40 meters
Velocity: 4.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.6324719066952],\n", " y=[198.11367862582236],\n", " name=u'',\n", " text=[u'367943 Duende
Radius: 40 meters
Velocity: 6.09..'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2793592141477],\n", " y=[284.94264828461274],\n", " name=u'',\n", " text=[u'2007 HD15
Radius: 40 meters
Velocity: 9.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1490028587505],\n", " y=[299.5261355641468],\n", " name=u'',\n", " text=[u'2012 DX13
Radius: 40 meters
Velocity: 24.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,165,0)',\n", " size=5.981071705534971,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2000.7458981494153],\n", " y=[262.2275054315008],\n", " name=u'',\n", " text=[u'2000 SM10
Radius: 38 meters
Velocity: 13.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8672296732204],\n", " y=[294.2545461740754],\n", " name=u'',\n", " text=[u'2010 WB
Radius: 38 meters
Velocity: 6.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2152.4366646138405],\n", " y=[96.64182850275887],\n", " name=u'',\n", " text=[u'2013 ND15
Radius: 38 meters
Velocity: 14.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2119.3461387862476],\n", " y=[83.00875019335359],\n", " name=u'',\n", " text=[u'2004 KG1
Radius: 38 meters
Velocity: 10.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.6835169472195],\n", " y=[144.80586700685456],\n", " name=u'',\n", " text=[u'2008 ST7
Radius: 38 meters
Velocity: 9.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2022.363513677904],\n", " y=[202.36535363214225],\n", " name=u'',\n", " text=[u'2012 UX68
Radius: 38 meters
Velocity: 8.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.320845308152],\n", " y=[89.92679115824652],\n", " name=u'',\n", " text=[u'2012 HM
Radius: 38 meters
Velocity: 6.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.0501326733877],\n", " y=[253.89936528625066],\n", " name=u'',\n", " text=[u'2007 BU7
Radius: 38 meters
Velocity: 14.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=5.801893963205609,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.027874716786],\n", " y=[242.37461346242887],\n", " name=u'',\n", " text=[u'2008 BC
Radius: 36 meters
Velocity: 12.11 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9026770372398],\n", " y=[144.81313629113222],\n", " name=u'',\n", " text=[u'2012 XP2
Radius: 36 meters
Velocity: 11.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2173.617391238234],\n", " y=[209.5058136504538],\n", " name=u'',\n", " text=[u'1998 SD9
Radius: 36 meters
Velocity: 10.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1908272889011],\n", " y=[250.16509686791844],\n", " name=u'',\n", " text=[u'2010 FS
Radius: 36 meters
Velocity: 7.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2018.6541957483691],\n", " y=[259.1870803667083],\n", " name=u'',\n", " text=[u'1998 SD9
Radius: 36 meters
Velocity: 10.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2163.619810911911],\n", " y=[213.39137710139806],\n", " name=u'',\n", " text=[u'1998 SD9
Radius: 36 meters
Velocity: 10.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3176900384715],\n", " y=[124.67123826107566],\n", " name=u'',\n", " text=[u'2012 HP13
Radius: 36 meters
Velocity: 12.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7585078235481],\n", " y=[263.3369697781209],\n", " name=u'',\n", " text=[u'2011 UQ63
Radius: 36 meters
Velocity: 13.34 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2200.606355397412],\n", " y=[108.27758325968901],\n", " name=u'',\n", " text=[u'1998 SD9
Radius: 36 meters
Velocity: 10.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.7634060946125],\n", " y=[163.44076551258567],\n", " name=u'',\n", " text=[u'2004 TE10
Radius: 36 meters
Velocity: 14.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(246,0,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.771476742241],\n", " y=[187.07982107139097],\n", " name=u'',\n", " text=[u'2007 TH72
Radius: 36 meters
Velocity: 17.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,44,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8580280704955],\n", " y=[218.39791169195362],\n", " name=u'',\n", " text=[u'2007 WT3
Radius: 36 meters
Velocity: 20.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,91,0)',\n", " size=5.630780547701014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8295888265438],\n", " y=[167.51988644645175],\n", " name=u'',\n", " text=[u'2012 VB20
Radius: 35 meters
Velocity: 13.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0685929017836],\n", " y=[133.9983725259536],\n", " name=u'',\n", " text=[u'2011 AL37
Radius: 35 meters
Velocity: 14.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(249,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.246880844852],\n", " y=[36.36898476759497],\n", " name=u'',\n", " text=[u'2012 EG5
Radius: 35 meters
Velocity: 8.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2066.103694326597],\n", " y=[209.68612163100724],\n", " name=u'',\n", " text=[u'2013 BV15
Radius: 35 meters
Velocity: 8.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2098.6904319298087],\n", " y=[229.18249722144174],\n", " name=u'',\n", " text=[u'2010 SE
Radius: 35 meters
Velocity: 13.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2176451804205],\n", " y=[218.78165988853604],\n", " name=u'',\n", " text=[u'2012 EO8
Radius: 35 meters
Velocity: 12.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.741264084668],\n", " y=[212.553362813432],\n", " name=u'',\n", " text=[u'1999 SF10
Radius: 35 meters
Velocity: 5.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2133.7994027796785],\n", " y=[295.0380622072226],\n", " name=u'',\n", " text=[u'2002 VX91
Radius: 35 meters
Velocity: 6.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2845178899988],\n", " y=[85.20705404511898],\n", " name=u'',\n", " text=[u'2011 GP59
Radius: 35 meters
Velocity: 8.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2030.1773109499263],\n", " y=[241.8414394583294],\n", " name=u'',\n", " text=[u'2005 CD69
Radius: 35 meters
Velocity: 5.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1470469717015],\n", " y=[294.50648393047317],\n", " name=u'',\n", " text=[u'2009 CV
Radius: 35 meters
Velocity: 3.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.8358290376048],\n", " y=[263.5671802229726],\n", " name=u'',\n", " text=[u'2002 VX91
Radius: 35 meters
Velocity: 6.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.765755439989],\n", " y=[253.53116685236967],\n", " name=u'',\n", " text=[u'1999 SF10
Radius: 35 meters
Velocity: 4.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.670844547846],\n", " y=[279.15875096699796],\n", " name=u'',\n", " text=[u'2010 QG2
Radius: 35 meters
Velocity: 13.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.117007283731],\n", " y=[224.9654261090949],\n", " name=u'',\n", " text=[u'2013 BV15
Radius: 35 meters
Velocity: 8.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.707460882259],\n", " y=[268.3050920964595],\n", " name=u'',\n", " text=[u'2012 SR56
Radius: 35 meters
Velocity: 9.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=5.467368504525315,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2039.407060201025],\n", " y=[161.9798759556663],\n", " name=u'',\n", " text=[u'2008 LH2
Radius: 33 meters
Velocity: 8.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.7699447257576],\n", " y=[151.44056143525088],\n", " name=u'',\n", " text=[u'2001 TB
Radius: 33 meters
Velocity: 12.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.4143116189955],\n", " y=[266.9180155677677],\n", " name=u'',\n", " text=[u'2008 KO
Radius: 33 meters
Velocity: 23.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,149,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.621679363776],\n", " y=[217.18076935912453],\n", " name=u'',\n", " text=[u'2001 QE71
Radius: 33 meters
Velocity: 5.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2077.601584477594],\n", " y=[188.2145115267923],\n", " name=u'',\n", " text=[u'2001 QE71
Radius: 33 meters
Velocity: 5.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2054.713997612639],\n", " y=[127.8298211007699],\n", " name=u'',\n", " text=[u'2007 TD
Radius: 33 meters
Velocity: 11.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.3745780301992],\n", " y=[176.34081967405137],\n", " name=u'',\n", " text=[u'2006 KB1
Radius: 33 meters
Velocity: 16.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,26,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.1815819685842],\n", " y=[73.68912439864242],\n", " name=u'',\n", " text=[u'2002 EM7
Radius: 33 meters
Velocity: 10.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8794306829068],\n", " y=[114.01388936596],\n", " name=u'',\n", " text=[u'2004 XK3
Radius: 33 meters
Velocity: 6.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2170.8420293326035],\n", " y=[154.54902029556453],\n", " name=u'',\n", " text=[u'2004 XK3
Radius: 33 meters
Velocity: 6.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.2935636300047],\n", " y=[115.67808617200063],\n", " name=u'',\n", " text=[u'2006 HF6
Radius: 33 meters
Velocity: 16.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,23,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.6058478931923],\n", " y=[242.32764122986129],\n", " name=u'',\n", " text=[u'2007 PF2
Radius: 33 meters
Velocity: 18.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,60,0)',\n", " size=5.3113112148259125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.9182043854446],\n", " y=[239.97390833516238],\n", " name=u'',\n", " text=[u'2005 XN27
Radius: 32 meters
Velocity: 13.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.307819366513],\n", " y=[181.19249095893082],\n", " name=u'',\n", " text=[u'2008 GD110
Radius: 32 meters
Velocity: 8.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8573076806106],\n", " y=[237.2013133604818],\n", " name=u'',\n", " text=[u'2005 VG7
Radius: 32 meters
Velocity: 11.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.1779382023326],\n", " y=[255.53606456857392],\n", " name=u'',\n", " text=[u'2003 EM1
Radius: 32 meters
Velocity: 7.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.5285703967277],\n", " y=[277.653994482137],\n", " name=u'',\n", " text=[u'2004 OW10
Radius: 32 meters
Velocity: 6.11 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.9937065675228],\n", " y=[187.122858530648],\n", " name=u'',\n", " text=[u'2003 YH111
Radius: 32 meters
Velocity: 13.82 k..'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1022060277055],\n", " y=[295.25670663459266],\n", " name=u'',\n", " text=[u'2010 CB19
Radius: 32 meters
Velocity: 10.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.611572996974],\n", " y=[97.77995769212396],\n", " name=u'',\n", " text=[u'2004 PZ19
Radius: 32 meters
Velocity: 11.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2052.683549260222],\n", " y=[225.92809487393774],\n", " name=u'',\n", " text=[u'2012 RM15
Radius: 32 meters
Velocity: 9.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=5.162277660168379,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2029.855319480559],\n", " y=[48.862322005318696],\n", " name=u'',\n", " text=[u'2001 AV43
Radius: 30 meters
Velocity: 4.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.587233702842],\n", " y=[65.95648361211147],\n", " name=u'',\n", " text=[u'2013 PJ10
Radius: 30 meters
Velocity: 6.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9809296260814],\n", " y=[123.32329266252562],\n", " name=u'',\n", " text=[u'2010 YO
Radius: 30 meters
Velocity: 14.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2052845064854],\n", " y=[170.38295247984937],\n", " name=u'',\n", " text=[u'2009 FW4
Radius: 30 meters
Velocity: 13.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2000.9945162933564],\n", " y=[213.49657907085742],\n", " name=u'',\n", " text=[u'2001 AV43
Radius: 30 meters
Velocity: 4.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1364026884419],\n", " y=[275.1676359804703],\n", " name=u'',\n", " text=[u'2014 DE23
Radius: 30 meters
Velocity: 8.77 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.9667727293463],\n", " y=[305.93963501815426],\n", " name=u'',\n", " text=[u'2005 XO66
Radius: 30 meters
Velocity: 8.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.4777610510469],\n", " y=[141.61852034479938],\n", " name=u'',\n", " text=[u'2009 MU
Radius: 30 meters
Velocity: 13.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.667626552925],\n", " y=[136.85453796079457],\n", " name=u'',\n", " text=[u'2013 RE32
Radius: 30 meters
Velocity: 9.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6938666119247],\n", " y=[119.00047767741357],\n", " name=u'',\n", " text=[u'2009 RY3
Radius: 30 meters
Velocity: 20.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,91,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8795675379772],\n", " y=[181.75499577903946],\n", " name=u'',\n", " text=[u'2001 AV43
Radius: 30 meters
Velocity: 3.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2017.1631920684883],\n", " y=[165.30154517268898],\n", " name=u'',\n", " text=[u'2012 DR32
Radius: 30 meters
Velocity: 16.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,33,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2078.897212338245],\n", " y=[192.9002524229354],\n", " name=u'',\n", " text=[u'2001 AV43
Radius: 30 meters
Velocity: 3.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.129039125344],\n", " y=[278.50875810854365],\n", " name=u'',\n", " text=[u'2013 CE82
Radius: 30 meters
Velocity: 13.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0100968629777],\n", " y=[218.5634209089726],\n", " name=u'',\n", " text=[u'2008 YG30
Radius: 30 meters
Velocity: 11.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2056.8400031172546],\n", " y=[97.9756116440043],\n", " name=u'',\n", " text=[u'2004 VZ
Radius: 30 meters
Velocity: 10.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=5.0199517204020125,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2055.347839970804],\n", " y=[77.2668057068223],\n", " name=u'',\n", " text=[u'2011 AX22
Radius: 29 meters
Velocity: 10.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2803019935222],\n", " y=[239.33653405550444],\n", " name=u'',\n", " text=[u'2010 GM23
Radius: 29 meters
Velocity: 13.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.756770524459],\n", " y=[147.7942591462025],\n", " name=u'',\n", " text=[u'2011 SE97
Radius: 29 meters
Velocity: 14.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1128997308517],\n", " y=[284.0541127238219],\n", " name=u'',\n", " text=[u'2009 BL58
Radius: 29 meters
Velocity: 10.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8225236835303],\n", " y=[208.7604377613607],\n", " name=u'',\n", " text=[u'2008 UW99
Radius: 29 meters
Velocity: 10.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0869599927012],\n", " y=[77.46853664726557],\n", " name=u'',\n", " text=[u'2013 CL22
Radius: 29 meters
Velocity: 9.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2780933047459],\n", " y=[205.32617774345826],\n", " name=u'',\n", " text=[u'2010 GM23
Radius: 29 meters
Velocity: 13.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.3380016118485],\n", " y=[229.51837453232943],\n", " name=u'',\n", " text=[u'2006 HU50
Radius: 29 meters
Velocity: 6.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.789043611149],\n", " y=[269.8043988361304],\n", " name=u'',\n", " text=[u'2008 UB95
Radius: 29 meters
Velocity: 9.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.3707669966395],\n", " y=[189.53620539241595],\n", " name=u'',\n", " text=[u'2005 JZ93
Radius: 29 meters
Velocity: 10.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.810495643447],\n", " y=[214.7141156037043],\n", " name=u'',\n", " text=[u'2009 UU1
Radius: 29 meters
Velocity: 10.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.3628712193786],\n", " y=[259.96113989391273],\n", " name=u'',\n", " text=[u'2005 KA
Radius: 29 meters
Velocity: 3.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2026.4559269650108],\n", " y=[223.56566696953934],\n", " name=u'',\n", " text=[u'2003 LN6
Radius: 29 meters
Velocity: 3.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=4.8840315031266055,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3582257500418],\n", " y=[192.56634362525867],\n", " name=u'',\n", " text=[u'2008 HR3
Radius: 28 meters
Velocity: 15.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6030651734259],\n", " y=[174.34682181520347],\n", " name=u'',\n", " text=[u'2010 PJ9
Radius: 28 meters
Velocity: 13.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2036.308984535377],\n", " y=[280.7479472022978],\n", " name=u'',\n", " text=[u'2007 VC3
Radius: 28 meters
Velocity: 11.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.9273869805209],\n", " y=[294.8656747410099],\n", " name=u'',\n", " text=[u'2008 WG14
Radius: 28 meters
Velocity: 11.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.0818526375015],\n", " y=[285.252853152804],\n", " name=u'',\n", " text=[u'2002 CC14
Radius: 28 meters
Velocity: 12.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6985881118562],\n", " y=[291.55626702603274],\n", " name=u'',\n", " text=[u'2010 SP3
Radius: 28 meters
Velocity: 16.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,33,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2052.0657132430088],\n", " y=[208.69468512643957],\n", " name=u'',\n", " text=[u'2002 PN
Radius: 28 meters
Velocity: 5.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.0954336024815],\n", " y=[287.85009656509754],\n", " name=u'',\n", " text=[u'2002 CC14
Radius: 28 meters
Velocity: 11.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8054110974256],\n", " y=[172.02612849715555],\n", " name=u'',\n", " text=[u'2012 UF34
Radius: 28 meters
Velocity: 10.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2077.6145705031704],\n", " y=[295.118905076647],\n", " name=u'',\n", " text=[u'2005 TG50
Radius: 28 meters
Velocity: 3.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2000.1750205282606],\n", " y=[257.12162699715924],\n", " name=u'',\n", " text=[u'2000 DO8
Radius: 28 meters
Velocity: 10.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8141204020499],\n", " y=[239.69393851630207],\n", " name=u'',\n", " text=[u'2007 VC3
Radius: 28 meters
Velocity: 11.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.2243738880525],\n", " y=[265.30116610032195],\n", " name=u'',\n", " text=[u'2001 FR85
Radius: 28 meters
Velocity: 2.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.1834200082112],\n", " y=[183.94834352863012],\n", " name=u'',\n", " text=[u'2005 EM169
Radius: 28 meters
Velocity: 18.61 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=4.754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.121015996837],\n", " y=[60.549913115418335],\n", " name=u'',\n", " text=[u'2008 CK70
Radius: 26 meters
Velocity: 15.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,7,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.2620109331995],\n", " y=[110.36962181678332],\n", " name=u'',\n", " text=[u'2005 GA120
Radius: 26 meters
Velocity: 12.14 k..'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.797283426851],\n", " y=[272.71158202379723],\n", " name=u'',\n", " text=[u'2009 TH8
Radius: 26 meters
Velocity: 13.11 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2025.1043310828277],\n", " y=[218.12250633946283],\n", " name=u'',\n", " text=[u'2012 PB20
Radius: 26 meters
Velocity: 4.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6614699755182],\n", " y=[266.224911859357],\n", " name=u'',\n", " text=[u'2009 QH34
Radius: 26 meters
Velocity: 7.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.241172847954],\n", " y=[257.0612049793043],\n", " name=u'',\n", " text=[u'2013 FB8
Radius: 26 meters
Velocity: 7.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7456491492176],\n", " y=[171.92936147196005],\n", " name=u'',\n", " text=[u'2009 SH2
Radius: 26 meters
Velocity: 4.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8212121557715],\n", " y=[295.07231191887433],\n", " name=u'',\n", " text=[u'2007 VJ3
Radius: 26 meters
Velocity: 16.11 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,18,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2090.718384577954],\n", " y=[122.53971367541072],\n", " name=u'',\n", " text=[u'2009 SH2
Radius: 26 meters
Velocity: 4.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2027431838571],\n", " y=[300.8325573068674],\n", " name=u'',\n", " text=[u'2009 FJ
Radius: 26 meters
Velocity: 9.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=4.6302679918953835,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0058809665009],\n", " y=[226.43274525255242],\n", " name=u'',\n", " text=[u'2011 YL28
Radius: 25 meters
Velocity: 7.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2862361814393],\n", " y=[129.5653063201809],\n", " name=u'',\n", " text=[u'2007 GU1
Radius: 25 meters
Velocity: 16.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,33,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.0543504706293],\n", " y=[140.55640216010733],\n", " name=u'',\n", " text=[u'2010 AF40
Radius: 25 meters
Velocity: 14.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8722020741145],\n", " y=[292.75100090869256],\n", " name=u'',\n", " text=[u'2009 WU25
Radius: 25 meters
Velocity: 9.67 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.5582622447273],\n", " y=[59.03361678702242],\n", " name=u'',\n", " text=[u'2011 PU1
Radius: 25 meters
Velocity: 5.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2095.9183374389854],\n", " y=[55.42187639803978],\n", " name=u'',\n", " text=[u'2013 XY8
Radius: 25 meters
Velocity: 9.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2035548104557],\n", " y=[288.52839417001644],\n", " name=u'',\n", " text=[u'2007 EV
Radius: 25 meters
Velocity: 10.34 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.359115308],\n", " y=[220.90095175463426],\n", " name=u'',\n", " text=[u'2010 JO33
Radius: 25 meters
Velocity: 8.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.3437780362817],\n", " y=[144.2678877113307],\n", " name=u'',\n", " text=[u'2013 JD34
Radius: 25 meters
Velocity: 20.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,91,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.911399647218],\n", " y=[116.07618274174563],\n", " name=u'',\n", " text=[u'2001 WM15
Radius: 25 meters
Velocity: 15.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.3714531727567],\n", " y=[244.7190319180532],\n", " name=u'',\n", " text=[u'2010 JO33
Radius: 25 meters
Velocity: 8.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7273942034274],\n", " y=[147.71592105905793],\n", " name=u'',\n", " text=[u'2008 SA
Radius: 25 meters
Velocity: 7.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0556600976233],\n", " y=[259.87893071536257],\n", " name=u'',\n", " text=[u'2014 BT8
Radius: 25 meters
Velocity: 7.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.941344296945],\n", " y=[122.68906241845438],\n", " name=u'',\n", " text=[u'2013 XY8
Radius: 25 meters
Velocity: 9.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.431338670681],\n", " y=[227.0667808373181],\n", " name=u'',\n", " text=[u'2006 LM
Radius: 25 meters
Velocity: 8.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1850109484055],\n", " y=[112.194919535942],\n", " name=u'',\n", " text=[u'2007 EK26
Radius: 25 meters
Velocity: 18.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.9513480224443],\n", " y=[60.51957028908629],\n", " name=u'',\n", " text=[u'2007 YN1
Radius: 25 meters
Velocity: 17.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,47,0)',\n", " size=4.511886431509579,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7680800754224],\n", " y=[265.96529546365525],\n", " name=u'',\n", " text=[u'2011 UK10
Radius: 24 meters
Velocity: 7.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.013542949683],\n", " y=[276.49894672423125],\n", " name=u'',\n", " text=[u'2011 AF3
Radius: 24 meters
Velocity: 33.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,93)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.3544622356037],\n", " y=[162.34183006513464],\n", " name=u'',\n", " text=[u'2011 KB
Radius: 24 meters
Velocity: 9.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.057904900932],\n", " y=[284.05431020952597],\n", " name=u'',\n", " text=[u'2006 BC8
Radius: 24 meters
Velocity: 12.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.800459604945],\n", " y=[216.23861684512923],\n", " name=u'',\n", " text=[u'2011 UL10
Radius: 24 meters
Velocity: 15.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.3431507838754],\n", " y=[295.4390332841652],\n", " name=u'',\n", " text=[u'2006 JO
Radius: 24 meters
Velocity: 17.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1910325715069],\n", " y=[255.07682962725602],\n", " name=u'',\n", " text=[u'2008 EJ85
Radius: 24 meters
Velocity: 7.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.757203898849],\n", " y=[184.1421469402787],\n", " name=u'',\n", " text=[u'2006 TR7
Radius: 24 meters
Velocity: 10.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9576661648648],\n", " y=[106.96541877928018],\n", " name=u'',\n", " text=[u'2010 XM56
Radius: 24 meters
Velocity: 15.34 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=4.398832919019489,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.403021075681],\n", " y=[235.96581311346407],\n", " name=u'',\n", " text=[u'2003 LH
Radius: 23 meters
Velocity: 6.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1979228441526],\n", " y=[260.96878656965896],\n", " name=u'',\n", " text=[u'2014 EM
Radius: 23 meters
Velocity: 11.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0398913522802],\n", " y=[296.0468585955967],\n", " name=u'',\n", " text=[u'2012 BV61
Radius: 23 meters
Velocity: 4.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.2121234584797],\n", " y=[143.53897764059934],\n", " name=u'',\n", " text=[u'2005 FA
Radius: 23 meters
Velocity: 15.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8831409759287],\n", " y=[160.7132112552354],\n", " name=u'',\n", " text=[u'2011 WJ15
Radius: 23 meters
Velocity: 26.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,196,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7073487371317],\n", " y=[299.91044499490823],\n", " name=u'',\n", " text=[u'2007 SN6
Radius: 23 meters
Velocity: 18.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,52,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.3503394766053],\n", " y=[156.72315460934553],\n", " name=u'',\n", " text=[u'2006 JV26
Radius: 23 meters
Velocity: 26.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,201,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.3140424706903],\n", " y=[289.6772289758637],\n", " name=u'',\n", " text=[u'2007 HC
Radius: 23 meters
Velocity: 5.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.6994510591062],\n", " y=[123.03731467529113],\n", " name=u'',\n", " text=[u'2006 SC
Radius: 23 meters
Velocity: 12.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7648240652038],\n", " y=[42.65060619136274],\n", " name=u'',\n", " text=[u'2012 TV
Radius: 23 meters
Velocity: 16.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,31,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7065561181819],\n", " y=[155.8211950590524],\n", " name=u'',\n", " text=[u'2007 RJ1
Radius: 23 meters
Velocity: 9.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2069.384714809239],\n", " y=[244.16633024328058],\n", " name=u'',\n", " text=[u'2003 LH
Radius: 23 meters
Velocity: 6.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.3435214330248],\n", " y=[184.04122214295393],\n", " name=u'',\n", " text=[u'2006 HX57
Radius: 23 meters
Velocity: 10.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.5572776485258],\n", " y=[139.1184985831028],\n", " name=u'',\n", " text=[u'2008 OO8
Radius: 23 meters
Velocity: 8.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=4.290867652767774,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2838868360627],\n", " y=[193.58752547309714],\n", " name=u'',\n", " text=[u'2008 GP3
Radius: 22 meters
Velocity: 12.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.8323582409562],\n", " y=[277.18803850911735],\n", " name=u'',\n", " text=[u'2004 VZ14
Radius: 22 meters
Velocity: 14.95 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6052073354317],\n", " y=[236.75941649901955],\n", " name=u'',\n", " text=[u'2009 PA3
Radius: 22 meters
Velocity: 12.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.1470108571689],\n", " y=[140.55613202847556],\n", " name=u'',\n", " text=[u'2001 DZ76
Radius: 22 meters
Velocity: 11.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7890721226222],\n", " y=[265.63508430569453],\n", " name=u'',\n", " text=[u'2010 TK
Radius: 22 meters
Velocity: 10.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2000.8347627085138],\n", " y=[263.165123633059],\n", " name=u'',\n", " text=[u'2000 UK11
Radius: 22 meters
Velocity: 6.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9456077125435],\n", " y=[92.35194263008393],\n", " name=u'',\n", " text=[u'2009 YS
Radius: 22 meters
Velocity: 4.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8806129586546],\n", " y=[157.86605697333357],\n", " name=u'',\n", " text=[u'2011 WF44
Radius: 22 meters
Velocity: 14.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0023778568495],\n", " y=[206.19049536034203],\n", " name=u'',\n", " text=[u'2008 YC29
Radius: 22 meters
Velocity: 11.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.086602648906],\n", " y=[197.86677228732222],\n", " name=u'',\n", " text=[u'2014 BM62
Radius: 22 meters
Velocity: 8.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2078.8104728342687],\n", " y=[285.3510038213513],\n", " name=u'',\n", " text=[u'2000 UK11
Radius: 22 meters
Velocity: 5.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3319058589177],\n", " y=[178.28687023494456],\n", " name=u'',\n", " text=[u'2012 HA34
Radius: 22 meters
Velocity: 11.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0532461262412],\n", " y=[134.13365031087923],\n", " name=u'',\n", " text=[u'2006 BM8
Radius: 22 meters
Velocity: 14.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=4.187761623949552,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8337457993096],\n", " y=[46.081768806049766],\n", " name=u'',\n", " text=[u'2010 UJ7
Radius: 21 meters
Velocity: 9.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6827167252102],\n", " y=[95.01369863059405],\n", " name=u'',\n", " text=[u'2013 RR43
Radius: 21 meters
Velocity: 19.06 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,70,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7692414427565],\n", " y=[73.4497986431671],\n", " name=u'',\n", " text=[u'2010 FV9
Radius: 21 meters
Velocity: 7.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2054.3358024268964],\n", " y=[144.28719050740176],\n", " name=u'',\n", " text=[u'2007 JB21
Radius: 21 meters
Velocity: 7.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.349124887855],\n", " y=[100.34369961297713],\n", " name=u'',\n", " text=[u'2007 JB21
Radius: 21 meters
Velocity: 7.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2056.0260537840427],\n", " y=[190.00422168872655],\n", " name=u'',\n", " text=[u'2007 BD
Radius: 21 meters
Velocity: 7.49 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.07885323054],\n", " y=[298.90477538848256],\n", " name=u'',\n", " text=[u'2008 CQ
Radius: 21 meters
Velocity: 10.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.651755166279],\n", " y=[205.60677753419634],\n", " name=u'',\n", " text=[u'2011 QF48
Radius: 21 meters
Velocity: 20.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,89,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.2077954168758],\n", " y=[128.01334895553933],\n", " name=u'',\n", " text=[u'2004 FY3
Radius: 21 meters
Velocity: 11.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2057.7566640816262],\n", " y=[91.72606212984877],\n", " name=u'',\n", " text=[u'2010 FV9
Radius: 21 meters
Velocity: 7.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7980532366223],\n", " y=[142.95441396850046],\n", " name=u'',\n", " text=[u'2009 UE
Radius: 21 meters
Velocity: 7.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.942165427368],\n", " y=[41.136805059169795],\n", " name=u'',\n", " text=[u'2012 XE54
Radius: 21 meters
Velocity: 13.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8736865714764],\n", " y=[116.79256772451104],\n", " name=u'',\n", " text=[u'2012 WQ3
Radius: 21 meters
Velocity: 23.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,149,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.9547085747304],\n", " y=[213.48160817618327],\n", " name=u'',\n", " text=[u'2001 YN2
Radius: 21 meters
Velocity: 18.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,68,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6687670118456],\n", " y=[177.57317039340504],\n", " name=u'',\n", " text=[u'2009 QC35
Radius: 21 meters
Velocity: 10.15 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6788942870612],\n", " y=[177.64272733850154],\n", " name=u'',\n", " text=[u'2009 SD
Radius: 21 meters
Velocity: 15.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,7,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.0456259598864],\n", " y=[48.35401786159899],\n", " name=u'',\n", " text=[u'2007 BD
Radius: 21 meters
Velocity: 7.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.086387862476],\n", " y=[110.6835275514732],\n", " name=u'',\n", " text=[u'2004 BK86
Radius: 21 meters
Velocity: 15.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.4877761811354],\n", " y=[106.8158758379778],\n", " name=u'',\n", " text=[u'2006 MB14
Radius: 21 meters
Velocity: 10.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.7159801103965],\n", " y=[291.043090369724],\n", " name=u'',\n", " text=[u'2005 SO1
Radius: 21 meters
Velocity: 12.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2059.818902726457],\n", " y=[243.20653204133646],\n", " name=u'',\n", " text=[u'2010 UJ7
Radius: 21 meters
Velocity: 9.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.2650483554582],\n", " y=[164.4024403753519],\n", " name=u'',\n", " text=[u'2005 GB34
Radius: 21 meters
Velocity: 11.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=4.089296130854041,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.7510017030854],\n", " y=[122.6223470293131],\n", " name=u'',\n", " text=[u'2002 TY59
Radius: 20 meters
Velocity: 8.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1665963383666],\n", " y=[297.71220921134363],\n", " name=u'',\n", " text=[u'2013 EQ41
Radius: 20 meters
Velocity: 7.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.9368660949167],\n", " y=[296.56080573270896],\n", " name=u'',\n", " text=[u'2007 XN16
Radius: 20 meters
Velocity: 8.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.097942612107],\n", " y=[273.617125141959],\n", " name=u'',\n", " text=[u'2013 BA74
Radius: 20 meters
Velocity: 7.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2080.5922441190337],\n", " y=[171.71959421426823],\n", " name=u'',\n", " text=[u'2011 CU46
Radius: 20 meters
Velocity: 15.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,15,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.3718713410276],\n", " y=[300.8431247638076],\n", " name=u'',\n", " text=[u'2004 KZ
Radius: 20 meters
Velocity: 11.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8911507990815],\n", " y=[263.73800326691986],\n", " name=u'',\n", " text=[u'2009 WG106
Radius: 20 meters
Velocity: 5.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2092.830755896173],\n", " y=[281.4936819896959],\n", " name=u'',\n", " text=[u'2012 UV136
Radius: 20 meters
Velocity: 3.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1020615695757],\n", " y=[275.92250128796263],\n", " name=u'',\n", " text=[u'2011 CU46
Radius: 20 meters
Velocity: 16.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,26,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.9433401000563],\n", " y=[20.95044618695263],\n", " name=u'',\n", " text=[u'2002 XV90
Radius: 20 meters
Velocity: 8.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.703895047367],\n", " y=[62.79309072373877],\n", " name=u'',\n", " text=[u'2009 RR
Radius: 20 meters
Velocity: 13.06 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7066682633092],\n", " y=[172.82510806957475],\n", " name=u'',\n", " text=[u'2009 RR
Radius: 20 meters
Velocity: 12.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.7526496662256],\n", " y=[267.4945803748478],\n", " name=u'',\n", " text=[u'2005 SK26
Radius: 20 meters
Velocity: 7.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2095.015692714748],\n", " y=[240.58563314345034],\n", " name=u'',\n", " text=[u'2009 BG
Radius: 20 meters
Velocity: 8.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1694855009655],\n", " y=[238.40165170711632],\n", " name=u'',\n", " text=[u'2007 EZ25
Radius: 20 meters
Velocity: 21.13 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,107,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2140242233475],\n", " y=[207.92220853329147],\n", " name=u'',\n", " text=[u'2007 FC3
Radius: 20 meters
Velocity: 15.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,7,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2168.996806715022],\n", " y=[164.0268811415135],\n", " name=u'',\n", " text=[u'2009 BG
Radius: 20 meters
Velocity: 8.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7088047230206],\n", " y=[223.61702529754683],\n", " name=u'',\n", " text=[u'2003 RU11
Radius: 20 meters
Velocity: 4.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2034.7026234356706],\n", " y=[229.30274637906004],\n", " name=u'',\n", " text=[u'2003 RU11
Radius: 20 meters
Velocity: 4.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=3.995262314968879,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.223820765476],\n", " y=[234.45927769603864],\n", " name=u'',\n", " text=[u'2013 FG
Radius: 19 meters
Velocity: 9.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.2356340191293],\n", " y=[233.41363063499753],\n", " name=u'',\n", " text=[u'2006 FU
Radius: 19 meters
Velocity: 12.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.0766445417637],\n", " y=[292.32957180963683],\n", " name=u'',\n", " text=[u'2005 BG28
Radius: 19 meters
Velocity: 7.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.949082310722],\n", " y=[63.10003983590052],\n", " name=u'',\n", " text=[u'2011 YQ1
Radius: 19 meters
Velocity: 11.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8246924562443],\n", " y=[181.7657170329006],\n", " name=u'',\n", " text=[u'2012 UU169
Radius: 19 meters
Velocity: 11.36 k..'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2059.935316971549],\n", " y=[76.60464846790072],\n", " name=u'',\n", " text=[u'2004 YC
Radius: 19 meters
Velocity: 9.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2037.8338256314341],\n", " y=[202.4093977791948],\n", " name=u'',\n", " text=[u'2012 UX136
Radius: 19 meters
Velocity: 5.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9470998129648],\n", " y=[179.29414754858456],\n", " name=u'',\n", " text=[u'2010 WA9
Radius: 19 meters
Velocity: 8.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.124555221021],\n", " y=[305.63767074821646],\n", " name=u'',\n", " text=[u'2013 DB
Radius: 19 meters
Velocity: 6.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.83503451789],\n", " y=[110.97095401778644],\n", " name=u'',\n", " text=[u'2010 VZ11
Radius: 19 meters
Velocity: 4.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4395252649667],\n", " y=[97.90105668230137],\n", " name=u'',\n", " text=[u'2012 LJ
Radius: 19 meters
Velocity: 18.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,65,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8550438696532],\n", " y=[305.57474294699875],\n", " name=u'',\n", " text=[u'2010 VB
Radius: 19 meters
Velocity: 9.53 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.472035947265],\n", " y=[91.69636613873205],\n", " name=u'',\n", " text=[u'2004 MR1
Radius: 19 meters
Velocity: 7.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1872538509497],\n", " y=[307.4394531494581],\n", " name=u'',\n", " text=[u'2007 EE126
Radius: 19 meters
Velocity: 30.13 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,255,10)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8610806988731],\n", " y=[267.05832977739374],\n", " name=u'',\n", " text=[u'2012 VV76
Radius: 19 meters
Velocity: 13.77 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8422384167388],\n", " y=[166.8435470174338],\n", " name=u'',\n", " text=[u'2012 UX136
Radius: 19 meters
Velocity: 5.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.9500098839774],\n", " y=[137.82115502913257],\n", " name=u'',\n", " text=[u'2004 YC
Radius: 19 meters
Velocity: 9.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.9267920411173],\n", " y=[198.70165453092616],\n", " name=u'',\n", " text=[u'2008 WY94
Radius: 19 meters
Velocity: 4.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.913197770783],\n", " y=[126.97884849424467],\n", " name=u'',\n", " text=[u'2008 XU2
Radius: 19 meters
Velocity: 10.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.749049617566],\n", " y=[155.16818832619697],\n", " name=u'',\n", " text=[u'2009 SU104
Radius: 19 meters
Velocity: 17.23 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=3.905460717963245,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3260305947113],\n", " y=[200.6278885832635],\n", " name=u'',\n", " text=[u'2009 JS
Radius: 18 meters
Velocity: 9.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7165104237945],\n", " y=[306.6608683260696],\n", " name=u'',\n", " text=[u'2006 SS131
Radius: 18 meters
Velocity: 6.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0203933062664],\n", " y=[207.04364222429692],\n", " name=u'',\n", " text=[u'2012 AW10
Radius: 18 meters
Velocity: 10.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.9271018657907],\n", " y=[40.855009255026744],\n", " name=u'',\n", " text=[u'2005 XA8
Radius: 18 meters
Velocity: 12.22 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.011786642945],\n", " y=[197.5774616442292],\n", " name=u'',\n", " text=[u'2013 AH53
Radius: 18 meters
Velocity: 11.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.114505877165],\n", " y=[252.72160546403796],\n", " name=u'',\n", " text=[u'2008 DB
Radius: 18 meters
Velocity: 6.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.2121880844852],\n", " y=[11.07666544271987],\n", " name=u'',\n", " text=[u'2004 FH
Radius: 18 meters
Velocity: 8.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0606724145796],\n", " y=[125.6461065480845],\n", " name=u'',\n", " text=[u'2012 BY1
Radius: 18 meters
Velocity: 18.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,60,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2044.1978848288552],\n", " y=[280.01093080686195],\n", " name=u'',\n", " text=[u'2004 FH
Radius: 18 meters
Velocity: 6.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.8047268220732],\n", " y=[146.28740463534226],\n", " name=u'',\n", " text=[u'2001 UP
Radius: 18 meters
Velocity: 8.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0952796405275],\n", " y=[273.78047192821793],\n", " name=u'',\n", " text=[u'2012 CL17
Radius: 18 meters
Velocity: 21.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,117,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0554510134878],\n", " y=[295.5123097857403],\n", " name=u'',\n", " text=[u'2011 BZ11
Radius: 18 meters
Velocity: 13.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.17236896127],\n", " y=[57.774328527232775],\n", " name=u'',\n", " text=[u'2014 DX110
Radius: 18 meters
Velocity: 14.84 k..'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7710148563783],\n", " y=[224.49047616246946],\n", " name=u'',\n", " text=[u'2010 TS19
Radius: 18 meters
Velocity: 18.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,54,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.3914777306388],\n", " y=[197.51808727830038],\n", " name=u'',\n", " text=[u'2011 KG13
Radius: 18 meters
Velocity: 13.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1704358833995],\n", " y=[82.16095426349149],\n", " name=u'',\n", " text=[u'2010 ES12
Radius: 18 meters
Velocity: 13.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.86529659535],\n", " y=[132.23169113523198],\n", " name=u'',\n", " text=[u'2004 VM24
Radius: 18 meters
Velocity: 12.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.4914674665085],\n", " y=[157.53588016537404],\n", " name=u'',\n", " text=[u'2010 NH
Radius: 18 meters
Velocity: 10.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2191.449137432903],\n", " y=[180.56996104860255],\n", " name=u'',\n", " text=[u'2010 NH
Radius: 18 meters
Velocity: 10.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.3825080212277],\n", " y=[122.79563201658351],\n", " name=u'',\n", " text=[u'2010 KK37
Radius: 18 meters
Velocity: 11.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.244940163922],\n", " y=[231.86463447219361],\n", " name=u'',\n", " text=[u'2009 FO32
Radius: 18 meters
Velocity: 15.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,15,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.980418320332],\n", " y=[70.96199464010996],\n", " name=u'',\n", " text=[u'2007 YS56
Radius: 18 meters
Velocity: 9.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3783833614646],\n", " y=[142.24731148283874],\n", " name=u'',\n", " text=[u'2010 KK37
Radius: 18 meters
Velocity: 10.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.8197008586099837,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0497164058818],\n", " y=[259.0039687778702],\n", " name=u'',\n", " text=[u'2006 BB9
Radius: 17 meters
Velocity: 13.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.7170730501955],\n", " y=[300.2479085491676],\n", " name=u'',\n", " text=[u'2004 SE26
Radius: 17 meters
Velocity: 11.15 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2027.710192281374],\n", " y=[288.10886743097205],\n", " name=u'',\n", " text=[u'2006 SB
Radius: 17 meters
Velocity: 9.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.5081903958153],\n", " y=[260.5249774002289],\n", " name=u'',\n", " text=[u'2013 NH4
Radius: 17 meters
Velocity: 13.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2102.1213714398673],\n", " y=[227.36855100689468],\n", " name=u'',\n", " text=[u'2014 DH6
Radius: 17 meters
Velocity: 16.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,33,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1191000258505],\n", " y=[243.67351884651825],\n", " name=u'',\n", " text=[u'2007 DD
Radius: 17 meters
Velocity: 3.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0888987728663],\n", " y=[107.84542209863632],\n", " name=u'',\n", " text=[u'2009 BK58
Radius: 17 meters
Velocity: 9.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7148567583595],\n", " y=[234.87898397210364],\n", " name=u'',\n", " text=[u'2006 SB
Radius: 17 meters
Velocity: 9.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.180306555358],\n", " y=[200.72137195244383],\n", " name=u'',\n", " text=[u'2011 EC12
Radius: 17 meters
Velocity: 15.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.151886319055],\n", " y=[192.8640346427385],\n", " name=u'',\n", " text=[u'2009 DD45
Radius: 17 meters
Velocity: 8.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8669464592551],\n", " y=[182.7425039136082],\n", " name=u'',\n", " text=[u'2007 VE138
Radius: 17 meters
Velocity: 15.09 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.894737542387],\n", " y=[100.91011989744555],\n", " name=u'',\n", " text=[u'2013 WZ44
Radius: 17 meters
Velocity: 12.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3257378769217],\n", " y=[173.31055165400926],\n", " name=u'',\n", " text=[u'2008 HJ
Radius: 17 meters
Velocity: 7.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1653836503808],\n", " y=[13.089172650149333],\n", " name=u'',\n", " text=[u'2009 DD45
Radius: 17 meters
Velocity: 8.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.223877788422],\n", " y=[227.50348637848958],\n", " name=u'',\n", " text=[u'2012 FX35
Radius: 17 meters
Velocity: 5.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7385935100285],\n", " y=[161.17613838848956],\n", " name=u'',\n", " text=[u'2012 SY49
Radius: 17 meters
Velocity: 15.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,15,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1431960220793],\n", " y=[123.13554492376535],\n", " name=u'',\n", " text=[u'2014 DH6
Radius: 17 meters
Velocity: 17.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.104986846707],\n", " y=[134.45124978277852],\n", " name=u'',\n", " text=[u'2014 CR13
Radius: 17 meters
Velocity: 12.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9885592962607],\n", " y=[266.0941843975443],\n", " name=u'',\n", " text=[u'2010 AR1
Radius: 17 meters
Velocity: 6.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1307175007223],\n", " y=[111.2359260094749],\n", " name=u'',\n", " text=[u'2007 DS7
Radius: 17 meters
Velocity: 12.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.9860426835758],\n", " y=[32.57241244352544],\n", " name=u'',\n", " text=[u'2007 YP56
Radius: 17 meters
Velocity: 21.34 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,110,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3261161291305],\n", " y=[164.5995574288395],\n", " name=u'',\n", " text=[u'2012 HE31
Radius: 17 meters
Velocity: 10.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2531172543831],\n", " y=[204.10194991213115],\n", " name=u'',\n", " text=[u'2008 GE128
Radius: 17 meters
Velocity: 7.2 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.7378008287493745,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.113601113088],\n", " y=[295.88467900638824],\n", " name=u'',\n", " text=[u'2013 BS45
Radius: 17 meters
Velocity: 3.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(47,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2661089822545],\n", " y=[160.42186988171758],\n", " name=u'',\n", " text=[u'2008 GB21
Radius: 17 meters
Velocity: 9.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2055.896146009154],\n", " y=[291.35557805339255],\n", " name=u'',\n", " text=[u'2006 WV1
Radius: 17 meters
Velocity: 7.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7617790398856],\n", " y=[176.05384942023505],\n", " name=u'',\n", " text=[u'2010 TW149
Radius: 17 meters
Velocity: 17.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.760366771589],\n", " y=[161.94974520516266],\n", " name=u'',\n", " text=[u'2002 TZ66
Radius: 17 meters
Velocity: 5.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1371135745023],\n", " y=[209.85252130658907],\n", " name=u'',\n", " text=[u'2012 DF4
Radius: 17 meters
Velocity: 16.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,20,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9570541185774],\n", " y=[188.79507267023988],\n", " name=u'',\n", " text=[u'2012 XM16
Radius: 17 meters
Velocity: 13.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2667286316014],\n", " y=[174.12734651792033],\n", " name=u'',\n", " text=[u'2010 GF7
Radius: 17 meters
Velocity: 9.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.9116220367075],\n", " y=[261.9743679834275],\n", " name=u'',\n", " text=[u'2003 XK
Radius: 17 meters
Velocity: 19.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,78,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0339362559494],\n", " y=[83.73158447341268],\n", " name=u'',\n", " text=[u'2013 BL18
Radius: 17 meters
Velocity: 14.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2074.7414655657435],\n", " y=[244.98981550309057],\n", " name=u'',\n", " text=[u'2002 TZ66
Radius: 17 meters
Velocity: 5.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2032.0306707419065],\n", " y=[260.59144072466],\n", " name=u'',\n", " text=[u'2009 BF2
Radius: 17 meters
Velocity: 5.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2278998068823],\n", " y=[289.4481265818213],\n", " name=u'',\n", " text=[u'2009 FT23
Radius: 17 meters
Velocity: 15.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6901620211972],\n", " y=[138.00540001450514],\n", " name=u'',\n", " text=[u'2010 RM82
Radius: 17 meters
Velocity: 13.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=3.6595869074375615,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.363342609066],\n", " y=[43.83988167382956],\n", " name=u'',\n", " text=[u'2009 JL2
Radius: 16 meters
Velocity: 12.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.256483508964],\n", " y=[72.33653276766132],\n", " name=u'',\n", " text=[u'2012 FA57
Radius: 16 meters
Velocity: 9.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2083.230102793364],\n", " y=[298.29084844638646],\n", " name=u'',\n", " text=[u'2004 FG29
Radius: 16 meters
Velocity: 15.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0315317883917],\n", " y=[199.13178276891324],\n", " name=u'',\n", " text=[u'2011 AH5
Radius: 16 meters
Velocity: 9.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0316439335188],\n", " y=[238.9768482206161],\n", " name=u'',\n", " text=[u'2012 BO11
Radius: 16 meters
Velocity: 7.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.736675638277],\n", " y=[171.82078551831864],\n", " name=u'',\n", " text=[u'2003 SR84
Radius: 16 meters
Velocity: 10.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7990378328238],\n", " y=[229.42547904434895],\n", " name=u'',\n", " text=[u'2008 UF1
Radius: 16 meters
Velocity: 18.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,57,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2392150601402],\n", " y=[277.6144716530532],\n", " name=u'',\n", " text=[u'2013 EL89
Radius: 16 meters
Velocity: 8.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6780579505194],\n", " y=[290.8086670606626],\n", " name=u'',\n", " text=[u'2013 RQ5
Radius: 16 meters
Velocity: 22.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,133,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9937369797606],\n", " y=[158.88719696654454],\n", " name=u'',\n", " text=[u'2013 AC4
Radius: 16 meters
Velocity: 20.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,89,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2770383802442],\n", " y=[294.794859793496],\n", " name=u'',\n", " text=[u'2011 GE
Radius: 16 meters
Velocity: 9.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.3288361236562],\n", " y=[209.71521671500898],\n", " name=u'',\n", " text=[u'2013 JO7
Radius: 16 meters
Velocity: 5.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7772056475526],\n", " y=[41.072245059770225],\n", " name=u'',\n", " text=[u'2011 UT
Radius: 16 meters
Velocity: 10.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.4137660994784],\n", " y=[81.29971105170686],\n", " name=u'',\n", " text=[u'2003 LW2
Radius: 16 meters
Velocity: 8.13 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.622371242188],\n", " y=[281.1006063007635],\n", " name=u'',\n", " text=[u'2011 OJ45
Radius: 16 meters
Velocity: 6.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.267108784575],\n", " y=[69.55023166574738],\n", " name=u'',\n", " text=[u'2010 GA6
Radius: 16 meters
Velocity: 12.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2081.7221594969815],\n", " y=[228.5966343921227],\n", " name=u'',\n", " text=[u'2003 SR84
Radius: 16 meters
Velocity: 10.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2038.3643367090917],\n", " y=[128.51169003044433],\n", " name=u'',\n", " text=[u'1993 KA
Radius: 16 meters
Velocity: 4.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1011720116176],\n", " y=[272.38142540376265],\n", " name=u'',\n", " text=[u'2007 BZ48
Radius: 16 meters
Velocity: 8.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2018.2470424098658],\n", " y=[252.0756145638834],\n", " name=u'',\n", " text=[u'2004 FG29
Radius: 16 meters
Velocity: 14.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2031.5418719492725],\n", " y=[238.28731523453013],\n", " name=u'',\n", " text=[u'2011 AH5
Radius: 16 meters
Velocity: 9.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2059.370143545763],\n", " y=[138.38079894216347],\n", " name=u'',\n", " text=[u'2012 WS3
Radius: 16 meters
Velocity: 8.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.054399890516],\n", " y=[285.051554914394],\n", " name=u'',\n", " text=[u'2008 BN16
Radius: 16 meters
Velocity: 18.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.042436476438],\n", " y=[51.39146844043027],\n", " name=u'',\n", " text=[u'2001 BA16
Radius: 16 meters
Velocity: 5.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1086781320803],\n", " y=[92.58242975402217],\n", " name=u'',\n", " text=[u'2008 CF22
Radius: 16 meters
Velocity: 11.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.5848931924611134,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0604633304442],\n", " y=[131.4071049154727],\n", " name=u'',\n", " text=[u'2009 BE
Radius: 15 meters
Velocity: 11.67 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0512256131867],\n", " y=[120.3578344502613],\n", " name=u'',\n", " text=[u'2012 BF27
Radius: 15 meters
Velocity: 13.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2658637835866],\n", " y=[164.64884772308704],\n", " name=u'',\n", " text=[u'2011 GZ2
Radius: 15 meters
Velocity: 15.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.2366186153308],\n", " y=[37.57035288983165],\n", " name=u'',\n", " text=[u'2004 FY15
Radius: 15 meters
Velocity: 8.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.7142523151317],\n", " y=[255.15985308216656],\n", " name=u'',\n", " text=[u'2004 RN251
Radius: 15 meters
Velocity: 13.75 k..'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.8499954381643],\n", " y=[271.9368685303746],\n", " name=u'',\n", " text=[u'2002 VZ91
Radius: 15 meters
Velocity: 7.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1926634277634],\n", " y=[291.2061008803913],\n", " name=u'',\n", " text=[u'2007 FS3
Radius: 15 meters
Velocity: 7.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.1675353162113],\n", " y=[85.06139641417735],\n", " name=u'',\n", " text=[u'2003 DW10
Radius: 15 meters
Velocity: 7.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.145111993066],\n", " y=[183.32064102942644],\n", " name=u'',\n", " text=[u'2006 DR14
Radius: 15 meters
Velocity: 12.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1416754101851],\n", " y=[155.3539810828089],\n", " name=u'',\n", " text=[u'2012 DZ
Radius: 15 meters
Velocity: 16.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,26,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7401407326308],\n", " y=[169.91802814378073],\n", " name=u'',\n", " text=[u'2006 SN198
Radius: 15 meters
Velocity: 16.07 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,18,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8112673539833],\n", " y=[241.2481996477854],\n", " name=u'',\n", " text=[u'2005 UF
Radius: 15 meters
Velocity: 13.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3110582698478],\n", " y=[66.57714081911553],\n", " name=u'',\n", " text=[u'2009 HW67
Radius: 15 meters
Velocity: 23.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,138,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2004052430698],\n", " y=[142.62185479643503],\n", " name=u'',\n", " text=[u'2007 FS3
Radius: 15 meters
Velocity: 8.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2135.392295059532],\n", " y=[170.23953149150486],\n", " name=u'',\n", " text=[u'2012 LA11
Radius: 15 meters
Velocity: 3.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.0459414868544],\n", " y=[239.11312734614856],\n", " name=u'',\n", " text=[u'2004 BN41
Radius: 15 meters
Velocity: 6.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8148350896402],\n", " y=[111.78705780564727],\n", " name=u'',\n", " text=[u'2011 UC190
Radius: 15 meters
Velocity: 10.92 k..'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.8766517646702],\n", " y=[287.13736849020603],\n", " name=u'',\n", " text=[u'2004 WC1
Radius: 15 meters
Velocity: 6.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.12765917005],\n", " y=[172.3473603801574],\n", " name=u'',\n", " text=[u'2004 DF2
Radius: 15 meters
Velocity: 19.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,78,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2123.9969720815657],\n", " y=[176.8435377100422],\n", " name=u'',\n", " text=[u'2008 AF3
Radius: 15 meters
Velocity: 3.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7948884631176],\n", " y=[186.09238561605653],\n", " name=u'',\n", " text=[u'2007 TW24
Radius: 15 meters
Velocity: 12.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4348950017486],\n", " y=[191.88115912470212],\n", " name=u'',\n", " text=[u'2012 LA11
Radius: 15 meters
Velocity: 3.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8248046013716],\n", " y=[184.42131079296746],\n", " name=u'',\n", " text=[u'2007 VL3
Radius: 15 meters
Velocity: 12.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.833901662029],\n", " y=[214.71393366604806],\n", " name=u'',\n", " text=[u'2010 HW20
Radius: 15 meters
Velocity: 4.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0813698432248],\n", " y=[145.46494808811707],\n", " name=u'',\n", " text=[u'2012 CU
Radius: 15 meters
Velocity: 10.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.868271292368],\n", " y=[270.4447434622333],\n", " name=u'',\n", " text=[u'2012 WF
Radius: 15 meters
Velocity: 9.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8546941289176],\n", " y=[287.1692951861977],\n", " name=u'',\n", " text=[u'2012 VB5
Radius: 15 meters
Velocity: 16.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,31,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2061.4186624697777],\n", " y=[177.7487093699253],\n", " name=u'',\n", " text=[u'2012 LA11
Radius: 15 meters
Velocity: 3.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.414621443669],\n", " y=[110.65289630204889],\n", " name=u'',\n", " text=[u'2004 KF17
Radius: 15 meters
Velocity: 11.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.0317085595243],\n", " y=[62.364893269207904],\n", " name=u'',\n", " text=[u'2008 AF3
Radius: 15 meters
Velocity: 3.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9156953758193],\n", " y=[163.801150651146],\n", " name=u'',\n", " text=[u'2010 XA11
Radius: 15 meters
Velocity: 11.67 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=3.513561248436207,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7790322825906],\n", " y=[214.27240557174252],\n", " name=u'',\n", " text=[u'2012 TU231
Radius: 14 meters
Velocity: 10.16 k..'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8518334777914],\n", " y=[201.66166457428747],\n", " name=u'',\n", " text=[u'2013 VW13
Radius: 14 meters
Velocity: 16.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,28,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3987006371365],\n", " y=[232.12297584447694],\n", " name=u'',\n", " text=[u'2009 LD
Radius: 14 meters
Velocity: 6.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2017.9089438590088],\n", " y=[297.40561075185644],\n", " name=u'',\n", " text=[u'2010 VD139
Radius: 14 meters
Velocity: 5.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.3753516415006],\n", " y=[194.71852562046664],\n", " name=u'',\n", " text=[u'2004 JO20
Radius: 14 meters
Velocity: 12.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7593688700333],\n", " y=[101.47304335099008],\n", " name=u'',\n", " text=[u'2007 TL16
Radius: 14 meters
Velocity: 11.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8025485455348],\n", " y=[173.9086801632268],\n", " name=u'',\n", " text=[u'2005 UA1
Radius: 14 meters
Velocity: 14.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.0458996700272],\n", " y=[285.60374650528263],\n", " name=u'',\n", " text=[u'2002 AN129
Radius: 14 meters
Velocity: 11.84 k..'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0134041938477],\n", " y=[178.8317646279712],\n", " name=u'',\n", " text=[u'2013 AC53
Radius: 14 meters
Velocity: 6.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1985253866155],\n", " y=[100.31061184249882],\n", " name=u'',\n", " text=[u'2012 FG
Radius: 14 meters
Velocity: 15.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,12,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8667449781792],\n", " y=[192.12714408082994],\n", " name=u'',\n", " text=[u'2007 WJ3
Radius: 14 meters
Velocity: 11.77 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.960580037407],\n", " y=[116.41065911263324],\n", " name=u'',\n", " text=[u'2013 XH22
Radius: 14 meters
Velocity: 19.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,75,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.520902711251],\n", " y=[123.07380435023727],\n", " name=u'',\n", " text=[u'2005 ND63
Radius: 14 meters
Velocity: 8.06 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.863239967763],\n", " y=[160.7427206586722],\n", " name=u'',\n", " text=[u'2009 VX
Radius: 14 meters
Velocity: 14.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8169506409379],\n", " y=[124.2414378358854],\n", " name=u'',\n", " text=[u'2005 UE1
Radius: 14 meters
Velocity: 4.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.9556817663429],\n", " y=[98.73480309243072],\n", " name=u'',\n", " text=[u'2006 XR4
Radius: 14 meters
Velocity: 9.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1861894226236],\n", " y=[133.16662564389895],\n", " name=u'',\n", " text=[u'2008 EZ84
Radius: 14 meters
Velocity: 7.95 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9810873895656],\n", " y=[264.7976417709982],\n", " name=u'',\n", " text=[u'2010 XN69
Radius: 14 meters
Velocity: 8.2 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.66403220656],\n", " y=[265.12822484129185],\n", " name=u'',\n", " text=[u'2013 RY29
Radius: 14 meters
Velocity: 10.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.0876689779968],\n", " y=[168.96826714698645],\n", " name=u'',\n", " text=[u'2005 CM7
Radius: 14 meters
Velocity: 18.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,57,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2054.4113255173884],\n", " y=[285.9699217959225],\n", " name=u'',\n", " text=[u'2005 LU3
Radius: 14 meters
Velocity: 9.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.4239104815779],\n", " y=[300.2513463495676],\n", " name=u'',\n", " text=[u'2005 LU3
Radius: 14 meters
Velocity: 9.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.3378096345969],\n", " y=[238.78562760924254],\n", " name=u'',\n", " text=[u'2002 JU15
Radius: 14 meters
Velocity: 7.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2066.2665670665874],\n", " y=[177.5684257406736],\n", " name=u'',\n", " text=[u'2010 HF
Radius: 14 meters
Velocity: 5.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2041.3709418670073],\n", " y=[235.48483705360033],\n", " name=u'',\n", " text=[u'2007 WJ3
Radius: 14 meters
Velocity: 11.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2195.6515593874974],\n", " y=[192.991099975764],\n", " name=u'',\n", " text=[u'2007 SH
Radius: 14 meters
Velocity: 12.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.906972765841],\n", " y=[85.41955049588368],\n", " name=u'',\n", " text=[u'2008 WG96
Radius: 14 meters
Velocity: 15.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,15,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2997069020573],\n", " y=[143.76045009307524],\n", " name=u'',\n", " text=[u'2010 HF
Radius: 14 meters
Velocity: 5.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.897039368642],\n", " y=[93.78114693091945],\n", " name=u'',\n", " text=[u'2011 WN69
Radius: 14 meters
Velocity: 23.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,154,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.9590765323967],\n", " y=[51.5694866499652],\n", " name=u'',\n", " text=[u'2004 XB45
Radius: 14 meters
Velocity: 17.13 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=3.445439770745928,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.4057581770905],\n", " y=[176.63579029223934],\n", " name=u'',\n", " text=[u'2009 LA
Radius: 14 meters
Velocity: 10.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9845981022763],\n", " y=[264.25777217293864],\n", " name=u'',\n", " text=[u'2010 AH3
Radius: 14 meters
Velocity: 7.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.165442574092],\n", " y=[187.45332282190816],\n", " name=u'',\n", " text=[u'2008 DU22
Radius: 14 meters
Velocity: 10.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.161011891185],\n", " y=[116.41550472057719],\n", " name=u'',\n", " text=[u'2012 DS32
Radius: 14 meters
Velocity: 9.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8780944452049],\n", " y=[271.7468872454914],\n", " name=u'',\n", " text=[u'2012 VE77
Radius: 14 meters
Velocity: 15.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.750273710141],\n", " y=[197.74151894684974],\n", " name=u'',\n", " text=[u'2005 TH45
Radius: 14 meters
Velocity: 15.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,7,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2044.7285992883537],\n", " y=[76.26759245107615],\n", " name=u'',\n", " text=[u'2011 TO
Radius: 14 meters
Velocity: 8.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1066024968447],\n", " y=[112.60347256384446],\n", " name=u'',\n", " text=[u'2011 CZ3
Radius: 14 meters
Velocity: 13.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3185662910755],\n", " y=[72.59369375132242],\n", " name=u'',\n", " text=[u'2009 HK73
Radius: 14 meters
Velocity: 7.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2400038775604],\n", " y=[25.014742586185136],\n", " name=u'',\n", " text=[u'2008 FP
Radius: 14 meters
Velocity: 32.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,77)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.1746308714626],\n", " y=[89.47673365934834],\n", " name=u'',\n", " text=[u'2003 DY15
Radius: 14 meters
Velocity: 9.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2919308729834],\n", " y=[136.86387824958672],\n", " name=u'',\n", " text=[u'2013 HT14
Radius: 14 meters
Velocity: 21.15 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,107,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1073057798458],\n", " y=[155.89323520523646],\n", " name=u'',\n", " text=[u'2011 CZ3
Radius: 14 meters
Velocity: 13.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2019.3726069370314],\n", " y=[191.20079363915477],\n", " name=u'',\n", " text=[u'2012 KT12
Radius: 14 meters
Velocity: 3.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.9266228730442],\n", " y=[270.0646062445309],\n", " name=u'',\n", " text=[u'2005 XA
Radius: 14 meters
Velocity: 12.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3900977753449],\n", " y=[90.19885360862843],\n", " name=u'',\n", " text=[u'2012 KT12
Radius: 14 meters
Velocity: 3.77 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.244824217265],\n", " y=[72.24682857777633],\n", " name=u'',\n", " text=[u'2002 GQ
Radius: 14 meters
Velocity: 9.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9212456092332],\n", " y=[258.55368675184314],\n", " name=u'',\n", " text=[u'2011 WU74
Radius: 14 meters
Velocity: 17.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,47,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3209289418062],\n", " y=[135.1162852495562],\n", " name=u'',\n", " text=[u'2008 HC38
Radius: 14 meters
Velocity: 13.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7626666970789],\n", " y=[192.25162903473725],\n", " name=u'',\n", " text=[u'2012 TJ53
Radius: 14 meters
Velocity: 14.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.3269904809695],\n", " y=[180.22303248376505],\n", " name=u'',\n", " text=[u'2011 JM5
Radius: 14 meters
Velocity: 6.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.7241838115658],\n", " y=[64.69379656079924],\n", " name=u'',\n", " text=[u'2004 ST26
Radius: 14 meters
Velocity: 21.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,110,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2026.2780419840944],\n", " y=[45.42476483767886],\n", " name=u'',\n", " text=[u'2013 GM3
Radius: 14 meters
Velocity: 7.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.215339552636],\n", " y=[189.93945386662162],\n", " name=u'',\n", " text=[u'2004 FY1
Radius: 14 meters
Velocity: 15.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7384509526632],\n", " y=[21.078404566873466],\n", " name=u'',\n", " text=[u'2011 TO
Radius: 14 meters
Velocity: 8.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0237310493742],\n", " y=[167.88387658846506],\n", " name=u'',\n", " text=[u'2008 YV32
Radius: 14 meters
Velocity: 8.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8464315040371],\n", " y=[91.24151903151804],\n", " name=u'',\n", " text=[u'2012 VD5
Radius: 14 meters
Velocity: 11.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=3.380384264602884,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1751763909797],\n", " y=[55.0307919696248],\n", " name=u'',\n", " text=[u'2009 EW
Radius: 13 meters
Velocity: 12.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7904501771513],\n", " y=[185.15369534902763],\n", " name=u'',\n", " text=[u'2012 TQ146
Radius: 13 meters
Velocity: 9.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2053.6117516688714],\n", " y=[215.1118182785867],\n", " name=u'',\n", " text=[u'2012 MY2
Radius: 13 meters
Velocity: 3.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.677041041315],\n", " y=[256.20603701365206],\n", " name=u'',\n", " text=[u'2005 QP11
Radius: 13 meters
Velocity: 4.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.736616714566],\n", " y=[171.04732919252677],\n", " name=u'',\n", " text=[u'2012 SL50
Radius: 13 meters
Velocity: 12.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.491992077612],\n", " y=[78.44419408436063],\n", " name=u'',\n", " text=[u'2012 MY2
Radius: 13 meters
Velocity: 3.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2090784331615],\n", " y=[82.40779339800149],\n", " name=u'',\n", " text=[u'2007 EO88
Radius: 13 meters
Velocity: 10.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2941737755273],\n", " y=[296.42259698818935],\n", " name=u'',\n", " text=[u'2012 GW11
Radius: 13 meters
Velocity: 17.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.0989538190167],\n", " y=[65.89663916937845],\n", " name=u'',\n", " text=[u'2008 CE22
Radius: 13 meters
Velocity: 8.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4035570913736],\n", " y=[7.558749000346859],\n", " name=u'',\n", " text=[u'2012 KP24
Radius: 13 meters
Velocity: 13.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2076.485877317032],\n", " y=[103.42384889389771],\n", " name=u'',\n", " text=[u'2012 MY2
Radius: 13 meters
Velocity: 3.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.929914997795],\n", " y=[28.212902011177402],\n", " name=u'',\n", " text=[u'2003 XJ7
Radius: 13 meters
Velocity: 16.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,33,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2088921582044],\n", " y=[266.5718060481671],\n", " name=u'',\n", " text=[u'2007 EO88
Radius: 13 meters
Velocity: 10.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1394648206438],\n", " y=[52.971902037600415],\n", " name=u'',\n", " text=[u'2007 DN41
Radius: 13 meters
Velocity: 13.06 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2066.0853310372095],\n", " y=[153.59264140002725],\n", " name=u'',\n", " text=[u'2008 CE22
Radius: 13 meters
Velocity: 8.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2122.071451652145],\n", " y=[183.97572448310552],\n", " name=u'',\n", " text=[u'2008 CE22
Radius: 13 meters
Velocity: 8.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8415161260891],\n", " y=[162.22144955430207],\n", " name=u'',\n", " text=[u'2013 VG2
Radius: 13 meters
Velocity: 12.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.161184860788],\n", " y=[299.82803685169927],\n", " name=u'',\n", " text=[u'2011 DE5
Radius: 13 meters
Velocity: 15.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7078562413515],\n", " y=[188.11992485923085],\n", " name=u'',\n", " text=[u'2003 SL36
Radius: 13 meters
Velocity: 11.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1788467679394],\n", " y=[201.10251284734628],\n", " name=u'',\n", " text=[u'2011 EL40
Radius: 13 meters
Velocity: 17.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,49,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7413515198516],\n", " y=[250.69297699277],\n", " name=u'',\n", " text=[u'2013 TM69
Radius: 13 meters
Velocity: 9.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2155.701308106382],\n", " y=[145.66772085407965],\n", " name=u'',\n", " text=[u'2012 SL50
Radius: 13 meters
Velocity: 11.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.852802867874],\n", " y=[205.19114608738764],\n", " name=u'',\n", " text=[u'2005 VY1
Radius: 13 meters
Velocity: 6.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.701395541566],\n", " y=[63.71459376895088],\n", " name=u'',\n", " text=[u'2004 RU109
Radius: 13 meters
Velocity: 12.93 k..'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2042.9828722077764],\n", " y=[88.99889231742222],\n", " name=u'',\n", " text=[u'2012 AP10
Radius: 13 meters
Velocity: 3.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.3194178337362],\n", " y=[218.27504061838297],\n", " name=u'',\n", " text=[u'2003 JX2
Radius: 13 meters
Velocity: 8.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.7861050286635],\n", " y=[253.10959398159875],\n", " name=u'',\n", " text=[u'2005 TV51
Radius: 13 meters
Velocity: 9.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0627537521098],\n", " y=[112.29333826487978],\n", " name=u'',\n", " text=[u'2009 BH11
Radius: 13 meters
Velocity: 13.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9935754147468],\n", " y=[69.0163702431767],\n", " name=u'',\n", " text=[u'2012 AP10
Radius: 13 meters
Velocity: 3.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=3.3182567385564075,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1974647598192],\n", " y=[211.8061678841025],\n", " name=u'',\n", " text=[u'2013 EA29
Radius: 13 meters
Velocity: 14.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(246,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.1790178367776],\n", " y=[123.44255110872912],\n", " name=u'',\n", " text=[u'2006 EH1
Radius: 13 meters
Velocity: 12.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2065.931595273938],\n", " y=[223.4022667278626],\n", " name=u'',\n", " text=[u'2003 YN107
Radius: 13 meters
Velocity: 2.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(36,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2172.888641789456],\n", " y=[200.25559471510073],\n", " name=u'',\n", " text=[u'2003 YN107
Radius: 13 meters
Velocity: 2.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(39,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.1455833827533],\n", " y=[20.160617872328164],\n", " name=u'',\n", " text=[u'2006 DD1
Radius: 13 meters
Velocity: 17.23 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8314895914116],\n", " y=[298.2972899429149],\n", " name=u'',\n", " text=[u'2013 UJ9
Radius: 13 meters
Velocity: 9.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.722898894515],\n", " y=[96.8637192761957],\n", " name=u'',\n", " text=[u'2006 SO77
Radius: 13 meters
Velocity: 7.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.901319891124],\n", " y=[229.04320851430919],\n", " name=u'',\n", " text=[u'2006 WV29
Radius: 13 meters
Velocity: 16.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,26,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0398837492207],\n", " y=[131.550451065336],\n", " name=u'',\n", " text=[u'2006 BW7
Radius: 13 meters
Velocity: 9.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.794953089123],\n", " y=[287.3259806556464],\n", " name=u'',\n", " text=[u'2007 TH71
Radius: 13 meters
Velocity: 7.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.3050955704575],\n", " y=[167.6062215600686],\n", " name=u'',\n", " text=[u'2006 HE2
Radius: 13 meters
Velocity: 5.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3253482201237],\n", " y=[156.66613816734937],\n", " name=u'',\n", " text=[u'2008 JC
Radius: 13 meters
Velocity: 13.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2046.181827167252],\n", " y=[295.5256092694408],\n", " name=u'',\n", " text=[u'2012 DW60
Radius: 13 meters
Velocity: 5.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2029.7394697626326],\n", " y=[191.8157124292148],\n", " name=u'',\n", " text=[u'2006 HE2
Radius: 13 meters
Velocity: 4.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.760452306008],\n", " y=[100.19295643612206],\n", " name=u'',\n", " text=[u'2012 TE53
Radius: 13 meters
Velocity: 10.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.8682922007815],\n", " y=[116.9385458333214],\n", " name=u'',\n", " text=[u'2010 WD1
Radius: 13 meters
Velocity: 7.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1469728418715],\n", " y=[260.8511702286375],\n", " name=u'',\n", " text=[u'2010 DU1
Radius: 13 meters
Velocity: 14.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8652946945851],\n", " y=[79.941417880353],\n", " name=u'',\n", " text=[u'2010 VW194
Radius: 13 meters
Velocity: 7.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.5679751532016],\n", " y=[27.561177121698865],\n", " name=u'',\n", " text=[u'2011 OD18
Radius: 13 meters
Velocity: 9.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.192724252239],\n", " y=[152.29890923764864],\n", " name=u'',\n", " text=[u'2012 DW60
Radius: 13 meters
Velocity: 5.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7266700120128],\n", " y=[77.1082388921767],\n", " name=u'',\n", " text=[u'2011 SO189
Radius: 13 meters
Velocity: 13.05 k..'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7043360248165],\n", " y=[246.97341596361093],\n", " name=u'',\n", " text=[u'2003 SY4
Radius: 13 meters
Velocity: 10.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.4203902650427],\n", " y=[245.0144958414251],\n", " name=u'',\n", " text=[u'2005 LM3
Radius: 13 meters
Velocity: 8.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6875446679744],\n", " y=[135.45011791788633],\n", " name=u'',\n", " text=[u'2010 RS80
Radius: 13 meters
Velocity: 9.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3151316089595],\n", " y=[279.1176850542334],\n", " name=u'',\n", " text=[u'2009 HS44
Radius: 13 meters
Velocity: 18.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,52,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8558592977815],\n", " y=[188.85732455157554],\n", " name=u'',\n", " text=[u'2010 VO139
Radius: 13 meters
Velocity: 21.27 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,110,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7730809877894],\n", " y=[141.21830743292085],\n", " name=u'',\n", " text=[u'2010 TO55
Radius: 13 meters
Velocity: 6.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2123.3953971077963],\n", " y=[288.73048309193297],\n", " name=u'',\n", " text=[u'2003 YN107
Radius: 13 meters
Velocity: 2.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(36,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.88261826559],\n", " y=[219.95194249938598],\n", " name=u'',\n", " text=[u'2010 WD1
Radius: 13 meters
Velocity: 7.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7895701230175],\n", " y=[140.12979449755548],\n", " name=u'',\n", " text=[u'2006 UU17
Radius: 12 meters
Velocity: 9.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.055751334337],\n", " y=[147.59564401884018],\n", " name=u'',\n", " text=[u'2006 BY8
Radius: 12 meters
Velocity: 15.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0896400711647],\n", " y=[117.81651229899023],\n", " name=u'',\n", " text=[u'2014 BW32
Radius: 12 meters
Velocity: 7.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7852287760595],\n", " y=[267.78502811285597],\n", " name=u'',\n", " text=[u'2010 TG54
Radius: 12 meters
Velocity: 13.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.041102139501],\n", " y=[115.28244500933522],\n", " name=u'',\n", " text=[u'2013 AP72
Radius: 12 meters
Velocity: 8.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2117.3560645803873],\n", " y=[253.40848392159685],\n", " name=u'',\n", " text=[u'2013 KT1
Radius: 12 meters
Velocity: 5.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7394659611027],\n", " y=[211.6184483039753],\n", " name=u'',\n", " text=[u'2013 TG6
Radius: 12 meters
Velocity: 4.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(65,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9261267734137],\n", " y=[198.3149918320673],\n", " name=u'',\n", " text=[u'2010 XS45
Radius: 12 meters
Velocity: 12.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2127.7915564223044],\n", " y=[194.9203759484783],\n", " name=u'',\n", " text=[u'2004 UT1
Radius: 12 meters
Velocity: 6.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.9083907364322],\n", " y=[274.8318066574096],\n", " name=u'',\n", " text=[u'2003 WH98
Radius: 12 meters
Velocity: 7.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.8246734485956],\n", " y=[126.25971803647911],\n", " name=u'',\n", " text=[u'2004 UT1
Radius: 12 meters
Velocity: 6.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.067106503657],\n", " y=[157.05649229504732],\n", " name=u'',\n", " text=[u'2012 BA102
Radius: 12 meters
Velocity: 7.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7961144564572],\n", " y=[102.07224503919798],\n", " name=u'',\n", " text=[u'2013 UB
Radius: 12 meters
Velocity: 7.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7813588187887],\n", " y=[185.05527639191527],\n", " name=u'',\n", " text=[u'2013 TM127
Radius: 12 meters
Velocity: 11.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2022.8201173152077],\n", " y=[208.45927118040856],\n", " name=u'',\n", " text=[u'2004 UT1
Radius: 12 meters
Velocity: 6.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2023.7359286376839],\n", " y=[215.4469162810447],\n", " name=u'',\n", " text=[u'2013 TG6
Radius: 12 meters
Velocity: 4.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(65,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.8602557669205],\n", " y=[220.6260268183053],\n", " name=u'',\n", " text=[u'2006 VE13
Radius: 12 meters
Velocity: 12.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3935799765825],\n", " y=[83.30049014312405],\n", " name=u'',\n", " text=[u'2009 KW2
Radius: 12 meters
Velocity: 4.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.08144207229],\n", " y=[53.19164532135207],\n", " name=u'',\n", " text=[u'2008 BC15
Radius: 12 meters
Velocity: 20.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,99,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7705263598073],\n", " y=[12.191308567773536],\n", " name=u'',\n", " text=[u'2012 TM79
Radius: 12 meters
Velocity: 9.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.1821217858067],\n", " y=[46.84064917020634],\n", " name=u'',\n", " text=[u'2006 EC
Radius: 12 meters
Velocity: 7.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.3833348539451],\n", " y=[194.8652708806784],\n", " name=u'',\n", " text=[u'2013 KT1
Radius: 12 meters
Velocity: 5.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.7207301218011],\n", " y=[255.26577898335455],\n", " name=u'',\n", " text=[u'2004 SR26
Radius: 12 meters
Velocity: 5.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.652171433785],\n", " y=[145.9266694715302],\n", " name=u'',\n", " text=[u'2010 RZ11
Radius: 12 meters
Velocity: 14.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2089928987425],\n", " y=[14.784317244134996],\n", " name=u'',\n", " text=[u'2009 FH
Radius: 12 meters
Velocity: 6.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1936252147864],\n", " y=[140.16863406547893],\n", " name=u'',\n", " text=[u'2007 EN88
Radius: 12 meters
Velocity: 12.22 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6885045542326],\n", " y=[140.84862346208112],\n", " name=u'',\n", " text=[u'2010 SW3
Radius: 12 meters
Velocity: 7.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.017739838511],\n", " y=[62.55704552640092],\n", " name=u'',\n", " text=[u'2014 AK51
Radius: 12 meters
Velocity: 9.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7959909067408],\n", " y=[258.9371044186373],\n", " name=u'',\n", " text=[u'2012 UU158
Radius: 12 meters
Velocity: 11.95 k..'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.18919073035],\n", " y=[211.8238579378587],\n", " name=u'',\n", " text=[u'2009 EU
Radius: 12 meters
Velocity: 10.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=3.202264434617412,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.777416632453],\n", " y=[16.204493962415995],\n", " name=u'',\n", " text=[u'2012 TC4
Radius: 11 meters
Velocity: 7.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2144.8958380852455],\n", " y=[176.7373457340304],\n", " name=u'',\n", " text=[u'2003 XV
Radius: 11 meters
Velocity: 11.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1799910283898],\n", " y=[120.90851510688033],\n", " name=u'',\n", " text=[u'2008 EC32
Radius: 11 meters
Velocity: 16.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,31,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.721722321062],\n", " y=[206.82444042266388],\n", " name=u'',\n", " text=[u'2009 SP104
Radius: 11 meters
Velocity: 17.32 k..'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.437765156699],\n", " y=[208.91026591071918],\n", " name=u'',\n", " text=[u'2008 LB
Radius: 11 meters
Velocity: 11.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1449124127548],\n", " y=[43.722266231878486],\n", " name=u'',\n", " text=[u'2011 DU9
Radius: 11 meters
Velocity: 8.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3456103736144],\n", " y=[176.3211826994285],\n", " name=u'',\n", " text=[u'2008 JP24
Radius: 11 meters
Velocity: 6.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.2349022246551],\n", " y=[268.9872828830706],\n", " name=u'',\n", " text=[u'2003 FJ8
Radius: 11 meters
Velocity: 10.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2017.7757971807855],\n", " y=[21.91648892671028],\n", " name=u'',\n", " text=[u'2012 TC4
Radius: 11 meters
Velocity: 6.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2017.7807999939175],\n", " y=[252.03506316621466],\n", " name=u'',\n", " text=[u'2005 TE49
Radius: 11 meters
Velocity: 10.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2017.916877651567],\n", " y=[232.88239740990593],\n", " name=u'',\n", " text=[u'2008 WM61
Radius: 11 meters
Velocity: 4.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9290520505451],\n", " y=[70.3784089953247],\n", " name=u'',\n", " text=[u'2003 XV
Radius: 11 meters
Velocity: 11.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.414045511914],\n", " y=[47.989624597850124],\n", " name=u'',\n", " text=[u'2009 KR21
Radius: 11 meters
Velocity: 12.98 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.155419840944],\n", " y=[64.64380709985053],\n", " name=u'',\n", " text=[u'2009 DT43
Radius: 11 meters
Velocity: 13.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.906381627967],\n", " y=[212.2382709163102],\n", " name=u'',\n", " text=[u'2008 WM61
Radius: 11 meters
Velocity: 4.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.1479688426623],\n", " y=[37.21511948771834],\n", " name=u'',\n", " text=[u'2006 DM63
Radius: 11 meters
Velocity: 10.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.6124302419294],\n", " y=[184.1700959549024],\n", " name=u'',\n", " text=[u'2012 PZ17
Radius: 11 meters
Velocity: 3.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.844319754269],\n", " y=[92.05043684429265],\n", " name=u'',\n", " text=[u'2012 VT76
Radius: 11 meters
Velocity: 11.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2346760336359],\n", " y=[185.59359239769933],\n", " name=u'',\n", " text=[u'2010 FW9
Radius: 11 meters
Velocity: 8.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0392412906954],\n", " y=[138.3999736444202],\n", " name=u'',\n", " text=[u'2012 AQ10
Radius: 11 meters
Velocity: 7.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.9303350668308],\n", " y=[74.85701302521069],\n", " name=u'',\n", " text=[u'2003 XV
Radius: 11 meters
Velocity: 12.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7074741876131],\n", " y=[143.35405819496282],\n", " name=u'',\n", " text=[u'2013 RM73
Radius: 11 meters
Velocity: 9.9 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7678938004653],\n", " y=[63.10615505534767],\n", " name=u'',\n", " text=[u'2013 TL127
Radius: 11 meters
Velocity: 13.99 k..'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.6210863251372],\n", " y=[130.74252313831204],\n", " name=u'',\n", " text=[u'2004 PU42
Radius: 11 meters
Velocity: 10.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=3.148153621496883,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.871679363776],\n", " y=[44.569940434492544],\n", " name=u'',\n", " text=[u'2009 WP6
Radius: 11 meters
Velocity: 25.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,180,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.982073886532],\n", " y=[221.7246483203216],\n", " name=u'',\n", " text=[u'2008 YH30
Radius: 11 meters
Velocity: 10.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8248502197284],\n", " y=[43.46969797206651],\n", " name=u'',\n", " text=[u'2013 UV3
Radius: 11 meters
Velocity: 16.68 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,28,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.46607134711],\n", " y=[163.36697210577643],\n", " name=u'',\n", " text=[u'2006 MV1
Radius: 11 meters
Velocity: 5.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.6523634110365],\n", " y=[125.74516934658782],\n", " name=u'',\n", " text=[u'2003 QB30
Radius: 11 meters
Velocity: 11.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1583698280187],\n", " y=[246.97384423898941],\n", " name=u'',\n", " text=[u'2011 ED12
Radius: 11 meters
Velocity: 3.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(49,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.9369060109789],\n", " y=[139.3408393814417],\n", " name=u'',\n", " text=[u'2005 XX
Radius: 11 meters
Velocity: 9.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2174.3542075331115],\n", " y=[94.42712692732931],\n", " name=u'',\n", " text=[u'2010 KV39
Radius: 11 meters
Velocity: 10.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3850170308533],\n", " y=[208.88366750847445],\n", " name=u'',\n", " text=[u'2012 KW
Radius: 11 meters
Velocity: 10.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.8190357799979],\n", " y=[175.08991724783874],\n", " name=u'',\n", " text=[u'2003 UT55
Radius: 11 meters
Velocity: 9.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2057.766705822423],\n", " y=[303.4386272070258],\n", " name=u'',\n", " text=[u'2010 TB54
Radius: 11 meters
Velocity: 8.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.3716603561272],\n", " y=[60.40104865849829],\n", " name=u'',\n", " text=[u'2010 JL88
Radius: 11 meters
Velocity: 14.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.3979859495462],\n", " y=[46.72830419766149],\n", " name=u'',\n", " text=[u'2010 KV39
Radius: 11 meters
Velocity: 10.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2453184161307],\n", " y=[204.66933538953583],\n", " name=u'',\n", " text=[u'2009 FQ32
Radius: 11 meters
Velocity: 4.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2366604321578],\n", " y=[221.85780601066267],\n", " name=u'',\n", " text=[u'2012 GE
Radius: 11 meters
Velocity: 10.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.4683503641866],\n", " y=[152.78499013598812],\n", " name=u'',\n", " text=[u'2006 MV1
Radius: 11 meters
Velocity: 5.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7332162462176],\n", " y=[118.4007641699952],\n", " name=u'',\n", " text=[u'2010 TD
Radius: 11 meters
Velocity: 18.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1914982588994],\n", " y=[153.45867683818076],\n", " name=u'',\n", " text=[u'2010 FD6
Radius: 11 meters
Velocity: 10.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.788832626249],\n", " y=[133.02165779443192],\n", " name=u'',\n", " text=[u'2010 UK
Radius: 11 meters
Velocity: 6.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1431028846007],\n", " y=[231.13551310856855],\n", " name=u'',\n", " text=[u'2010 DE2
Radius: 11 meters
Velocity: 5.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1339183887596],\n", " y=[197.91745253795872],\n", " name=u'',\n", " text=[u'2010 CJ18
Radius: 11 meters
Velocity: 8.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1458342837157],\n", " y=[129.39242818707902],\n", " name=u'',\n", " text=[u'2009 DM40
Radius: 11 meters
Velocity: 8.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.1490047595153],\n", " y=[298.59435399667046],\n", " name=u'',\n", " text=[u'2005 ES1
Radius: 11 meters
Velocity: 5.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.3857545276219],\n", " y=[290.4783755167146],\n", " name=u'',\n", " text=[u'2013 KS1
Radius: 11 meters
Velocity: 9.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9290767604884],\n", " y=[273.89989962632563],\n", " name=u'',\n", " text=[u'2010 XA25
Radius: 11 meters
Velocity: 7.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.294552027736],\n", " y=[47.358134711887296],\n", " name=u'',\n", " text=[u'2004 HE
Radius: 11 meters
Velocity: 18.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,57,0)',\n", " size=3.0964781961431846,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2103.159529294588],\n", " y=[208.48289378245676],\n", " name=u'',\n", " text=[u'2012 EA
Radius: 10 meters
Velocity: 5.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2051.199051898484],\n", " y=[228.04329825268783],\n", " name=u'',\n", " text=[u'2005 FN
Radius: 10 meters
Velocity: 10.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.130719401487],\n", " y=[125.3603123510606],\n", " name=u'',\n", " text=[u'2011 DS
Radius: 10 meters
Velocity: 6.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2089586849747],\n", " y=[96.46784409779316],\n", " name=u'',\n", " text=[u'2010 FU9
Radius: 10 meters
Velocity: 10.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1522607697336],\n", " y=[146.1611025957177],\n", " name=u'',\n", " text=[u'2011 EB
Radius: 10 meters
Velocity: 10.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9098448215561],\n", " y=[35.755360270423495],\n", " name=u'',\n", " text=[u'2010 XR
Radius: 10 meters
Velocity: 19.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,81,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2020.7517943220353],\n", " y=[193.8197343662502],\n", " name=u'',\n", " text=[u'2001 GP2
Radius: 10 meters
Velocity: 2.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(36,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1408238675242],\n", " y=[61.25639152391832],\n", " name=u'',\n", " text=[u'2010 DJ1
Radius: 10 meters
Velocity: 19.98 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,86,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.202716573149],\n", " y=[55.47421676242926],\n", " name=u'',\n", " text=[u'2011 EB74
Radius: 10 meters
Velocity: 7.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.127862551891],\n", " y=[291.14031750788865],\n", " name=u'',\n", " text=[u'2008 CB6
Radius: 10 meters
Velocity: 7.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7733642017547],\n", " y=[59.00418115875287],\n", " name=u'',\n", " text=[u'2010 TN55
Radius: 10 meters
Velocity: 25.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,180,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.1070187643509],\n", " y=[72.94773754781212],\n", " name=u'',\n", " text=[u'2002 CB26
Radius: 10 meters
Velocity: 22.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,128,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.958124249198],\n", " y=[210.74882190346727],\n", " name=u'',\n", " text=[u'2005 YK
Radius: 10 meters
Velocity: 9.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.0312979943128],\n", " y=[240.6312480744077],\n", " name=u'',\n", " text=[u'2010 AN60
Radius: 10 meters
Velocity: 12.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8431222724025],\n", " y=[267.2419780264849],\n", " name=u'',\n", " text=[u'2008 VC
Radius: 10 meters
Velocity: 4.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8750494198866],\n", " y=[223.35585733515785],\n", " name=u'',\n", " text=[u'2009 WX7
Radius: 10 meters
Velocity: 7.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1488679044448],\n", " y=[137.60532758674506],\n", " name=u'',\n", " text=[u'2009 DU10
Radius: 10 meters
Velocity: 8.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4678029439046],\n", " y=[49.52051418945727],\n", " name=u'',\n", " text=[u'2012 MF7
Radius: 10 meters
Velocity: 8.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1675448200356],\n", " y=[159.78569558768606],\n", " name=u'',\n", " text=[u'2012 EA
Radius: 10 meters
Velocity: 5.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.6932070465155],\n", " y=[298.1127649345402],\n", " name=u'',\n", " text=[u'2012 RT16
Radius: 10 meters
Velocity: 10.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.2111806791054],\n", " y=[24.297632033036813],\n", " name=u'',\n", " text=[u'2005 FN
Radius: 10 meters
Velocity: 10.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.4635300244818],\n", " y=[156.71589672658814],\n", " name=u'',\n", " text=[u'2011 MX
Radius: 10 meters
Velocity: 12.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.417915469185],\n", " y=[228.1629635169621],\n", " name=u'',\n", " text=[u'2011 KE15
Radius: 10 meters
Velocity: 8.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9393789060719],\n", " y=[146.31806458718057],\n", " name=u'',\n", " text=[u'2012 XJ112
Radius: 10 meters
Velocity: 11.04 k..'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8743879537126],\n", " y=[149.18567261866946],\n", " name=u'',\n", " text=[u'2012 VS76
Radius: 10 meters
Velocity: 11.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.953851329775],\n", " y=[107.68077346613535],\n", " name=u'',\n", " text=[u'2012 XH112
Radius: 10 meters
Velocity: 14.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.4700477472136],\n", " y=[116.3574559742064],\n", " name=u'',\n", " text=[u'2005 MA
Radius: 10 meters
Velocity: 13.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8951614129526],\n", " y=[200.79047621315502],\n", " name=u'',\n", " text=[u'2005 WX
Radius: 10 meters
Velocity: 5.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=3.0471285480509,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.942292778614],\n", " y=[257.2514562237212],\n", " name=u'',\n", " text=[u'2012 XL55
Radius: 10 meters
Velocity: 18.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,65,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7981140610982],\n", " y=[92.83166580446589],\n", " name=u'',\n", " text=[u'2008 UR2
Radius: 10 meters
Velocity: 9.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.1040934872192],\n", " y=[122.5716057685738],\n", " name=u'',\n", " text=[u'2005 VL1
Radius: 10 meters
Velocity: 6.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1590484010767],\n", " y=[182.10036210121754],\n", " name=u'',\n", " text=[u'2013 EV27
Radius: 10 meters
Velocity: 12.53 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.857488253273],\n", " y=[110.98212697992858],\n", " name=u'',\n", " text=[u'2012 VQ6
Radius: 10 meters
Velocity: 12.95 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1160721074161],\n", " y=[111.62510671479839],\n", " name=u'',\n", " text=[u'2007 CC19
Radius: 10 meters
Velocity: 18.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,68,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.5387033742377],\n", " y=[27.281941748416838],\n", " name=u'',\n", " text=[u'2004 OD4
Radius: 10 meters
Velocity: 8.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0366619527697],\n", " y=[139.5582781491237],\n", " name=u'',\n", " text=[u'2013 BM18
Radius: 10 meters
Velocity: 8.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1124340434592],\n", " y=[57.81212699031891],\n", " name=u'',\n", " text=[u'2007 CC27
Radius: 10 meters
Velocity: 10.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.3235710049723],\n", " y=[58.110269263479985],\n", " name=u'',\n", " text=[u'2003 HW10
Radius: 10 meters
Velocity: 13.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1638535346624],\n", " y=[194.10171934528546],\n", " name=u'',\n", " text=[u'2014 EL
Radius: 10 meters
Velocity: 12.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.18408717668],\n", " y=[29.019430652195098],\n", " name=u'',\n", " text=[u'2008 EZ7
Radius: 10 meters
Velocity: 8.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2074.148387010933],\n", " y=[273.62363273972693],\n", " name=u'',\n", " text=[u'2014 EL
Radius: 10 meters
Velocity: 12.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8372698173746],\n", " y=[276.24556880494447],\n", " name=u'',\n", " text=[u'2008 UC7
Radius: 10 meters
Velocity: 12.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2049.0849242735276],\n", " y=[124.05753038853965],\n", " name=u'',\n", " text=[u'2005 VL1
Radius: 10 meters
Velocity: 6.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2922444991864],\n", " y=[77.81393092152213],\n", " name=u'',\n", " text=[u'2012 HG2
Radius: 10 meters
Velocity: 3.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6745187263355],\n", " y=[156.36472580008623],\n", " name=u'',\n", " text=[u'2010 RB12
Radius: 10 meters
Velocity: 13.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.711703389444],\n", " y=[276.43275154303535],\n", " name=u'',\n", " text=[u'2013 SW19
Radius: 10 meters
Velocity: 8.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.3476479935525],\n", " y=[110.53647718547879],\n", " name=u'',\n", " text=[u'2010 JA
Radius: 10 meters
Velocity: 8.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.863283685355],\n", " y=[81.8825279582948],\n", " name=u'',\n", " text=[u'2005 VN5
Radius: 10 meters
Velocity: 6.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6982934933017],\n", " y=[180.64704718188915],\n", " name=u'',\n", " text=[u'2013 RS43
Radius: 10 meters
Velocity: 5.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2047.1057319465353],\n", " y=[17.36274302391464],\n", " name=u'',\n", " text=[u'2012 HG2
Radius: 10 meters
Velocity: 4.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=3,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.193127214391],\n", " y=[269.12847756600297],\n", " name=u'',\n", " text=[u'2010 FM
Radius: 10 meters
Velocity: 6.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2024.9398122804616],\n", " y=[69.77687773005704],\n", " name=u'',\n", " text=[u'2007 XB23
Radius: 10 meters
Velocity: 4.77 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.2309885497925],\n", " y=[112.40303763678783],\n", " name=u'',\n", " text=[u'2004 FM32
Radius: 10 meters
Velocity: 4.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.050645879902],\n", " y=[57.521846177035734],\n", " name=u'',\n", " text=[u'2011 BY10
Radius: 10 meters
Velocity: 7.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.9716614965862],\n", " y=[293.846911155391],\n", " name=u'',\n", " text=[u'2006 XZ2
Radius: 10 meters
Velocity: 9.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0348676307347],\n", " y=[249.4228477475726],\n", " name=u'',\n", " text=[u'2011 AY22
Radius: 10 meters
Velocity: 13.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.0357628909874],\n", " y=[163.04252899714663],\n", " name=u'',\n", " text=[u'2010 AG30
Radius: 10 meters
Velocity: 18.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.3877465292032],\n", " y=[31.087774008800377],\n", " name=u'',\n", " text=[u'2010 KO10
Radius: 10 meters
Velocity: 11.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2059.71787517297],\n", " y=[263.6791785950191],\n", " name=u'',\n", " text=[u'2008 ST
Radius: 10 meters
Velocity: 3.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(47,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0802597965421],\n", " y=[37.82478559940706],\n", " name=u'',\n", " text=[u'2011 CA4
Radius: 10 meters
Velocity: 6.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0558957924668],\n", " y=[281.9043707767378],\n", " name=u'',\n", " text=[u'2009 BJ2
Radius: 10 meters
Velocity: 9.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7407489773884],\n", " y=[243.86135473371152],\n", " name=u'',\n", " text=[u'2008 ST
Radius: 10 meters
Velocity: 3.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(47,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.9462672779528],\n", " y=[18.680761687190213],\n", " name=u'',\n", " text=[u'2007 XB23
Radius: 10 meters
Velocity: 5.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0828125237595],\n", " y=[89.03809442688761],\n", " name=u'',\n", " text=[u'2014 CE
Radius: 10 meters
Velocity: 13.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.5734075391938],\n", " y=[33.551185085951026],\n", " name=u'',\n", " text=[u'2008 OT7
Radius: 10 meters
Velocity: 9.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8968911089823],\n", " y=[29.12218408846339],\n", " name=u'',\n", " text=[u'2009 WV51
Radius: 10 meters
Velocity: 13.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.2287475480134],\n", " y=[294.78824983095575],\n", " name=u'',\n", " text=[u'2004 FN8
Radius: 10 meters
Velocity: 3.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.556583869349],\n", " y=[47.77215672525802],\n", " name=u'',\n", " text=[u'2006 OK3
Radius: 10 meters
Velocity: 14.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(249,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2536912853732],\n", " y=[222.6091338295188],\n", " name=u'',\n", " text=[u'2012 FH58
Radius: 10 meters
Velocity: 9.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1837203290604],\n", " y=[183.01345276848414],\n", " name=u'',\n", " text=[u'2008 EG32
Radius: 10 meters
Velocity: 9.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.76991051199],\n", " y=[262.27444582772614],\n", " name=u'',\n", " text=[u'2010 UH
Radius: 10 meters
Velocity: 6.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6840301537338],\n", " y=[39.04551630350885],\n", " name=u'',\n", " text=[u'2010 RX30
Radius: 10 meters
Velocity: 10.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.801482216444],\n", " y=[148.59604953228578],\n", " name=u'',\n", " text=[u'2013 UT3
Radius: 10 meters
Velocity: 16.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,28,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.138398491553],\n", " y=[123.8313850470956],\n", " name=u'',\n", " text=[u'2012 DX
Radius: 10 meters
Velocity: 10.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9717565348296],\n", " y=[172.069214363424],\n", " name=u'',\n", " text=[u'2010 XO69
Radius: 10 meters
Velocity: 7.1 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.341231011359],\n", " y=[52.146467448030556],\n", " name=u'',\n", " text=[u'2009 JF1
Radius: 10 meters
Velocity: 24.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,157,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2132.6506071042986],\n", " y=[245.940331379221],\n", " name=u'',\n", " text=[u'2010 RX30
Radius: 10 meters
Velocity: 9.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.9064443532077],\n", " y=[126.67877793952384],\n", " name=u'',\n", " text=[u'2005 WY
Radius: 10 meters
Velocity: 8.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=2.9549925860214348,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0950648540972],\n", " y=[221.36990841528458],\n", " name=u'',\n", " text=[u'2012 CQ46
Radius: 9 meters
Velocity: 12.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.8877009108464],\n", " y=[56.184661966611415],\n", " name=u'',\n", " text=[u'2006 WV
Radius: 9 meters
Velocity: 14.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(249,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0278633121968],\n", " y=[155.68101688100379],\n", " name=u'',\n", " text=[u'2013 BY2
Radius: 9 meters
Velocity: 11.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2034.7465710201786],\n", " y=[151.40495313328958],\n", " name=u'',\n", " text=[u'2005 TA
Radius: 9 meters
Velocity: 5.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2082.091820248468],\n", " y=[108.36942003152353],\n", " name=u'',\n", " text=[u'2013 PS13
Radius: 9 meters
Velocity: 17.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8260686100086],\n", " y=[36.67441694363716],\n", " name=u'',\n", " text=[u'2007 US51
Radius: 9 meters
Velocity: 15.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0832611042683],\n", " y=[78.39904534095271],\n", " name=u'',\n", " text=[u'2006 BH99
Radius: 9 meters
Velocity: 17.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,49,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.0329345528642],\n", " y=[21.619504023640314],\n", " name=u'',\n", " text=[u'2010 AL30
Radius: 9 meters
Velocity: 9.95 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0658329911957],\n", " y=[105.45426471130705],\n", " name=u'',\n", " text=[u'2012 BW13
Radius: 9 meters
Velocity: 11.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1462372458677],\n", " y=[170.0051626432919],\n", " name=u'',\n", " text=[u'2014 DK23
Radius: 9 meters
Velocity: 7.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7059478734243],\n", " y=[283.7011272984595],\n", " name=u'',\n", " text=[u'2006 RH2
Radius: 9 meters
Velocity: 6.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.7553848668704],\n", " y=[125.29997493114395],\n", " name=u'',\n", " text=[u'2005 TA
Radius: 9 meters
Velocity: 5.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1079919559631],\n", " y=[238.427780403927],\n", " name=u'',\n", " text=[u'2008 CD70
Radius: 9 meters
Velocity: 6.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9138687407813],\n", " y=[223.53126313923283],\n", " name=u'',\n", " text=[u'2010 XX
Radius: 9 meters
Velocity: 8.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.3851196721562],\n", " y=[193.89494907739822],\n", " name=u'',\n", " text=[u'2013 KB
Radius: 9 meters
Velocity: 6.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.9282727369493],\n", " y=[91.02880484046713],\n", " name=u'',\n", " text=[u'2008 XK
Radius: 9 meters
Velocity: 14.15 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8000243297904],\n", " y=[123.4015623605791],\n", " name=u'',\n", " text=[u'2009 UD
Radius: 9 meters
Velocity: 3.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(63,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.719291242796],\n", " y=[90.91148340441495],\n", " name=u'',\n", " text=[u'2008 ST1
Radius: 9 meters
Velocity: 7.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2113517479434],\n", " y=[111.90023329873951],\n", " name=u'',\n", " text=[u'2013 FU13
Radius: 9 meters
Velocity: 5.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.31706468683],\n", " y=[167.58110146973323],\n", " name=u'',\n", " text=[u'2004 HT59
Radius: 9 meters
Velocity: 8.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.187723339872],\n", " y=[100.50315940627839],\n", " name=u'',\n", " text=[u'2011 EU20
Radius: 9 meters
Velocity: 9.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6012670498608],\n", " y=[33.4288215036734],\n", " name=u'',\n", " text=[u'2013 PS13
Radius: 9 meters
Velocity: 17.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2097.779237565196],\n", " y=[224.86187666797028],\n", " name=u'',\n", " text=[u'2009 UD
Radius: 9 meters
Velocity: 3.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(60,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2102.0097452214773],\n", " y=[292.7491117522197],\n", " name=u'',\n", " text=[u'2010 AL30
Radius: 9 meters
Velocity: 10.03 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.157691254961],\n", " y=[65.52756002495143],\n", " name=u'',\n", " text=[u'2013 EB
Radius: 9 meters
Velocity: 13.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8936141903503],\n", " y=[91.33403342140006],\n", " name=u'',\n", " text=[u'2011 WP4
Radius: 9 meters
Velocity: 10.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=2.9120108393559097,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.745632042334],\n", " y=[134.54133305344672],\n", " name=u'',\n", " text=[u'2013 TP4
Radius: 9 meters
Velocity: 25.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,175,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2016654501772],\n", " y=[85.14414085909269],\n", " name=u'',\n", " text=[u'2012 EN5
Radius: 9 meters
Velocity: 9.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2089.7630297431688],\n", " y=[153.1278493661391],\n", " name=u'',\n", " text=[u'2005 TC51
Radius: 9 meters
Velocity: 9.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7686959232394],\n", " y=[53.0478035699271],\n", " name=u'',\n", " text=[u'2009 TU
Radius: 9 meters
Velocity: 15.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9427755728905],\n", " y=[70.93171179518697],\n", " name=u'',\n", " text=[u'2013 XT21
Radius: 9 meters
Velocity: 13.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7416594437602],\n", " y=[269.3409378527099],\n", " name=u'',\n", " text=[u'2008 TE2
Radius: 9 meters
Velocity: 4.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2002.097898894515],\n", " y=[156.64317768759483],\n", " name=u'',\n", " text=[u'2002 CA26
Radius: 9 meters
Velocity: 15.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,5,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2233550780834],\n", " y=[48.5438244603551],\n", " name=u'',\n", " text=[u'2008 FK
Radius: 9 meters
Velocity: 13.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.864032586713],\n", " y=[31.838475292927512],\n", " name=u'',\n", " text=[u'2012 VH77
Radius: 9 meters
Velocity: 11.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.7858332192875],\n", " y=[91.36226630045239],\n", " name=u'',\n", " text=[u'2005 TC51
Radius: 9 meters
Velocity: 9.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0593266730532],\n", " y=[149.87296674546022],\n", " name=u'',\n", " text=[u'2009 BF58
Radius: 9 meters
Velocity: 6.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.212509313748],\n", " y=[225.13363827007225],\n", " name=u'',\n", " text=[u'2012 FM35
Radius: 9 meters
Velocity: 3.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(49,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2060.0351299362865],\n", " y=[133.02562965985706],\n", " name=u'',\n", " text=[u'2006 YE
Radius: 9 meters
Velocity: 6.22 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2067.7000041816827],\n", " y=[229.77835672753164],\n", " name=u'',\n", " text=[u'2012 FM35
Radius: 9 meters
Velocity: 3.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.6469709411067],\n", " y=[214.65088474455766],\n", " name=u'',\n", " text=[u'2012 QH14
Radius: 9 meters
Velocity: 10.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.5113589708499],\n", " y=[125.43891424659517],\n", " name=u'',\n", " text=[u'2013 NE24
Radius: 9 meters
Velocity: 11.76 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6885520733542],\n", " y=[97.87888448703572],\n", " name=u'',\n", " text=[u'2013 RS73
Radius: 9 meters
Velocity: 14.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2526553685202],\n", " y=[122.6844491350447],\n", " name=u'',\n", " text=[u'2010 GH7
Radius: 9 meters
Velocity: 5.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0532157140033],\n", " y=[279.24134337627584],\n", " name=u'',\n", " text=[u'2013 BT15
Radius: 9 meters
Velocity: 6.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7914860940043],\n", " y=[61.06530391715351],\n", " name=u'',\n", " text=[u'2007 UO6
Radius: 9 meters
Velocity: 11.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0246301111567],\n", " y=[113.0869430206283],\n", " name=u'',\n", " text=[u'2013 AG69
Radius: 9 meters
Velocity: 17.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.5686784362026],\n", " y=[176.0995763879778],\n", " name=u'',\n", " text=[u'2008 OY2
Radius: 9 meters
Velocity: 9.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.066534373432],\n", " y=[237.99062531874105],\n", " name=u'',\n", " text=[u'2014 BP8
Radius: 9 meters
Velocity: 9.34 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.8709635899560806,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1741632833052],\n", " y=[112.16614820629331],\n", " name=u'',\n", " text=[u'2011 EO11
Radius: 8 meters
Velocity: 11.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.5122523303378],\n", " y=[239.77947174370746],\n", " name=u'',\n", " text=[u'2013 NJ4
Radius: 8 meters
Velocity: 5.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8187943828596],\n", " y=[156.64583919673547],\n", " name=u'',\n", " text=[u'2010 UR7
Radius: 8 meters
Velocity: 13.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7402699846418],\n", " y=[139.7906039081611],\n", " name=u'',\n", " text=[u'2013 SK20
Radius: 8 meters
Velocity: 11.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7839077444764],\n", " y=[142.31911707792682],\n", " name=u'',\n", " text=[u'2010 UC
Radius: 8 meters
Velocity: 2.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6404722260238],\n", " y=[75.91917387840827],\n", " name=u'',\n", " text=[u'2013 QM48
Radius: 8 meters
Velocity: 7.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8208224989735],\n", " y=[28.532566483090225],\n", " name=u'',\n", " text=[u'2011 UX255
Radius: 8 meters
Velocity: 26.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,207,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8362358012864],\n", " y=[90.71391340909062],\n", " name=u'',\n", " text=[u'2008 UT95
Radius: 8 meters
Velocity: 14.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(246,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7449458662165],\n", " y=[45.13170609216524],\n", " name=u'',\n", " text=[u'2010 SK13
Radius: 8 meters
Velocity: 18.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,62,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8386915894955],\n", " y=[80.10517916932955],\n", " name=u'',\n", " text=[u'2013 VN5
Radius: 8 meters
Velocity: 9.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.044624256801],\n", " y=[148.2046713577295],\n", " name=u'',\n", " text=[u'2009 BS5
Radius: 8 meters
Velocity: 5.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2077.2885684199323],\n", " y=[307.1530952291359],\n", " name=u'',\n", " text=[u'2014 AD16
Radius: 8 meters
Velocity: 8.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.02084758907],\n", " y=[248.73803806783897],\n", " name=u'',\n", " text=[u'2014 AE29
Radius: 8 meters
Velocity: 4.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0240560801667],\n", " y=[225.3040208459298],\n", " name=u'',\n", " text=[u'2009 BS5
Radius: 8 meters
Velocity: 5.53 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0361050286635],\n", " y=[261.34015502232825],\n", " name=u'',\n", " text=[u'2012 BK14
Radius: 8 meters
Velocity: 5.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.6337017015646],\n", " y=[207.5616972913397],\n", " name=u'',\n", " text=[u'2009 QR
Radius: 8 meters
Velocity: 5.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.887104070678],\n", " y=[123.80403512179106],\n", " name=u'',\n", " text=[u'2011 WQ4
Radius: 8 meters
Velocity: 7.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.017884296641],\n", " y=[92.27458274822636],\n", " name=u'',\n", " text=[u'2014 AD16
Radius: 8 meters
Velocity: 8.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8600751942581],\n", " y=[87.45576739617835],\n", " name=u'',\n", " text=[u'2013 VD17
Radius: 8 meters
Velocity: 11.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8838100451621],\n", " y=[178.0376711603989],\n", " name=u'',\n", " text=[u'2013 WZ107
Radius: 8 meters
Velocity: 6.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2001.8882103158312],\n", " y=[128.3229060683834],\n", " name=u'',\n", " text=[u'2001 WJ4
Radius: 8 meters
Velocity: 5.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8849448017882],\n", " y=[34.99358886315353],\n", " name=u'',\n", " text=[u'2009 WJ6
Radius: 8 meters
Velocity: 18.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,54,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2063.8727742043397],\n", " y=[235.62963260798222],\n", " name=u'',\n", " text=[u'2009 WJ6
Radius: 8 meters
Velocity: 17.82 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,49,0)',\n", " size=2.831763771102672,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8273212140566],\n", " y=[33.69904375310276],\n", " name=u'',\n", " text=[u'2005 UW5
Radius: 8 meters
Velocity: 9.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.3275854203732],\n", " y=[203.41132070547383],\n", " name=u'',\n", " text=[u'2011 HP4
Radius: 8 meters
Velocity: 14.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7413001992002],\n", " y=[167.4267045200725],\n", " name=u'',\n", " text=[u'2008 TL
Radius: 8 meters
Velocity: 11.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2076.8084580235086],\n", " y=[88.57028412578764],\n", " name=u'',\n", " text=[u'2005 UW5
Radius: 8 meters
Velocity: 9.72 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.024641515746],\n", " y=[33.15455048015293],\n", " name=u'',\n", " text=[u'2014 AW32
Radius: 8 meters
Velocity: 12.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2081.007730410717],\n", " y=[280.0787036437754],\n", " name=u'',\n", " text=[u'2014 AW32
Radius: 8 meters
Velocity: 11.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.715470705412],\n", " y=[108.90930298723583],\n", " name=u'',\n", " text=[u'2012 SW2
Radius: 8 meters
Velocity: 16.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,20,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0734075391938],\n", " y=[198.2630802933166],\n", " name=u'',\n", " text=[u'2014 BK25
Radius: 8 meters
Velocity: 11.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.3062778462054],\n", " y=[84.32409663511224],\n", " name=u'',\n", " text=[u'2009 HJ21
Radius: 8 meters
Velocity: 20.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,94,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2939855998054],\n", " y=[42.20062516924894],\n", " name=u'',\n", " text=[u'2010 HP20
Radius: 8 meters
Velocity: 11.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1034263187507],\n", " y=[97.13997644829934],\n", " name=u'',\n", " text=[u'2007 DC
Radius: 8 meters
Velocity: 6.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.744362331402],\n", " y=[228.54677276550328],\n", " name=u'',\n", " text=[u'2010 TN4
Radius: 8 meters
Velocity: 7.67 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.0346927603669],\n", " y=[47.87044185627227],\n", " name=u'',\n", " text=[u'2005 BS1
Radius: 8 meters
Velocity: 12.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2103.161418654867],\n", " y=[249.8492832372842],\n", " name=u'',\n", " text=[u'2012 DH54
Radius: 8 meters
Velocity: 4.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1890082569225],\n", " y=[39.38851616080155],\n", " name=u'',\n", " text=[u'2008 EM68
Radius: 8 meters
Velocity: 18.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,65,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1866113924243],\n", " y=[204.80515574424422],\n", " name=u'',\n", " text=[u'2012 DH54
Radius: 8 meters
Velocity: 4.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7498859541079],\n", " y=[301.0182829686233],\n", " name=u'',\n", " text=[u'2013 TQ4
Radius: 8 meters
Velocity: 6.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7462687985646],\n", " y=[213.99498734029748],\n", " name=u'',\n", " text=[u'2003 SM215
Radius: 8 meters
Velocity: 10.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2283217766828],\n", " y=[200.497699066975],\n", " name=u'',\n", " text=[u'2007 FR3
Radius: 8 meters
Velocity: 10.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=2.7943282347242815,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2020.9779036084121],\n", " y=[221.4729240057445],\n", " name=u'',\n", " text=[u'2011 CL50
Radius: 8 meters
Velocity: 3.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2077.0501934978633],\n", " y=[151.78860214304504],\n", " name=u'',\n", " text=[u'2012 BX34
Radius: 8 meters
Velocity: 9.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2710262609673],\n", " y=[101.92531856754142],\n", " name=u'',\n", " text=[u'2008 GY21
Radius: 8 meters
Velocity: 11.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.05757606861],\n", " y=[81.89353737860195],\n", " name=u'',\n", " text=[u'2006 BA
Radius: 8 meters
Velocity: 6.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.3004082842936],\n", " y=[99.18675834785188],\n", " name=u'',\n", " text=[u'2011 HN24
Radius: 8 meters
Velocity: 6.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.2571791889056],\n", " y=[130.15883233521998],\n", " name=u'',\n", " text=[u'2010 GV23
Radius: 8 meters
Velocity: 5.66 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2081.9343000623453],\n", " y=[208.85112705059564],\n", " name=u'',\n", " text=[u'2012 XP134
Radius: 8 meters
Velocity: 8.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1449029089306],\n", " y=[231.70774710902842],\n", " name=u'',\n", " text=[u'2009 DC45
Radius: 8 meters
Velocity: 8.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2129.8142952724174],\n", " y=[239.40030462398417],\n", " name=u'',\n", " text=[u'2012 VR76
Radius: 8 meters
Velocity: 4.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1600406003377],\n", " y=[126.92724735257914],\n", " name=u'',\n", " text=[u'2014 EU
Radius: 8 meters
Velocity: 5.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(97,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2146.0337195687543],\n", " y=[110.62282788914452],\n", " name=u'',\n", " text=[u'2012 BX34
Radius: 8 meters
Velocity: 9.46 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2057.2306007937595],\n", " y=[290.7851647302496],\n", " name=u'',\n", " text=[u'2010 TW54
Radius: 8 meters
Velocity: 7.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.831035308608],\n", " y=[283.50285234969556],\n", " name=u'',\n", " text=[u'2010 UM7
Radius: 8 meters
Velocity: 13.13 km/s'],\n", " marker=Marker(\n", " color=u'rgb(223,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.848244833721],\n", " y=[276.7958307834796],\n", " name=u'',\n", " text=[u'2012 VR76
Radius: 8 meters
Velocity: 4.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7678329759894],\n", " y=[25.39477697474475],\n", " name=u'',\n", " text=[u'2010 TW54
Radius: 8 meters
Velocity: 8.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2545371257395],\n", " y=[184.70578135573504],\n", " name=u'',\n", " text=[u'2013 GA55
Radius: 8 meters
Velocity: 9.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.026133616167],\n", " y=[96.64026115599614],\n", " name=u'',\n", " text=[u'2013 AB65
Radius: 8 meters
Velocity: 24.31 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,162,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9159234676033],\n", " y=[141.12999078076106],\n", " name=u'',\n", " text=[u'2011 WV74
Radius: 8 meters
Velocity: 18.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,57,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.1878145765857],\n", " y=[32.43507010205474],\n", " name=u'',\n", " text=[u'2007 EH
Radius: 8 meters
Velocity: 17.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.229083983395],\n", " y=[189.69691967952502],\n", " name=u'',\n", " text=[u'2012 FU23
Radius: 8 meters
Velocity: 18.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,57,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2018.2669035019692],\n", " y=[167.38302588696504],\n", " name=u'',\n", " text=[u'2008 GY21
Radius: 8 meters
Velocity: 10.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9536156349316],\n", " y=[77.9674395890068],\n", " name=u'',\n", " text=[u'2012 XP134
Radius: 8 meters
Velocity: 8.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7392245639646],\n", " y=[72.96081636522968],\n", " name=u'',\n", " text=[u'2009 SN103
Radius: 8 meters
Velocity: 5.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.6645568176634],\n", " y=[29.766803488488065],\n", " name=u'',\n", " text=[u'2006 QM111
Radius: 8 meters
Velocity: 18.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,68,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7823282088711],\n", " y=[106.2139406157917],\n", " name=u'',\n", " text=[u'2012 TQ231
Radius: 8 meters
Velocity: 13.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.069638322461],\n", " y=[14.285521474895983],\n", " name=u'',\n", " text=[u'2012 BX34
Radius: 8 meters
Velocity: 9.99 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.7585775750291828,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.6655528184542],\n", " y=[177.1195105286746],\n", " name=u'',\n", " text=[u'2005 QP87
Radius: 7 meters
Velocity: 2.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(42,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.902184739139],\n", " y=[229.5126243449485],\n", " name=u'',\n", " text=[u'2005 WM3
Radius: 7 meters
Velocity: 8.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2069.079039505497],\n", " y=[230.48416154232493],\n", " name=u'',\n", " text=[u'2008 CT1
Radius: 7 meters
Velocity: 14.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9477460730197],\n", " y=[278.79682986667524],\n", " name=u'',\n", " text=[u'2012 XN134
Radius: 7 meters
Velocity: 7.11 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2218059547163],\n", " y=[93.33425854745873],\n", " name=u'',\n", " text=[u'2011 FQ6
Radius: 7 meters
Velocity: 10.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.2459247601234],\n", " y=[74.12207505014695],\n", " name=u'',\n", " text=[u'2009 FP32
Radius: 7 meters
Velocity: 15.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1384346060854],\n", " y=[48.179455343829034],\n", " name=u'',\n", " text=[u'2014 DK10
Radius: 7 meters
Velocity: 12.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(202,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8675204902452],\n", " y=[278.18132742916913],\n", " name=u'',\n", " text=[u'2010 WC1
Radius: 7 meters
Velocity: 4.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(65,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.033653041984],\n", " y=[219.34154393627057],\n", " name=u'',\n", " text=[u'2012 BU1
Radius: 7 meters
Velocity: 9.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2026.9397818682237],\n", " y=[257.01383538773376],\n", " name=u'',\n", " text=[u'2010 VQ
Radius: 7 meters
Velocity: 4.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1498905159435],\n", " y=[163.9238631896531],\n", " name=u'',\n", " text=[u'2012 CS46
Radius: 7 meters
Velocity: 7.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.6977935921416],\n", " y=[186.07159225295277],\n", " name=u'',\n", " text=[u'2012 SB3
Radius: 7 meters
Velocity: 8.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.759114167541],\n", " y=[46.050934056810014],\n", " name=u'',\n", " text=[u'2009 TD17
Radius: 7 meters
Velocity: 6.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8246069218253],\n", " y=[108.14147909280572],\n", " name=u'',\n", " text=[u'2013 VL
Radius: 7 meters
Velocity: 9.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2039.9923836351747],\n", " y=[291.1060520095224],\n", " name=u'',\n", " text=[u'2010 JR34
Radius: 7 meters
Velocity: 4.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7321670240106],\n", " y=[186.30989576243817],\n", " name=u'',\n", " text=[u'2008 TE
Radius: 7 meters
Velocity: 12.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.0944147925125],\n", " y=[20.972397202453266],\n", " name=u'',\n", " text=[u'2008 CT1
Radius: 7 meters
Velocity: 13.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(236,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.088972902696],\n", " y=[102.56785295632675],\n", " name=u'',\n", " text=[u'2008 EA9
Radius: 7 meters
Velocity: 1.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(21,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.3419171874762],\n", " y=[250.29631051823554],\n", " name=u'',\n", " text=[u'2013 JV17
Radius: 7 meters
Velocity: 8.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=2.72443596007499,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9537562915318],\n", " y=[45.656381182775725],\n", " name=u'',\n", " text=[u'2012 XL134
Radius: 7 meters
Velocity: 10.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7515415203077],\n", " y=[190.27597907863165],\n", " name=u'',\n", " text=[u'2012 TP20
Radius: 7 meters
Velocity: 7.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.5624325228473],\n", " y=[84.87636052782631],\n", " name=u'',\n", " text=[u'2013 PG10
Radius: 7 meters
Velocity: 7.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0394940924227],\n", " y=[40.64825806121305],\n", " name=u'',\n", " text=[u'2013 BR27
Radius: 7 meters
Velocity: 11.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.169063531165],\n", " y=[66.0145885161951],\n", " name=u'',\n", " text=[u'2013 EC
Radius: 7 meters
Velocity: 20.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,89,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1361631920686],\n", " y=[20.363807498371564],\n", " name=u'',\n", " text=[u'2012 DY13
Radius: 7 meters
Velocity: 17.2 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,39,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.3104025059683],\n", " y=[41.85572797340757],\n", " name=u'',\n", " text=[u'2007 HB15
Radius: 7 meters
Velocity: 6.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7441095296747],\n", " y=[51.9556039887649],\n", " name=u'',\n", " text=[u'2011 SM173
Radius: 7 meters
Velocity: 12.71 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.4314926326354],\n", " y=[22.89882651181951],\n", " name=u'',\n", " text=[u'2013 LR6
Radius: 7 meters
Velocity: 9.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.734271170719],\n", " y=[38.68859923938962],\n", " name=u'',\n", " text=[u'2011 SE58
Radius: 7 meters
Velocity: 15.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,15,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.2477038760396],\n", " y=[159.90563313483776],\n", " name=u'',\n", " text=[u'2006 GU2
Radius: 7 meters
Velocity: 7.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.646450131533],\n", " y=[70.83481718861388],\n", " name=u'',\n", " text=[u'2013 QP48
Radius: 7 meters
Velocity: 8.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.089088849353],\n", " y=[34.221237704381736],\n", " name=u'',\n", " text=[u'2009 CC2
Radius: 7 meters
Velocity: 19.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,83,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2050.7559722032147],\n", " y=[295.0233222285887],\n", " name=u'',\n", " text=[u'2006 GU2
Radius: 7 meters
Velocity: 7.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(128,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8578398947736],\n", " y=[182.54359637079008],\n", " name=u'',\n", " text=[u'2007 VX83
Radius: 7 meters
Velocity: 13.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.754928683302],\n", " y=[40.74771674512069],\n", " name=u'',\n", " text=[u'2008 TN9
Radius: 7 meters
Velocity: 9.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.049798138771],\n", " y=[64.00342606381145],\n", " name=u'',\n", " text=[u'2007 BB
Radius: 7 meters
Velocity: 4.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(76,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.8844620075117],\n", " y=[57.366983897043475],\n", " name=u'',\n", " text=[u'2006 WX29
Radius: 7 meters
Velocity: 21.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,107,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8244757690495],\n", " y=[151.12847546855417],\n", " name=u'',\n", " text=[u'2008 VL
Radius: 7 meters
Velocity: 10.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=2.6918309709189363,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.372183066466],\n", " y=[132.28738255568265],\n", " name=u'',\n", " text=[u'2013 KA
Radius: 7 meters
Velocity: 5.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.8458992898743],\n", " y=[128.07831123244614],\n", " name=u'',\n", " text=[u'2005 VO
Radius: 7 meters
Velocity: 14.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1317325091618],\n", " y=[80.04184926117874],\n", " name=u'',\n", " text=[u'2013 CW129
Radius: 7 meters
Velocity: 16.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,28,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.9761986223257],\n", " y=[181.08865977136296],\n", " name=u'',\n", " text=[u'2012 XM55
Radius: 7 meters
Velocity: 2.87 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.08891587975],\n", " y=[270.23352334203355],\n", " name=u'',\n", " text=[u'2009 BG81
Radius: 7 meters
Velocity: 7.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(126,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.6462372458677],\n", " y=[155.66042165774698],\n", " name=u'',\n", " text=[u'2004 QA22
Radius: 7 meters
Velocity: 3.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1809433115886],\n", " y=[98.73379987451122],\n", " name=u'',\n", " text=[u'2009 EH1
Radius: 7 meters
Velocity: 10.67 km/s'],\n", " marker=Marker(\n", " color=u'rgb(178,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1656383528732],\n", " y=[41.171304687676596],\n", " name=u'',\n", " text=[u'2011 EN11
Radius: 7 meters
Velocity: 11.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2300362665937],\n", " y=[25.691992972363085],\n", " name=u'',\n", " text=[u'2012 FP35
Radius: 7 meters
Velocity: 14.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6773736751668],\n", " y=[109.11890107336536],\n", " name=u'',\n", " text=[u'2010 RM80
Radius: 7 meters
Velocity: 5.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6856401015768],\n", " y=[14.033533692263338],\n", " name=u'',\n", " text=[u'2010 RK53
Radius: 7 meters
Velocity: 8.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2050.83740477168],\n", " y=[269.25813244676107],\n", " name=u'',\n", " text=[u'2013 VJ11
Radius: 7 meters
Velocity: 8.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8087906573605],\n", " y=[79.37531976935433],\n", " name=u'',\n", " text=[u'2011 UC64
Radius: 7 meters
Velocity: 14.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8651749463984],\n", " y=[52.56339090327363],\n", " name=u'',\n", " text=[u'2010 VC140
Radius: 7 meters
Velocity: 4.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2108.9326711068534],\n", " y=[255.15788211000324],\n", " name=u'',\n", " text=[u'2004 QA22
Radius: 7 meters
Velocity: 3.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7364798594954],\n", " y=[73.16971900092348],\n", " name=u'',\n", " text=[u'2011 SC108
Radius: 7 meters
Velocity: 20.67 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,99,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1281115520885],\n", " y=[55.35372419160203],\n", " name=u'',\n", " text=[u'2010 CK19
Radius: 7 meters
Velocity: 5.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2095.2091354561076],\n", " y=[102.27890838404232],\n", " name=u'',\n", " text=[u'2012 FP35
Radius: 7 meters
Velocity: 14.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.8282373827228],\n", " y=[47.29513640746991],\n", " name=u'',\n", " text=[u'2006 UJ185
Radius: 7 meters
Velocity: 15.59 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8029838206894],\n", " y=[44.830448065418615],\n", " name=u'',\n", " text=[u'2013 UR1
Radius: 7 meters
Velocity: 21.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,117,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8515844775939],\n", " y=[58.30243646441496],\n", " name=u'',\n", " text=[u'2013 VJ11
Radius: 7 meters
Velocity: 9.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=2.6606934480075966,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9804316256862],\n", " y=[263.95981174808986],\n", " name=u'',\n", " text=[u'2009 YR
Radius: 6 meters
Velocity: 2.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2086.4391907303498],\n", " y=[100.45220404337043],\n", " name=u'',\n", " text=[u'2011 MD
Radius: 6 meters
Velocity: 1.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(26,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.7670821738668],\n", " y=[301.5539924532822],\n", " name=u'',\n", " text=[u'2005 TH50
Radius: 6 meters
Velocity: 4.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.7284966470509],\n", " y=[74.90642113041189],\n", " name=u'',\n", " text=[u'2006 SR131
Radius: 6 meters
Velocity: 8.64 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.802001125253],\n", " y=[25.734873247485012],\n", " name=u'',\n", " text=[u'2006 UE64
Radius: 6 meters
Velocity: 11.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7898172224502],\n", " y=[63.64354926898881],\n", " name=u'',\n", " text=[u'2010 TE55
Radius: 6 meters
Velocity: 3.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.720226419111],\n", " y=[268.18072049111356],\n", " name=u'',\n", " text=[u'2009 SC170
Radius: 6 meters
Velocity: 5.63 km/s'],\n", " marker=Marker(\n", " color=u'rgb(91,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.1475297659779],\n", " y=[84.40727567274136],\n", " name=u'',\n", " text=[u'2004 DA53
Radius: 6 meters
Velocity: 9.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2013385186199],\n", " y=[89.53970565152747],\n", " name=u'',\n", " text=[u'2013 ED68
Radius: 6 meters
Velocity: 6.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2118.7522238948955],\n", " y=[75.81047087081369],\n", " name=u'',\n", " text=[u'2010 TE55
Radius: 6 meters
Velocity: 3.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1787897449933],\n", " y=[38.72589089808399],\n", " name=u'',\n", " text=[u'2011 EM40
Radius: 6 meters
Velocity: 10.79 km/s'],\n", " marker=Marker(\n", " color=u'rgb(181,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.1167164667063],\n", " y=[115.12608649622526],\n", " name=u'',\n", " text=[u'2010 CS19
Radius: 6 meters
Velocity: 6.96 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.2835370953271],\n", " y=[247.02263075719392],\n", " name=u'',\n", " text=[u'2013 GH66
Radius: 6 meters
Velocity: 2.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(31,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.4840810942324],\n", " y=[4.270121626766503],\n", " name=u'',\n", " text=[u'2011 MD
Radius: 6 meters
Velocity: 6.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8302597965421],\n", " y=[97.85643742912248],\n", " name=u'',\n", " text=[u'2009 UW87
Radius: 6 meters
Velocity: 10.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.9134942901023],\n", " y=[113.4598420797561],\n", " name=u'',\n", " text=[u'2003 WT153
Radius: 6 meters
Velocity: 4.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=2.6309573444801932,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.3378970697809],\n", " y=[163.73292227864516],\n", " name=u'',\n", " text=[u'2010 JW34
Radius: 6 meters
Velocity: 1.74 km/s'],\n", " marker=Marker(\n", " color=u'rgb(23,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7772968842662],\n", " y=[45.43528875245971],\n", " name=u'',\n", " text=[u'2003 UM3
Radius: 6 meters
Velocity: 12.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(217,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.6853264753736],\n", " y=[14.582038356323453],\n", " name=u'',\n", " text=[u'2010 RF12
Radius: 6 meters
Velocity: 6.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9029412435564],\n", " y=[199.5913451281407],\n", " name=u'',\n", " text=[u'2009 WQ52
Radius: 6 meters
Velocity: 13.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2582569225856],\n", " y=[31.49966968235405],\n", " name=u'',\n", " text=[u'2011 GW9
Radius: 6 meters
Velocity: 11.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.4138117178352],\n", " y=[54.76822715013657],\n", " name=u'',\n", " text=[u'2009 BD
Radius: 6 meters
Velocity: 1.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(26,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.8138238827305],\n", " y=[53.66984351473273],\n", " name=u'',\n", " text=[u'2004 UH1
Radius: 6 meters
Velocity: 11.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2095.65346965619],\n", " y=[2.157024717702818],\n", " name=u'',\n", " text=[u'2010 RF12
Radius: 6 meters
Velocity: 10.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.296390067363],\n", " y=[43.66460954832992],\n", " name=u'',\n", " text=[u'2012 HM13
Radius: 6 meters
Velocity: 13.05 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0727232638415],\n", " y=[165.10014352379397],\n", " name=u'',\n", " text=[u'2014 BM25
Radius: 6 meters
Velocity: 6.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(112,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2045.3156429147089],\n", " y=[197.6821176961498],\n", " name=u'',\n", " text=[u'2010 JW34
Radius: 6 meters
Velocity: 1.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(23,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8638748232288],\n", " y=[45.50384040111246],\n", " name=u'',\n", " text=[u'2009 VZ39
Radius: 6 meters
Velocity: 7.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.09610457248],\n", " y=[22.02069811636507],\n", " name=u'',\n", " text=[u'2013 CY32
Radius: 6 meters
Velocity: 32.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,65)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1219739823305],\n", " y=[151.70376124315328],\n", " name=u'',\n", " text=[u'2008 CM74
Radius: 6 meters
Velocity: 4.34 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.124827030397],\n", " y=[106.91162888665805],\n", " name=u'',\n", " text=[u'2013 DP1
Radius: 6 meters
Velocity: 14.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.0660135638582],\n", " y=[109.39685678425224],\n", " name=u'',\n", " text=[u'2009 BD
Radius: 6 meters
Velocity: 1.49 km/s'],\n", " marker=Marker(\n", " color=u'rgb(21,0,0)',\n", " size=2.6025595860743573,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8435404406732],\n", " y=[119.12720179353714],\n", " name=u'',\n", " text=[u'2010 VQ98
Radius: 6 meters
Velocity: 1.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(18,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.4216960905069],\n", " y=[201.2990941996229],\n", " name=u'',\n", " text=[u'2008 KT
Radius: 6 meters
Velocity: 2.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.21966759424],\n", " y=[93.9675625334747],\n", " name=u'',\n", " text=[u'2011 FQ21
Radius: 6 meters
Velocity: 7.49 km/s'],\n", " marker=Marker(\n", " color=u'rgb(123,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8411834922372],\n", " y=[80.78031067974544],\n", " name=u'',\n", " text=[u'2008 VB4
Radius: 6 meters
Velocity: 12.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(207,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3181937411614],\n", " y=[151.6486349289921],\n", " name=u'',\n", " text=[u'2008 HU4
Radius: 6 meters
Velocity: 1.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(21,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2016.2872835028816],\n", " y=[299.9208393372489],\n", " name=u'',\n", " text=[u'2008 HU4
Radius: 6 meters
Velocity: 1.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(18,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0487850310965],\n", " y=[73.09119401052843],\n", " name=u'',\n", " text=[u'2012 BL14
Radius: 6 meters
Velocity: 19.91 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,86,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1751402764473],\n", " y=[16.670543621426194],\n", " name=u'',\n", " text=[u'2014 EC
Radius: 6 meters
Velocity: 16.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,18,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.8746179462617],\n", " y=[51.610513665895674],\n", " name=u'',\n", " text=[u'2006 WP1
Radius: 6 meters
Velocity: 18.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,52,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8000186274958],\n", " y=[235.07722105653485],\n", " name=u'',\n", " text=[u'2013 UJ5
Radius: 6 meters
Velocity: 10.88 km/s'],\n", " marker=Marker(\n", " color=u'rgb(183,0,0)',\n", " size=2.5754399373371575,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.2651471952313],\n", " y=[50.2925851425896],\n", " name=u'',\n", " text=[u'2008 GF1
Radius: 5 meters
Velocity: 14.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(249,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0641127989902],\n", " y=[19.8787529224047],\n", " name=u'',\n", " text=[u'2011 BW11
Radius: 5 meters
Velocity: 23.95 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,154,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2048.7837518817573],\n", " y=[19.71304722189434],\n", " name=u'',\n", " text=[u'2007 UD6
Radius: 5 meters
Velocity: 6.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(110,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.254843148883],\n", " y=[30.62867796321769],\n", " name=u'',\n", " text=[u'2008 GM2
Radius: 5 meters
Velocity: 5.02 km/s'],\n", " marker=Marker(\n", " color=u'rgb(81,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8760245122637],\n", " y=[210.01649733703542],\n", " name=u'',\n", " text=[u'2009 WR52
Radius: 5 meters
Velocity: 5.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.2669092042638],\n", " y=[167.58108503337647],\n", " name=u'',\n", " text=[u'2008 GF1
Radius: 5 meters
Velocity: 14.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(244,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8689878807231],\n", " y=[163.88400183971063],\n", " name=u'',\n", " text=[u'2010 UE51
Radius: 5 meters
Velocity: 1.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(15,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.8136186001248],\n", " y=[44.27648161999354],\n", " name=u'',\n", " text=[u'2011 UL169
Radius: 5 meters
Velocity: 9.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(160,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2035.2459152562992],\n", " y=[128.02228138055196],\n", " name=u'',\n", " text=[u'2008 GM2
Radius: 5 meters
Velocity: 4.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2032.8725328072017],\n", " y=[286.0959769771197],\n", " name=u'',\n", " text=[u'2013 CY
Radius: 5 meters
Velocity: 2.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(36,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8355097091069],\n", " y=[19.70833783301873],\n", " name=u'',\n", " text=[u'2010 VN1
Radius: 5 meters
Velocity: 11.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(189,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7947402034579],\n", " y=[33.81845992600194],\n", " name=u'',\n", " text=[u'2007 UD6
Radius: 5 meters
Velocity: 6.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(105,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2028.3774633912687],\n", " y=[38.23761673588294],\n", " name=u'',\n", " text=[u'2009 WR52
Radius: 5 meters
Velocity: 5.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(94,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.212997810319],\n", " y=[61.82357094774377],\n", " name=u'',\n", " text=[u'2009 FK
Radius: 5 meters
Velocity: 7.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2021.391445417636],\n", " y=[208.70164649158355],\n", " name=u'',\n", " text=[u'2013 VO11
Radius: 5 meters
Velocity: 10.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.8668115049495],\n", " y=[37.99374799734365],\n", " name=u'',\n", " text=[u'2007 VF189
Radius: 5 meters
Velocity: 11.61 km/s'],\n", " marker=Marker(\n", " color=u'rgb(196,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8494727278257],\n", " y=[111.82434374565244],\n", " name=u'',\n", " text=[u'2013 VO11
Radius: 5 meters
Velocity: 10.32 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2089.9132205799615],\n", " y=[251.81087522062396],\n", " name=u'',\n", " text=[u'2010 UE51
Radius: 5 meters
Velocity: 1.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(10,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3622705776804],\n", " y=[32.051966252363044],\n", " name=u'',\n", " text=[u'2012 JU
Radius: 5 meters
Velocity: 13.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2080.8482980551375],\n", " y=[23.189533735330883],\n", " name=u'',\n", " text=[u'2007 VF189
Radius: 5 meters
Velocity: 11.81 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.0730977145204],\n", " y=[57.92990330894876],\n", " name=u'',\n", " text=[u'2013 CY
Radius: 5 meters
Velocity: 2.93 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=2.5495408738576244,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.5018855587489],\n", " y=[84.99875556962249],\n", " name=u'',\n", " text=[u'2010 NN
Radius: 5 meters
Velocity: 7.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7773025865608],\n", " y=[28.447878417835835],\n", " name=u'',\n", " text=[u'2007 TX22
Radius: 5 meters
Velocity: 9.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(154,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.1578566215044],\n", " y=[14.642136789082116],\n", " name=u'',\n", " text=[u'2009 EJ1
Radius: 5 meters
Velocity: 11.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(194,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2088.6550681994436],\n", " y=[245.0914380206737],\n", " name=u'',\n", " text=[u'2013 RZ5
Radius: 5 meters
Velocity: 16.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,31,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1837108252362],\n", " y=[95.653498078414],\n", " name=u'',\n", " text=[u'2011 EV73
Radius: 5 meters
Velocity: 5.48 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.263413697672],\n", " y=[83.22686008642506],\n", " name=u'',\n", " text=[u'2013 GW38
Radius: 5 meters
Velocity: 10.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1121793409668],\n", " y=[47.52148782281821],\n", " name=u'',\n", " text=[u'2013 CL129
Radius: 5 meters
Velocity: 6.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(99,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2074.3157493575413],\n", " y=[261.55204498005054],\n", " name=u'',\n", " text=[u'2006 JY26
Radius: 5 meters
Velocity: 3.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8520919818134],\n", " y=[200.6693098412787],\n", " name=u'',\n", " text=[u'2012 VE26
Radius: 5 meters
Velocity: 18.75 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,65,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7910261089062],\n", " y=[58.979221825590834],\n", " name=u'',\n", " text=[u'2009 TM8
Radius: 5 meters
Velocity: 8.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8553879080941],\n", " y=[161.18521699884226],\n", " name=u'',\n", " text=[u'2010 VL65
Radius: 5 meters
Velocity: 4.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0593836959993],\n", " y=[190.5333499045763],\n", " name=u'',\n", " text=[u'2012 BS1
Radius: 5 meters
Velocity: 8.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(147,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2011617474873],\n", " y=[210.82214741796355],\n", " name=u'',\n", " text=[u'2007 FP3
Radius: 5 meters
Velocity: 9.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(165,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.7968728616395],\n", " y=[121.07234418148735],\n", " name=u'',\n", " text=[u'2012 UE
Radius: 5 meters
Velocity: 13.51 km/s'],\n", " marker=Marker(\n", " color=u'rgb(228,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6726198622325],\n", " y=[69.20798032514087],\n", " name=u'',\n", " text=[u'2013 RZ5
Radius: 5 meters
Velocity: 17.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6729372899654],\n", " y=[51.658676368999],\n", " name=u'',\n", " text=[u'2013 RO30
Radius: 5 meters
Velocity: 9.4 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.352833280112],\n", " y=[72.03989629686333],\n", " name=u'',\n", " text=[u'2006 JY26
Radius: 5 meters
Velocity: 3.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(49,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8508127670575],\n", " y=[100.07577285202413],\n", " name=u'',\n", " text=[u'2012 VE26
Radius: 5 meters
Velocity: 18.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,68,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.198532989675],\n", " y=[270.28925497740556],\n", " name=u'',\n", " text=[u'2008 EK85
Radius: 5 meters
Velocity: 5.24 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7899692836397],\n", " y=[54.56612951093098],\n", " name=u'',\n", " text=[u'2009 TM8
Radius: 5 meters
Velocity: 8.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(136,0,0)',\n", " size=2.5248074602497725,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.7794428478019],\n", " y=[118.26942638957509],\n", " name=u'',\n", " text=[u'2011 UD21
Radius: 5 meters
Velocity: 1.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(21,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.1521353192525],\n", " y=[129.91320066083782],\n", " name=u'',\n", " text=[u'2006 DO62
Radius: 5 meters
Velocity: 9.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8673266122287],\n", " y=[41.939595591134896],\n", " name=u'',\n", " text=[u'2012 VJ38
Radius: 5 meters
Velocity: 4.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8162473579368],\n", " y=[40.61781817777204],\n", " name=u'',\n", " text=[u'2010 UY7
Radius: 5 meters
Velocity: 4.26 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8876781016681],\n", " y=[170.9927892067706],\n", " name=u'',\n", " text=[u'2009 WD54
Radius: 5 meters
Velocity: 7.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.175978513754],\n", " y=[20.748399183346415],\n", " name=u'',\n", " text=[u'2011 EY11
Radius: 5 meters
Velocity: 11.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(199,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.755059836078],\n", " y=[39.5692121141659],\n", " name=u'',\n", " text=[u'2013 TR12
Radius: 5 meters
Velocity: 14.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(246,0,0)',\n", " size=2.501187233627272,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1409379134163],\n", " y=[96.20403621517562],\n", " name=u'',\n", " text=[u'2012 DJ54
Radius: 5 meters
Velocity: 5.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(89,0,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0441262564057],\n", " y=[49.722541845376306],\n", " name=u'',\n", " text=[u'2011 AN52
Radius: 5 meters
Velocity: 15.92 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,15,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0218873074525],\n", " y=[80.20538622555051],\n", " name=u'',\n", " text=[u'2011 AZ22
Radius: 5 meters
Velocity: 12.7 km/s'],\n", " marker=Marker(\n", " color=u'rgb(215,0,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2102.7815488952756],\n", " y=[140.6366864667181],\n", " name=u'',\n", " text=[u'2012 US18
Radius: 5 meters
Velocity: 10.12 km/s'],\n", " marker=Marker(\n", " color=u'rgb(170,0,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.805433906604],\n", " y=[100.27344645452759],\n", " name=u'',\n", " text=[u'2012 US18
Radius: 5 meters
Velocity: 10.0 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8478095585663],\n", " y=[7.758788955604057],\n", " name=u'',\n", " text=[u'2009 VA
Radius: 5 meters
Velocity: 10.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(173,0,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.3737968158387],\n", " y=[41.8965372421572],\n", " name=u'',\n", " text=[u'2012 KA
Radius: 5 meters
Velocity: 14.49 km/s'],\n", " marker=Marker(\n", " color=u'rgb(246,0,0)',\n", " size=2.478630092322638,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.7915507200098],\n", " y=[17.880103481905987],\n", " name=u'',\n", " text=[u'2007 UN12
Radius: 5 meters
Velocity: 3.73 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2955119139942],\n", " y=[291.0764658465926],\n", " name=u'',\n", " text=[u'2007 HV4
Radius: 5 meters
Velocity: 8.98 km/s'],\n", " marker=Marker(\n", " color=u'rgb(149,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8614399434332],\n", " y=[143.25703707292027],\n", " name=u'',\n", " text=[u'2012 VC26
Radius: 5 meters
Velocity: 5.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.846665298116],\n", " y=[198.82251519399145],\n", " name=u'',\n", " text=[u'2010 VO21
Radius: 5 meters
Velocity: 4.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(65,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.3044474096375],\n", " y=[86.37404667444599],\n", " name=u'',\n", " text=[u'2007 HV4
Radius: 5 meters
Velocity: 8.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.8743366330611],\n", " y=[116.64281775727196],\n", " name=u'',\n", " text=[u'2012 WR10
Radius: 5 meters
Velocity: 3.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(47,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.675862567097],\n", " y=[25.767374831980778],\n", " name=u'',\n", " text=[u'2013 RF32
Radius: 5 meters
Velocity: 19.85 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,83,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.247021501452],\n", " y=[4.744166677078816],\n", " name=u'',\n", " text=[u'2004 FU162
Radius: 5 meters
Velocity: 13.39 km/s'],\n", " marker=Marker(\n", " color=u'rgb(225,0,0)',\n", " size=2.457088189614875,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9993860529478],\n", " y=[18.859959027894114],\n", " name=u'',\n", " text=[u'2014 AF5
Radius: 4 meters
Velocity: 14.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(249,0,0)',\n", " size=2.4365158322401657,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1621504493407],\n", " y=[38.60646276032403],\n", " name=u'',\n", " text=[u'2012 EZ1
Radius: 4 meters
Velocity: 13.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(233,0,0)',\n", " size=2.4365158322401657,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.292940179128],\n", " y=[7.861189403795049],\n", " name=u'',\n", " text=[u'2013 HT25
Radius: 4 meters
Velocity: 29.78 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,255,2)',\n", " size=2.4365158322401657,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9261267734137],\n", " y=[273.0996346447198],\n", " name=u'',\n", " text=[u'2010 XC
Radius: 4 meters
Velocity: 5.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.4365158322401657,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.4142793059927],\n", " y=[66.56476791741726],\n", " name=u'',\n", " text=[u'2008 LD
Radius: 4 meters
Velocity: 4.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(68,0,0)',\n", " size=2.4168693834703356,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8770015054058],\n", " y=[111.10093394442423],\n", " name=u'',\n", " text=[u'2009 WW7
Radius: 4 meters
Velocity: 8.38 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=2.4168693834703356,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2443775375211],\n", " y=[130.49493326056663],\n", " name=u'',\n", " text=[u'2011 FA23
Radius: 4 meters
Velocity: 14.08 km/s'],\n", " marker=Marker(\n", " color=u'rgb(238,0,0)',\n", " size=2.4168693834703356,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.7772037467878],\n", " y=[9.008720342726598],\n", " name=u'',\n", " text=[u'2010 TD54
Radius: 4 meters
Velocity: 17.54 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,44,0)',\n", " size=2.4168693834703356,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1730912519197],\n", " y=[24.172908583209875],\n", " name=u'',\n", " text=[u'2014 EF
Radius: 4 meters
Velocity: 15.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=2.398107170553497,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4053552149385],\n", " y=[6.740489629183675],\n", " name=u'',\n", " text=[u'2012 KT42
Radius: 4 meters
Velocity: 17.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,36,0)',\n", " size=2.398107170553497,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2000.4212456092332],\n", " y=[82.43555737777284],\n", " name=u'',\n", " text=[u'2000 LG6
Radius: 4 meters
Velocity: 2.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(36,0,0)',\n", " size=2.398107170553497,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7447709958487],\n", " y=[256.24940647017036],\n", " name=u'',\n", " text=[u'2008 TS10
Radius: 4 meters
Velocity: 3.58 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=2.398107170553497,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1821864118122],\n", " y=[28.273281966704086],\n", " name=u'',\n", " text=[u'2013 EC20
Radius: 4 meters
Velocity: 3.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=2.398107170553497,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9914997795113],\n", " y=[41.00553278620199],\n", " name=u'',\n", " text=[u'2011 YC63
Radius: 4 meters
Velocity: 18.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,65,0)',\n", " size=2.398107170553497,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2062.699405440749],\n", " y=[254.46539549836703],\n", " name=u'',\n", " text=[u'2003 SW130
Radius: 4 meters
Velocity: 8.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=2.380189396320561,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7148909721273],\n", " y=[25.599822995566115],\n", " name=u'',\n", " text=[u'2003 SW130
Radius: 4 meters
Velocity: 9.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(152,0,0)',\n", " size=2.380189396320561,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.1641576570412],\n", " y=[89.36146657539857],\n", " name=u'',\n", " text=[u'2012 EP10
Radius: 4 meters
Velocity: 3.16 km/s'],\n", " marker=Marker(\n", " color=u'rgb(49,0,0)',\n", " size=2.380189396320561,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0744795705791],\n", " y=[55.63282498803029],\n", " name=u'',\n", " text=[u'2006 BV39
Radius: 4 meters
Velocity: 8.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(133,0,0)',\n", " size=2.380189396320561,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.9852728738044],\n", " y=[97.73632303403696],\n", " name=u'',\n", " text=[u'2003 YS70
Radius: 4 meters
Velocity: 3.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=2.380189396320561,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.1863376822835],\n", " y=[77.59108243248056],\n", " name=u'',\n", " text=[u'2013 EN20
Radius: 4 meters
Velocity: 7.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(120,0,0)',\n", " size=2.380189396320561,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.720127579338],\n", " y=[112.93538898838713],\n", " name=u'',\n", " text=[u'2013 SP19
Radius: 4 meters
Velocity: 5.19 km/s'],\n", " marker=Marker(\n", " color=u'rgb(84,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.874842236516],\n", " y=[55.43548896374487],\n", " name=u'',\n", " text=[u'2009 WQ6
Radius: 4 meters
Velocity: 12.42 km/s'],\n", " marker=Marker(\n", " color=u'rgb(210,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8611187141705],\n", " y=[12.116020806000584],\n", " name=u'',\n", " text=[u'2010 VP139
Radius: 4 meters
Velocity: 9.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.8131795234403],\n", " y=[28.566524427512427],\n", " name=u'',\n", " text=[u'2013 UX2
Radius: 4 meters
Velocity: 4.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7473009138878],\n", " y=[17.57865376490704],\n", " name=u'',\n", " text=[u'2009 TB
Radius: 4 meters
Velocity: 15.15 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,2,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.9527317792679],\n", " y=[124.8649316982724],\n", " name=u'',\n", " text=[u'2009 XR1
Radius: 4 meters
Velocity: 6.47 km/s'],\n", " marker=Marker(\n", " color=u'rgb(107,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2189.8262415796116],\n", " y=[26.854220774987862],\n", " name=u'',\n", " text=[u'2009 WQ6
Radius: 4 meters
Velocity: 12.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(212,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.2262024238553],\n", " y=[116.61874580341728],\n", " name=u'',\n", " text=[u'2012 FT35
Radius: 4 meters
Velocity: 4.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=2.3630780547701016,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2004.9674551039338],\n", " y=[7.840867409092655],\n", " name=u'',\n", " text=[u'2004 YD5
Radius: 3 meters
Velocity: 25.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,180,0)',\n", " size=2.3467368504525314,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0671160074814],\n", " y=[117.533210211481],\n", " name=u'',\n", " text=[u'2006 BO7
Radius: 3 meters
Velocity: 10.01 km/s'],\n", " marker=Marker(\n", " color=u'rgb(168,0,0)',\n", " size=2.3467368504525314,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8497768502045],\n", " y=[59.79771976891843],\n", " name=u'',\n", " text=[u'2010 VR21
Radius: 3 meters
Velocity: 14.25 km/s'],\n", " marker=Marker(\n", " color=u'rgb(241,0,0)',\n", " size=2.3467368504525314,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.193729756854],\n", " y=[43.767878320488194],\n", " name=u'',\n", " text=[u'2007 EK
Radius: 3 meters
Velocity: 8.55 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=2.3467368504525314,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.7961961893466],\n", " y=[58.69882134316853],\n", " name=u'',\n", " text=[u'2008 UA202
Radius: 3 meters
Velocity: 2.84 km/s'],\n", " marker=Marker(\n", " color=u'rgb(44,0,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.1872804616578],\n", " y=[17.018767942161833],\n", " name=u'',\n", " text=[u'2008 EF32
Radius: 3 meters
Velocity: 13.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(231,0,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.7015057859282],\n", " y=[170.61177992014512],\n", " name=u'',\n", " text=[u'2009 SH1
Radius: 3 meters
Velocity: 7.94 km/s'],\n", " marker=Marker(\n", " color=u'rgb(131,0,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.6702762191505],\n", " y=[37.43929081823792],\n", " name=u'',\n", " text=[u'2013 RG
Radius: 3 meters
Velocity: 16.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,20,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9427318552985],\n", " y=[13.916500624102037],\n", " name=u'',\n", " text=[u'2013 XS21
Radius: 3 meters
Velocity: 8.27 km/s'],\n", " marker=Marker(\n", " color=u'rgb(139,0,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.4018521052872],\n", " y=[125.19695088212592],\n", " name=u'',\n", " text=[u'2012 KC45
Radius: 3 meters
Velocity: 6.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.2599410002586],\n", " y=[13.037800847218255],\n", " name=u'',\n", " text=[u'2011 GP28
Radius: 3 meters
Velocity: 14.8 km/s'],\n", " marker=Marker(\n", " color=u'rgb(252,0,0)',\n", " size=2.331131121482591,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2009.8550780834207],\n", " y=[86.8638523752709],\n", " name=u'',\n", " text=[u'2009 VT1
Radius: 3 meters
Velocity: 7.17 km/s'],\n", " marker=Marker(\n", " color=u'rgb(118,0,0)',\n", " size=2.316227766016838,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.0062991347718],\n", " y=[84.9677656751374],\n", " name=u'',\n", " text=[u'2006 RH120
Radius: 3 meters
Velocity: 1.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(13,0,0)',\n", " size=2.316227766016838,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.2273770965437],\n", " y=[56.94308151381367],\n", " name=u'',\n", " text=[u'2006 RH120
Radius: 3 meters
Velocity: 1.37 km/s'],\n", " marker=Marker(\n", " color=u'rgb(18,0,0)',\n", " size=2.316227766016838,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.693087298329],\n", " y=[137.39972375718548],\n", " name=u'',\n", " text=[u'2006 RH120
Radius: 3 meters
Velocity: 0.86 km/s'],\n", " marker=Marker(\n", " color=u'rgb(10,0,0)',\n", " size=2.316227766016838,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.4482820887124],\n", " y=[45.907264755170374],\n", " name=u'',\n", " text=[u'2006 RH120
Radius: 3 meters
Velocity: 1.57 km/s'],\n", " marker=Marker(\n", " color=u'rgb(21,0,0)',\n", " size=2.316227766016838,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9073111019875],\n", " y=[25.66531098395564],\n", " name=u'',\n", " text=[u'2013 WH25
Radius: 3 meters
Velocity: 20.89 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,102,0)',\n", " size=2.3019951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.78809512948],\n", " y=[18.517499381477432],\n", " name=u'',\n", " text=[u'2010 UE
Radius: 3 meters
Velocity: 17.35 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,41,0)',\n", " size=2.3019951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.3537855633106],\n", " y=[24.243988095081463],\n", " name=u'',\n", " text=[u'2008 JL24
Radius: 3 meters
Velocity: 3.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(55,0,0)',\n", " size=2.3019951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2006.0775683134893],\n", " y=[31.449616986616924],\n", " name=u'',\n", " text=[u'2006 BF56
Radius: 3 meters
Velocity: 25.45 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,180,0)',\n", " size=2.3019951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.9121542508706],\n", " y=[8.440618641462011],\n", " name=u'',\n", " text=[u'2010 XB
Radius: 3 meters
Velocity: 20.09 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,89,0)',\n", " size=2.3019951720402014,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0263883186594],\n", " y=[18.135816978955962],\n", " name=u'',\n", " text=[u'2011 AM37
Radius: 3 meters
Velocity: 4.41 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=2.2884031503126607,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.9860521874002],\n", " y=[19.017941748486102],\n", " name=u'',\n", " text=[u'2011 YC40
Radius: 3 meters
Velocity: 11.36 km/s'],\n", " marker=Marker(\n", " color=u'rgb(191,0,0)',\n", " size=2.2884031503126607,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.0411116433252],\n", " y=[54.35168718342646],\n", " name=u'',\n", " text=[u'2008 BW2
Radius: 3 meters
Velocity: 6.97 km/s'],\n", " marker=Marker(\n", " color=u'rgb(115,0,0)',\n", " size=2.2884031503126607,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.3390375287015],\n", " y=[54.71908532175363],\n", " name=u'',\n", " text=[u'2011 JV10
Radius: 3 meters
Velocity: 5.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(86,0,0)',\n", " size=2.2884031503126607,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0006215501119],\n", " y=[40.26996252472007],\n", " name=u'',\n", " text=[u'2011 YB63
Radius: 3 meters
Velocity: 8.53 km/s'],\n", " marker=Marker(\n", " color=u'rgb(141,0,0)',\n", " size=2.2754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.3370550309444],\n", " y=[185.14164974746777],\n", " name=u'',\n", " text=[u'2008 WO2
Radius: 3 meters
Velocity: 6.21 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=2.2754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8743043200584],\n", " y=[60.817392347297314],\n", " name=u'',\n", " text=[u'2008 WO2
Radius: 3 meters
Velocity: 6.29 km/s'],\n", " marker=Marker(\n", " color=u'rgb(102,0,0)',\n", " size=2.2754228703338164,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.950948861822],\n", " y=[48.746372715831484],\n", " name=u'',\n", " text=[u'2012 XB112
Radius: 3 meters
Velocity: 4.43 km/s'],\n", " marker=Marker(\n", " color=u'rgb(70,0,0)',\n", " size=2.263026799189538,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2039.4313652813892],\n", " y=[248.2223624956097],\n", " name=u'',\n", " text=[u'2012 XB112
Radius: 3 meters
Velocity: 4.5 km/s'],\n", " marker=Marker(\n", " color=u'rgb(73,0,0)',\n", " size=2.263026799189538,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2005.901251463589],\n", " y=[17.20832858284722],\n", " name=u'',\n", " text=[u'2005 WN3
Radius: 3 meters
Velocity: 19.3 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,75,0)',\n", " size=2.263026799189538,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.0203343825556],\n", " y=[20.449705736057478],\n", " name=u'',\n", " text=[u'2014 AG51
Radius: 3 meters
Velocity: 15.04 km/s'],\n", " marker=Marker(\n", " color=u'rgb(254,0,0)',\n", " size=2.263026799189538,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2010.8749315724647],\n", " y=[8.598607980432734],\n", " name=u'',\n", " text=[u'2010 WA
Radius: 3 meters
Velocity: 13.07 km/s'],\n", " marker=Marker(\n", " color=u'rgb(220,0,0)',\n", " size=2.251188643150958,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2003.7387588765719],\n", " y=[12.953205016060988],\n", " name=u'',\n", " text=[u'2003 SQ222
Radius: 2 meters
Velocity: 15.44 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,7,0)',\n", " size=2.2398832919019487,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.231324985174],\n", " y=[12.996867957889723],\n", " name=u'',\n", " text=[u'2012 FS35
Radius: 2 meters
Velocity: 4.83 km/s'],\n", " marker=Marker(\n", " color=u'rgb(78,0,0)',\n", " size=2.229086765276777,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2072.211878259812],\n", " y=[182.52398953175413],\n", " name=u'',\n", " text=[u'2012 FS35
Radius: 2 meters
Velocity: 3.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(57,0,0)',\n", " size=2.229086765276777,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8406664841932],\n", " y=[8.55595412930999],\n", " name=u'',\n", " text=[u'2008 VM
Radius: 2 meters
Velocity: 11.11 km/s'],\n", " marker=Marker(\n", " color=u'rgb(186,0,0)',\n", " size=2.229086765276777,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.1066405121421],\n", " y=[21.98227358592627],\n", " name=u'',\n", " text=[u'2011 CA7
Radius: 2 meters
Velocity: 9.33 km/s'],\n", " marker=Marker(\n", " color=u'rgb(157,0,0)',\n", " size=2.2187761623949553,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.989477365692],\n", " y=[43.919450404210124],\n", " name=u'',\n", " text=[u'2012 AQ
Radius: 2 meters
Velocity: 3.28 km/s'],\n", " marker=Marker(\n", " color=u'rgb(52,0,0)',\n", " size=2.181970085860998,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2007.6749825129632],\n", " y=[16.345024057864734],\n", " name=u'',\n", " text=[u'2007 RS1
Radius: 2 meters
Velocity: 12.14 km/s'],\n", " marker=Marker(\n", " color=u'rgb(204,0,0)',\n", " size=2.1659586907437562,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0975396499553],\n", " y=[7.983107957870593],\n", " name=u'',\n", " text=[u'2011 CF22
Radius: 2 meters
Velocity: 19.6 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,78,0)',\n", " size=2.1659586907437562,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2012.0495453370436],\n", " y=[50.774606675462856],\n", " name=u'',\n", " text=[u'2012 BV1
Radius: 2 meters
Velocity: 8.65 km/s'],\n", " marker=Marker(\n", " color=u'rgb(144,0,0)',\n", " size=2.158489319246111,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.7127469093564],\n", " y=[37.10698951773434],\n", " name=u'',\n", " text=[u'2013 RZ53
Radius: 2 meters
Velocity: 2.18 km/s'],\n", " marker=Marker(\n", " color=u'rgb(31,0,0)',\n", " size=2.1513561248436206,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.6850660705868],\n", " y=[118.10103553141718],\n", " name=u'',\n", " text=[u'2013 RZ53
Radius: 2 meters
Velocity: 1.56 km/s'],\n", " marker=Marker(\n", " color=u'rgb(21,0,0)',\n", " size=2.1513561248436206,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2013.9743681857578],\n", " y=[5.480113084472864],\n", " name=u'',\n", " text=[u'2013 YB
Radius: 1 meters
Velocity: 10.52 km/s'],\n", " marker=Marker(\n", " color=u'rgb(175,0,0)',\n", " size=2.1258925411794167,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2011.0929759135076],\n", " y=[7.564823996884261],\n", " name=u'',\n", " text=[u'2011 CQ1
Radius: 1 meters
Velocity: 9.69 km/s'],\n", " marker=Marker(\n", " color=u'rgb(162,0,0)',\n", " size=2.0954992586021435,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2008.8057057159801],\n", " y=[14.795051714133013],\n", " name=u'',\n", " text=[u'2008 UM1
Radius: 1 meters
Velocity: 15.62 km/s'],\n", " marker=Marker(\n", " color=u'rgb(255,10,0)',\n", " size=2.0954992586021435,\n", " symbol=u'circle',\n", " line=Line(\n", " color=[u'white'],\n", " width=0.5\n", " ),\n", " opacity=1\n", " )\n", " ),\n", " Scatter(\n", " x=[2014.1840518607246, 2014.1840518607246, 2014.1840518607246, ],\n", " y=[1, 4.04040404040404, 7.08080808080808, 10.121212121212121, .. ],\n", " mode=u'lines',\n", " name=u'Today'\n", " ),\n", " Scatter(\n", " x=[2000, 2001.010101010101, 2002.020202020202, 2003.030303030.., ],\n", " 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, ],\n", " mode=u'lines',\n", " name=u'Geosynchronous Satellites',\n", " line=Line(\n", " dash=u'dot'\n", " )\n", " ),\n", " Scatter(\n", " x=[2000, 2001.010101010101, 2002.020202020202, 2003.030303030.., ],\n", " y=[60.33589693721351, 60.33589693721351, 60.33589693721351, 6.., ],\n", " mode=u'lines',\n", " name=u'Moon',\n", " line=Line(\n", " dash=u'dot'\n", " )\n", " )\n", " ]),\n", " layout=Layout(\n", " title=u'A Century of Asteroid Flybys',\n", " titlefont=Font(\n", " family=u'',\n", " size=0,\n", " color=u''\n", " ),\n", " font=Font(\n", " family=u'Century Gothic',\n", " size=16,\n", " color=u'black'\n", " ),\n", " showlegend=False,\n", " autosize=True,\n", " width=892,\n", " height=341,\n", " xaxis=XAxis(\n", " title=u\"Date
Data extracted from " ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Import .png figure and show it in this cell\n", "from IPython.display import Image\n", "Image('asteroids.png')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Not bad. The Plotly figure now resides on your computer!\n", "\n", "Alternatively, one could have used another `plotly.plotly` function,\n", "\n", " >>> py.image.ishow(alexhp68, 'asteroids') \n", " \n", "to display the static `.png` version of the `asteroids` figure object inside this notebook." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Next, extract the data object tucked inside `alexhp68` using the `get_data()` method and make a list of flyby distances by looping through each trace objects (`Scatter` in this case):" ] }, { "cell_type": "code", "execution_count": 47, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Extract data object inside figure object\n", "alexhp68_data = alexhp68.get_data()\n", "\n", "# Make a list of distances:\n", "# distances are linked to the 'y' key in each trace (Scatter) object,\n", "# specify item [0] to extract value from list (of one item)\n", "distances = [trace['y'][0] for trace in alexhp68_data]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Histograms in Plotly are generated using the `Histogram` graph object (we cover histograms in detail in [section 4](https://plotly.com/python/histograms-and-box-plots-tutorial))." ] }, { "cell_type": "code", "execution_count": 48, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) Import Histogram\n", "from plotly.graph_objs import Histogram" ] }, { "cell_type": "code", "execution_count": 49, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Histogram in module plotly.graph_objs.graph_objs:\n", "\n", "class Histogram(PlotlyTrace)\n", " | A dictionary-like object for representing a histogram trace in plotly.\n", " | \n", " | Example:\n", " | \n", " | >>> py.plot([Histogram(x=[1,1,2,3,2,3,3])]) # bins along x-axis\n", " | >>> py.plot([Histogram(y=[1,1,2,3,2,3,3])]) # bins along y-axis\n", " | \n", " | Online example:\n", " | \n", " | https://plotly.com/python/histograms/\n", " | \n", " | Quick method reference:\n", " | \n", " | Histogram.update(changes)\n", " | Histogram.strip_style()\n", " | Histogram.get_data()\n", " | Histogram.to_graph_objs()\n", " | Histogram.validate()\n", " | Histogram.to_string()\n", " | Histogram.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | x [required= when 'y' is unset] (value=list or 1d numpy array of\n", " | numbers, strings, datetimes) (streamable):\n", " | Sets the data sample to be binned (done by Plotly) on the x-axis and\n", " | plotted as vertical bars.\n", " | \n", " | y [required= when 'x' is unset] (value=list or 1d numpy array of\n", " | numbers, strings, datetimes) (streamable):\n", " | Sets the data sample to be binned (done by Plotly) on the y-axis and\n", " | plotted as horizontal bars.\n", " | \n", " | histnorm [required=False] (value='' | 'percent' | 'probability' |\n", " | 'density' | 'probability density'):\n", " | Sets the type of normalization for this histogram trace. By default\n", " | ('histnorm' set to '') the height of each bar displays the frequency\n", " | of occurrence, i.e., the number of times this value was found in the\n", " | corresponding bin. If set to 'percent', the height of each bar\n", " | displays the percentage of total occurrences found within the\n", " | corresponding bin. If set to 'probability', the height of each bar\n", " | displays the probability that an event will fall into the\n", " | corresponding bin. If set to 'density', the height of each bar is\n", " | equal to the number of occurrences in a bin divided by the size of\n", " | the bin interval such that summing the area of all bins will yield\n", " | the total number of occurrences. If set to 'probability density',\n", " | the height of each bar is equal to the number of probability that an\n", " | event will fall into the corresponding bin divided by the size of\n", " | the bin interval such that summing the area of all bins will yield\n", " | 1.\n", " | \n", " | histfunc [required=False] (value='count' | 'sum' | 'avg' | 'min' |\n", " | 'max'):\n", " | Sets the binning function used for this histogram trace. The default\n", " | value is 'count' where the histogram values are computed by counting\n", " | the number of values lying inside each bin. With 'histfunc' set to\n", " | 'sum', 'avg', 'min' or 'max', the histogram values are computed\n", " | using the sum, the average, the minimum or the 'maximum' of the\n", " | values lying inside each bin respectively.\n", " | \n", " | name [required=False] (value=a string):\n", " | The label associated with this trace. This name will appear in the\n", " | legend, on hover and in the column header in the online spreadsheet.\n", " | \n", " | orientation [required=False] (value='v' | 'h'):\n", " | Sets the orientation of the bars. If set to 'v', the length of each\n", " | bar will run vertically. If set to 'h', the length of each bar will\n", " | run horizontally\n", " | \n", " | autobinx [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the x-axis bin parameters are picked\n", " | automatically by Plotly. Once 'autobinx' is set to False, the x-axis\n", " | bins parameters can be declared in 'xbins' object.\n", " | \n", " | nbinsx [required=False] (value=number: x > 0):\n", " | Specifies the number of x-axis bins. No need to set 'autobinx' to\n", " | False for 'nbinsx' to apply.\n", " | \n", " | xbins [required=False] (value=XBins object | dictionary-like object):\n", " | Links a dictionary-like object defining the parameters of x-axis\n", " | bins of this trace, for example, the bin width and the bins'\n", " | starting and ending value. Has an effect only if 'autobinx' is set\n", " | to False.\n", " | \n", " | For more, run `help(plotly.graph_objs.XBins)`\n", " | \n", " | autobiny [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not the y-axis bin parameters are picked\n", " | automatically by Plotly. Once 'autobiny' is set to False, the y-axis\n", " | bins parameters can be declared in 'ybins' object.\n", " | \n", " | nbinsy [required=False] (value=number: x > 0):\n", " | Specifies the number of y-axis bins. No need to set 'autobiny' to\n", " | False for 'nbinsy' to apply.\n", " | \n", " | ybins [required=False] (value=YBins object | dictionary-like object):\n", " | Links a dictionary-like object defining the parameters of y-axis\n", " | bins of this trace, for example, the bin width and the bins'\n", " | starting and ending value. Has an effect only if 'autobiny' is set\n", " | to False.\n", " | \n", " | For more, run `help(plotly.graph_objs.YBins)`\n", " | \n", " | text [required=False] (value=list or 1d numpy array of strings)\n", " | (streamable):\n", " | The text elements associated with each bar in this trace. The\n", " | entries in 'text' will appear on hover only, in a text box located\n", " | at the top of each bar.\n", " | \n", " | error_y [required=False] (value=ErrorY object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object describing the vertical error bars\n", " | (i.e. along the y-axis) that can be drawn from bar tops.\n", " | \n", " | For more, run `help(plotly.graph_objs.ErrorY)`\n", " | \n", " | error_x [required=False] (value=ErrorX object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object describing the horizontal error bars\n", " | (i.e. along the x-axis) that can be drawn from bar tops.\n", " | \n", " | For more, run `help(plotly.graph_objs.ErrorX)`\n", " | \n", " | marker [required=False] (value=Marker object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object containing marker style parameters\n", " | for this bar trace, for example, the bars' fill color, border width\n", " | and border color.\n", " | \n", " | For more, run `help(plotly.graph_objs.Marker)`\n", " | \n", " | opacity [required=False] (value=number: x in [0, 1]):\n", " | Sets the opacity, or transparency, of the entire object, also known\n", " | as the alpha channel of colors. If the object's color is given in\n", " | terms of 'rgba' color model, 'opacity' is redundant.\n", " | \n", " | xaxis [required=False] (value='x1' | 'x2' | 'x3' | etc.):\n", " | This key determines which x-axis the x-coordinates of this trace\n", " | will reference in the figure. Values 'x1' and 'x' reference to\n", " | 'xaxis' in 'layout', 'x2' references to 'xaxis2' in 'layout', and so\n", " | on. Note that 'x1' will always refer to 'xaxis' or 'xaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | yaxis [required=False] (value='y1' | 'y2' | 'y3' | etc.):\n", " | This key determines which y-axis the y-coordinates of this trace\n", " | will reference in the figure. Values 'y1' and 'y' reference to\n", " | 'yaxis' in 'layout', 'y2' references to 'yaxis2' in 'layout', and so\n", " | on. Note that 'y1' will always refer to 'yaxis' or 'yaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | showlegend [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not this trace will be labeled in the legend.\n", " | \n", " | stream [required=False] (value=Stream object | dictionary-like object):\n", " | Links a dictionary-like object that initializes this trace as a\n", " | writable-stream, for use with the streaming API.\n", " | \n", " | For more, run `help(plotly.graph_objs.Stream)`\n", " | \n", " | visible [required=False] (value=a boolean: True | False):\n", " | Toggles whether or not this object will be visible on the rendered\n", " | figure.\n", " | \n", " | xsrc [required= when 'y' is unset] (value=a string equal to the unique\n", " | identifier of a plotly grid column) (streamable):\n", " | Sets the data sample to be binned (done by Plotly) on the x-axis and\n", " | plotted as vertical bars.\n", " | \n", " | ysrc [required= when 'x' is unset] (value=a string equal to the unique\n", " | identifier of a plotly grid column) (streamable):\n", " | Sets the data sample to be binned (done by Plotly) on the y-axis and\n", " | plotted as horizontal bars.\n", " | \n", " | type [required=False] (value='histogram'):\n", " | Plotly identifier for this data's trace type.\n", " | \n", " | Method resolution order:\n", " | Histogram\n", " | PlotlyTrace\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods inherited from PlotlyTrace:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Histogram) # call help()!" ] }, { "cell_type": "code", "execution_count": 50, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 50, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Make Histogram trace object\n", "trace1 = Histogram(x=distances)\n", "\n", "# Make Data object\n", "data = Data([trace1])\n", "\n", "# Make layout object (plot title, x-axis title and y-axis title)\n", "layout = Layout(\n", " title='Histogram of distance data for asteroid flybys', \n", " xaxis=XAxis(title='Number of flybys for the given distance'), \n", " yaxis=YAxis(title='Normalized flyby distance (Earth radii)'),\n", " showlegend=False # remove legend\n", ")\n", "\n", "# Make figure object \n", "fig = Figure(data=data, layout=layout)\n", "\n", "# (@) Send to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_distance-histogramx')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Nice.\n", "\n", "Let's say that you really like the font used in the original asteroid plot. Well now, you can get its name, color, size, etc. from the figure object inside you Python/IPython session:" ] }, { "cell_type": "code", "execution_count": 51, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Extract global font in 'layout' and 'font' key\n", "asteroids_font = alexhp68['layout']['font']" ] }, { "cell_type": "code", "execution_count": 52, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Font(\n", " family=u'Century Gothic',\n", " size=16,\n", " color=u'black'\n", ")\n" ] } ], "source": [ "print(asteroids_font.to_string()) # print Font object" ] }, { "cell_type": "code", "execution_count": 53, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 53, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Update layout with Font object\n", "fig['layout'].update(font=asteroids_font)\n", "\n", "# (@) Send to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_distance-histogramx-nice-font')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Wow! All that took was three lines of code. Just think of the possibilities that the `get_figure()` function opens up." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "##### Python-GUI-Python" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Plotly allows user to style their graphs with a GUI. This method is fast and flexible and now, combined with the API `get_figure()` function, styling inside the GUI is reproducible!\n", "\n", "For example, starting with a simple Box chart:" ] }, { "cell_type": "code", "execution_count": 54, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (*) Import the Box graph object\n", "from plotly.graph_objs import Box" ] }, { "cell_type": "code", "execution_count": 55, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Help on class Box in module plotly.graph_objs.graph_objs:\n", "\n", "class Box(PlotlyTrace)\n", " | A dictionary-like object for representing a box trace in plotly.\n", " | \n", " | Example:\n", " | \n", " | >>> py.plot([Box(name='boxy', y=[1,3,9,2,4,2,3,5,2])])\n", " | \n", " | Online example:\n", " | \n", " | https://plotly.com/python/box-plots/\n", " | \n", " | Quick method reference:\n", " | \n", " | Box.update(changes)\n", " | Box.strip_style()\n", " | Box.get_data()\n", " | Box.to_graph_objs()\n", " | Box.validate()\n", " | Box.to_string()\n", " | Box.force_clean()\n", " | \n", " | Valid keys:\n", " | \n", " | y [required=True] (value=list or 1d numpy array of numbers, strings,\n", " | datetimes) (streamable):\n", " | This array is used to define an individual box plot, or, a\n", " | concatenation of multiple box plots. Statistics from these numbers\n", " | define the bounds of the box, the length of the whiskers, etc. For\n", " | details on defining multiple boxes with locations see 'x'. Each box\n", " | spans from the first quartile to the third. The second quartile is\n", " | marked by a line inside the box. By default, the whiskers are\n", " | correspond to box' edges +/- 1.5 times the interquartile range. See\n", " | also 'boxpoints' for more info\n", " | \n", " | x0 [required=False] (value=number):\n", " | The location of this box. When 'y' defines a single box, 'x0' can be\n", " | used to set where this box is centered on the x-axis. If many boxes\n", " | are set to appear at the same 'x0' location, they will form a box\n", " | group.\n", " | \n", " | x [required=False] (value=list or 1d numpy array of numbers, strings,\n", " | datetimes) (streamable):\n", " | Usually, you do not need to set this value as plotly will handle box\n", " | locations for you. However this allows you to have fine control over\n", " | the location data for the box. Unlike making a bar, a box plot is\n", " | made of many y values. Therefore, to give location data to the\n", " | values you place in 'y', the length of 'x' must equal the length of\n", " | 'y'. when making multiple box plots, you can concatenate the data\n", " | sets for each box into a single 'y' array. then, the entries in 'x'\n", " | define which box plot each entry in 'y' belongs to. When making a\n", " | single box plot, you must set each entry in 'x' to the same value,\n", " | see 'x0' for a more practical way to handle this case. If you don't\n", " | include 'x', the box will simply be assigned a location.\n", " | \n", " | name [required=False] (value=a string):\n", " | The label associated with this trace. This name will appear in the\n", " | legend, on hover and in the column header in the online spreadsheet.\n", " | \n", " | boxmean [required=False] (value=False | True | 'sd'):\n", " | Choose between add-on features for this box trace. If True then the\n", " | mean of the data linked to 'y' is shown as a dashed line in the box.\n", " | If 'sd', then the standard deviation is also shown. If False (the\n", " | default), then no line are shown.\n", " | \n", " | boxpoints [required=False] (value='outliers' | 'all' |\n", " | 'suspectedoutliers' | False):\n", " | Choose between boxpoints options for this box trace. If 'outliers'\n", " | (the default), then only the points lying outside the box' whiskers\n", " | (more info in 'y') are shown. If 'all', then all data points linked\n", " | 'y' are shown. If 'suspectedoutliers', then outliers points are\n", " | shown and points either less than 4*Q1-3*Q3 or greater than\n", " | 4*Q3-3*Q1 are highlighted (with 'outliercolor' in Marker). If False,\n", " | then only the boxes are shown and the whiskers correspond to the\n", " | minimum and maximum value linked to 'y'.\n", " | \n", " | jitter [required=False] (value=number: x in [0, 1]):\n", " | Sets the width of the jitter in the boxpoints scatter in this trace.\n", " | Has an no effect if 'boxpoints' is set to False. If 0, then the\n", " | boxpoints are aligned vertically. If 1 then the boxpoints are placed\n", " | in a random horizontal jitter of width equal to the width of the\n", " | boxes.\n", " | \n", " | pointpos [required=False] (value=number: x in [-2, 2]):\n", " | Sets the horizontal position of the boxpoints in relation to the\n", " | boxes in this trace. Has an no effect if 'boxpoints' is set to\n", " | False. If 0, then the boxpoints are placed over the center of each\n", " | box. If 1 (-1), then the boxpoints are placed on the right (left)\n", " | each box border. If 2 (-2), then the boxpoints are placed 1 one box\n", " | width to right (left) of each box.\n", " | \n", " | whiskerwidth [required=False] (value=number: x in [0, 1]):\n", " | Sets the width of the whisker of the box relative to the box' width\n", " | (in normalized coordinates, e.g. if 'whiskerwidth' set 1, then the\n", " | whiskers are as wide as the box.\n", " | \n", " | fillcolor [required=False] (value=a string describing color):\n", " | Sets the color of the box interior.\n", " | \n", " | Examples:\n", " | 'green' | 'rgb(0, 255, 0)' | 'rgba(0, 255, 0, 0.3)' |\n", " | 'hsl(120,100%,50%)' | 'hsla(120,100%,50%,0.3)' | '#434F1D'\n", " | \n", " | marker [required=False] (value=Marker object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object containing marker style parameters\n", " | for this the boxpoints of box trace. Has an effect only 'boxpoints'\n", " | is set to 'outliers', 'suspectedoutliers' or 'all'.\n", " | \n", " | For more, run `help(plotly.graph_objs.Marker)`\n", " | \n", " | line [required=False] (value=Line object | dictionary-like object)\n", " | (streamable):\n", " | Links a dictionary-like object containing line parameters for the\n", " | border of this box trace (including the whiskers).\n", " | \n", " | For more, run `help(plotly.graph_objs.Line)`\n", " | \n", " | opacity [required=False] (value=number: x in [0, 1]):\n", " | Sets the opacity, or transparency, of the entire object, also known\n", " | as the alpha channel of colors. If the object's color is given in\n", " | terms of 'rgba' color model, 'opacity' is redundant.\n", " | \n", " | xaxis [required=False] (value='x1' | 'x2' | 'x3' | etc.):\n", " | This key determines which x-axis the x-coordinates of this trace\n", " | will reference in the figure. Values 'x1' and 'x' reference to\n", " | 'xaxis' in 'layout', 'x2' references to 'xaxis2' in 'layout', and so\n", " | on. Note that 'x1' will always refer to 'xaxis' or 'xaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | yaxis [required=False] (value='y1' | 'y2' | 'y3' | etc.):\n", " | This key determines which y-axis the y-coordinates of this trace\n", " | will reference in the figure. Values 'y1' and 'y' reference to\n", " | 'yaxis' in 'layout', 'y2' references to 'yaxis2' in 'layout', and so\n", " | on. Note that 'y1' will always refer to 'yaxis' or 'yaxis1' in\n", " | 'layout', they are the same.\n", " | \n", " | showlegend [required=False] (value=a boolean: True | False):\n", " | Toggle whether or not this trace will be labeled in the legend.\n", " | \n", " | stream [required=False] (value=Stream object | dictionary-like object):\n", " | Links a dictionary-like object that initializes this trace as a\n", " | writable-stream, for use with the streaming API.\n", " | \n", " | For more, run `help(plotly.graph_objs.Stream)`\n", " | \n", " | visible [required=False] (value=a boolean: True | False):\n", " | Toggles whether or not this object will be visible on the rendered\n", " | figure.\n", " | \n", " | xsrc [required=False] (value=a string equal to the unique identifier of\n", " | a plotly grid column) (streamable):\n", " | Usually, you do not need to set this value as plotly will handle box\n", " | locations for you. However this allows you to have fine control over\n", " | the location data for the box. Unlike making a bar, a box plot is\n", " | made of many y values. Therefore, to give location data to the\n", " | values you place in 'y', the length of 'x' must equal the length of\n", " | 'y'. when making multiple box plots, you can concatenate the data\n", " | sets for each box into a single 'y' array. then, the entries in 'x'\n", " | define which box plot each entry in 'y' belongs to. When making a\n", " | single box plot, you must set each entry in 'x' to the same value,\n", " | see 'x0' for a more practical way to handle this case. If you don't\n", " | include 'x', the box will simply be assigned a location.\n", " | \n", " | ysrc [required=True] (value=a string equal to the unique identifier of a\n", " | plotly grid column) (streamable):\n", " | This array is used to define an individual box plot, or, a\n", " | concatenation of multiple box plots. Statistics from these numbers\n", " | define the bounds of the box, the length of the whiskers, etc. For\n", " | details on defining multiple boxes with locations see 'x'. Each box\n", " | spans from the first quartile to the third. The second quartile is\n", " | marked by a line inside the box. By default, the whiskers are\n", " | correspond to box' edges +/- 1.5 times the interquartile range. See\n", " | also 'boxpoints' for more info\n", " | \n", " | type [required=False] (value='box'):\n", " | Plotly identifier for this data's trace type.\n", " | \n", " | Method resolution order:\n", " | Box\n", " | PlotlyTrace\n", " | PlotlyDict\n", " | __builtin__.dict\n", " | __builtin__.object\n", " | \n", " | Methods inherited from PlotlyTrace:\n", " | \n", " | __init__(self, *args, **kwargs)\n", " | \n", " | to_string(self, level=0, indent=4, eol='\\n', pretty=True, max_chars=80)\n", " | Returns a formatted string showing graph_obj constructors.\n", " | \n", " | Example:\n", " | \n", " | print(obj.to_string())\n", " | \n", " | Keyword arguments:\n", " | level (default = 0) -- set number of indentations to start with\n", " | indent (default = 4) -- set indentation amount\n", " | eol (default = '\\n') -- set end of line character(s)\n", " | pretty (default = True) -- curtail long list output with a '...'\n", " | max_chars (default = 80) -- set max characters per line\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from PlotlyDict:\n", " | \n", " | __setitem__(self, key, value)\n", " | \n", " | force_clean(self, caller=True)\n", " | Attempts to convert to graph_objs and call force_clean() on values.\n", " | \n", " | Calling force_clean() on a PlotlyDict will ensure that the object is\n", " | valid and may be sent to plotly. This process will also remove any\n", " | entries that end up with a length == 0.\n", " | \n", " | Careful! This will delete any invalid entries *silently*.\n", " | \n", " | get_data(self)\n", " | Returns the JSON for the plot with non-data elements stripped.\n", " | \n", " | get_ordered(self, caller=True)\n", " | \n", " | strip_style(self)\n", " | Strip style from the current representation.\n", " | \n", " | All PlotlyDicts and PlotlyLists are guaranteed to survive the\n", " | stripping process, though they made be left empty. This is allowable.\n", " | \n", " | Keys that will be stripped in this process are tagged with\n", " | `'type': 'style'` in graph_objs_meta.json.\n", " | \n", " | This process first attempts to convert nested collections from dicts\n", " | or lists to subclasses of PlotlyList/PlotlyDict. This process forces\n", " | a validation, which may throw exceptions.\n", " | \n", " | Then, each of these objects call `strip_style` on themselves and so\n", " | on, recursively until the entire structure has been validated and\n", " | stripped.\n", " | \n", " | to_graph_objs(self, caller=True)\n", " | Walk obj, convert dicts and lists to plotly graph objs.\n", " | \n", " | For each key in the object, if it corresponds to a special key that\n", " | should be associated with a graph object, the ordinary dict or list\n", " | will be reinitialized as a special PlotlyDict or PlotlyList of the\n", " | appropriate `kind`.\n", " | \n", " | update(self, dict1=None, **dict2)\n", " | Update current dict with dict1 and then dict2.\n", " | \n", " | This recursively updates the structure of the original dictionary-like\n", " | object with the new entries in the second and third objects. This\n", " | allows users to update with large, nested structures.\n", " | \n", " | Note, because the dict2 packs up all the keyword arguments, you can\n", " | specify the changes as a list of keyword agruments.\n", " | \n", " | Examples:\n", " | # update with dict\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | update_dict = dict(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj.update(update_dict)\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | # update with list of keyword arguments\n", " | obj = Layout(title='my title', xaxis=XAxis(range=[0,1], domain=[0,1]))\n", " | obj.update(title='new title', xaxis=dict(domain=[0,.8]))\n", " | obj\n", " | {'title': 'new title', 'xaxis': {'range': [0,1], 'domain': [0,.8]}}\n", " | \n", " | This 'fully' supports duck-typing in that the call signature is\n", " | identical, however this differs slightly from the normal update\n", " | method provided by Python's dictionaries.\n", " | \n", " | validate(self, caller=True)\n", " | Recursively check the validity of the keys in a PlotlyDict.\n", " | \n", " | The valid keys constitute the entries in each object\n", " | dictionary in graph_objs_meta.json\n", " | \n", " | The validation process first requires that all nested collections be\n", " | converted to the appropriate subclass of PlotlyDict/PlotlyList. Then,\n", " | each of these objects call `validate` and so on, recursively,\n", " | until the entire object has been validated.\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data descriptors inherited from PlotlyDict:\n", " | \n", " | __dict__\n", " | dictionary for instance variables (if defined)\n", " | \n", " | __weakref__\n", " | list of weak references to the object (if defined)\n", " | \n", " | ----------------------------------------------------------------------\n", " | Methods inherited from __builtin__.dict:\n", " | \n", " | __cmp__(...)\n", " | x.__cmp__(y) <==> cmp(x,y)\n", " | \n", " | __contains__(...)\n", " | D.__contains__(k) -> True if D has a key k, else False\n", " | \n", " | __delitem__(...)\n", " | x.__delitem__(y) <==> del x[y]\n", " | \n", " | __eq__(...)\n", " | x.__eq__(y) <==> x==y\n", " | \n", " | __ge__(...)\n", " | x.__ge__(y) <==> x>=y\n", " | \n", " | __getattribute__(...)\n", " | x.__getattribute__('name') <==> x.name\n", " | \n", " | __getitem__(...)\n", " | x.__getitem__(y) <==> x[y]\n", " | \n", " | __gt__(...)\n", " | x.__gt__(y) <==> x>y\n", " | \n", " | __iter__(...)\n", " | x.__iter__() <==> iter(x)\n", " | \n", " | __le__(...)\n", " | x.__le__(y) <==> x<=y\n", " | \n", " | __len__(...)\n", " | x.__len__() <==> len(x)\n", " | \n", " | __lt__(...)\n", " | x.__lt__(y) <==> x x!=y\n", " | \n", " | __repr__(...)\n", " | x.__repr__() <==> repr(x)\n", " | \n", " | __sizeof__(...)\n", " | D.__sizeof__() -> size of D in memory, in bytes\n", " | \n", " | clear(...)\n", " | D.clear() -> None. Remove all items from D.\n", " | \n", " | copy(...)\n", " | D.copy() -> a shallow copy of D\n", " | \n", " | fromkeys(...)\n", " | dict.fromkeys(S[,v]) -> New dict with keys from S and values equal to v.\n", " | v defaults to None.\n", " | \n", " | get(...)\n", " | D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.\n", " | \n", " | has_key(...)\n", " | D.has_key(k) -> True if D has a key k, else False\n", " | \n", " | items(...)\n", " | D.items() -> list of D's (key, value) pairs, as 2-tuples\n", " | \n", " | iteritems(...)\n", " | D.iteritems() -> an iterator over the (key, value) items of D\n", " | \n", " | iterkeys(...)\n", " | D.iterkeys() -> an iterator over the keys of D\n", " | \n", " | itervalues(...)\n", " | D.itervalues() -> an iterator over the values of D\n", " | \n", " | keys(...)\n", " | D.keys() -> list of D's keys\n", " | \n", " | pop(...)\n", " | D.pop(k[,d]) -> v, remove specified key and return the corresponding value.\n", " | If key is not found, d is returned if given, otherwise KeyError is raised\n", " | \n", " | popitem(...)\n", " | D.popitem() -> (k, v), remove and return some (key, value) pair as a\n", " | 2-tuple; but raise KeyError if D is empty.\n", " | \n", " | setdefault(...)\n", " | D.setdefault(k[,d]) -> D.get(k,d), also set D[k]=d if k not in D\n", " | \n", " | values(...)\n", " | D.values() -> list of D's values\n", " | \n", " | viewitems(...)\n", " | D.viewitems() -> a set-like object providing a view on D's items\n", " | \n", " | viewkeys(...)\n", " | D.viewkeys() -> a set-like object providing a view on D's keys\n", " | \n", " | viewvalues(...)\n", " | D.viewvalues() -> an object providing a view on D's values\n", " | \n", " | ----------------------------------------------------------------------\n", " | Data and other attributes inherited from __builtin__.dict:\n", " | \n", " | __hash__ = None\n", " | \n", " | __new__ = \n", " | T.__new__(S, ...) -> a new object with type S, a subtype of T\n", "\n" ] } ], "source": [ "help(Box) # call help()!" ] }, { "cell_type": "code", "execution_count": 56, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Make list of Box traces\n", "traces = [\n", " Box(\n", " y=np.random.randn(40),\n", " name='box{}'.format(i) \n", " ) \n", " for i in range(15)]\n", "\n", "# Make Data object made up of 15 Box object \n", "data = Data(traces)\n", "\n", "# Make figure object\n", "fig = Figure(data=data)\n", "\n", "# (@) Send to Plotly and show plot in notebook\n", "py.iplot(fig, filename='s0_quick-boxes')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Click on the *data and graph* link at the bottom right-hand corner of the plot. This will open up in a unique URL that identifies this figure. \n", "\n", "Since it's public, you or anyone else can view it and choose to *Fork and edit*.\n", "\n", "\n", "\n", "Change a few style options in a new copy of the figure on the web GUI. Then, find the figure's unique URL which is a combination of your username and the file ID of the plot, which is just a number. Watch the video below for an example:" ] }, { "cell_type": "code", "execution_count": 57, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "\n", " \n", " " ], "text/plain": [ "" ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from IPython.display import YouTubeVideo\n", "YouTubeVideo('zEKfPI3GtOw', width='100%', height='350')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Using the `get_figure()` function, I can pull in the entire figure object just edited!\n", "From that video, the unique user-file_id pair was `'PythonAPI'`, `'61'`, so:" ] }, { "cell_type": "code", "execution_count": 58, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# Get figure object from Plotly's servers \n", "fig_styled = py.get_figure('PythonAPI', '61')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Then, you can use this new figure object to restyle or replot it within an Python/IPython session ad infinitum:" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "# (@) Send to Plotly and show plot in notebook,\n", "# adjust display width (in pixels)\n", "py.iplot(fig_styled, filename='s0_quickbars-edited', width=700) " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "
\n", " \n", "
\n", "\n", "

Got Questions or Feedback?

\n", "\n", "Reach us here at:
Plotly Community\n", "\n", "

What's going on at Plotly?

\n", "Check out our twitter: \n", "@plotlygraphs\n", "\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "text/html": [ "" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "Requirement already up-to-date: publisher in /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages\r\n" ] } ], "source": [ "from IPython.display import display, HTML\n", "\n", "display(HTML(''))\n", "display(HTML(''))\n", "\n", "! pip install publisher --upgrade\n", "import publisher\n", "publisher.publish(\n", " 's0_getting-started.ipynb', 'python/getting_started//', 'Getting Started Plotly for Python',\n", " 'Getting Started with Plotly for Python',\n", " title = 'Getting Started Plotly for Python',\n", " thumbnail='', language='python',\n", " layout='user-guide', has_thumbnail='false') " ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.9" } }, "nbformat": 4, "nbformat_minor": 0 }