{ "cells": [ { "cell_type": "markdown", "source": [ "# Plotting traces (collections)\n", "This Tutorial explains how to customize network plots in pandapower using plotly. Each pandapower network element can be translated into a plotly trace with all corresponding properties." ], "metadata": { "collapsed": false } }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import pandapower as pp\n", "import pandapower.networks as nw\n", "import pandapower.plotting.plotly as pplotly\n", "from pandas import Series\n", "import numpy as np" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We created a network along with geodata in the buses." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "net = pp.create_empty_network()\n", "x=np.array([0,-2,2,-3,-2,2])\n", "y=np.array([4,3,3,-3,-2,-2])\n", "for i in range(6):\n", " if i < 3:\n", " v = 110\n", " elif i == 3:\n", " v = 20 \n", " else:\n", " v=10\n", " pp.create_bus(net, vn_kv=v,geodata=(x[i], y[i]))\n", "\n", "pp.create_line(net, 0, 1, 5, \"149-AL1/24-ST1A 110.0\",geodata=None,name='l1')\n", "pp.create_line(net, 0, 2, 5, \"149-AL1/24-ST1A 110.0\",geodata=None,name='l2')\n", "pp.create_transformer3w(net, 1, 3, 4, \"63/25/38 MVA 110/20/10 kV\", name='tr1')\n", "\n", "pp.create_transformer(net, 2, 5, \"0.25 MVA 20/0.4 kV\", name='tr2')\n", "\n", "pp.create_ext_grid(net, 0)\n", "pp.create_load(net, 4, p_mw=20., q_mvar=10., name='load1')\n", "pp.create_load(net, 5, p_mw=20., q_mvar=10., name='load1')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you want to have full control over the layout of your plot, you can individually create and plot collections with the pandapower plotting module." ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "marker": { "color": "rgb(255, 165, 0)", "size": 10, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ 110, 110, 110, 20, 10, 10 ], "type": "scatter", "x": [ 0, -2, 2, -3, -2, 2 ], "y": [ 4, 3, 3, -3, -2, -2 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "l1", "type": "scatter", "x": [ 0, -1, -2 ], "y": [ 4, 3.5, 3 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "l2", "type": "scatter", "x": [ 0, 1, 2 ], "y": [ 4, 3.5, 3 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(0, 0, 0)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "text": [ "l1", "l2" ], "type": "scatter", "x": [ -1 ], "y": [ 3.5 ] }, { "hoverinfo": "text", "legendgroup": "trafos", "line": { "color": "rgb(0, 0, 255)", "width": 5 }, "mode": "lines", "name": "trafos", "showlegend": true, "text": "tr2", "type": "scatter", "x": [ 2, 2, 2 ], "y": [ 3, 0.5, -2 ] }, { "hoverinfo": "text", "legendgroup": "trafos", "marker": { "color": "rgb(0, 0, 255)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "text": [ "tr2" ], "type": "scatter", "x": [ 2 ], "y": [ 0.5 ] }, { "hoverinfo": "text", "legendgroup": "trafo3ws", "line": { "color": "rgb(0, 128, 0)", "width": 5 }, "mode": "lines", "name": "trafo3ws", "showlegend": true, "text": "tr1", "type": "scatter", "x": [ -2, -2, -2 ], "y": [ 3, 0.5, -2 ] }, { "hoverinfo": "text", "legendgroup": "trafo3ws", "line": { "color": "rgb(0, 128, 0)", "width": 5 }, "mode": "lines", "name": "trafo3ws", "showlegend": false, "text": "tr1", "type": "scatter", "x": [ -2, -2.5, -3 ], "y": [ 3, 0, -3 ] }, { "hoverinfo": "text", "legendgroup": "trafo3ws", "line": { "color": "rgb(0, 128, 0)", "width": 5 }, "mode": "lines", "name": "trafo3ws", "showlegend": false, "text": "tr1", "type": "scatter", "x": [ -3, -2.5, -2 ], "y": [ -3, -2.5, -2 ] }, { "hoverinfo": "text", "legendgroup": "trafo3ws", "marker": { "color": "rgb(0, 128, 0)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "text": [ "tr1" ], "type": "scatter", "x": [ -2 ], "y": [ 0.5 ] } ], "layout": { "autosize": false, "height": 350, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 700, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "lc = pplotly.create_line_trace(net,net.line.index, color='black',infofunc=net.line.name)\n", "bc = pplotly.create_bus_trace(net, net.bus.index, size=10, color=\"orange\",infofunc=net.bus.vn_kv)\n", "tc3 = pplotly.create_trafo_trace(net, net.trafo3w.index,trafotype='3W', color='green', infofunc=net.trafo3w.name,trace_name='trafo3ws', cmin=None, cmax=None, cmap_vals=None,use_line_geodata=None)\n", "tc = pplotly.create_trafo_trace(net, net.trafo.index, trafotype='2W',color='blue', infofunc=net.trafo.name,trace_name='trafos', cmin=None, cmax=None, cmap_vals=None,use_line_geodata=None)\n", "_ = pplotly.draw_traces(bc+lc+tc+tc3, figsize=1, aspectratio=(8,4));" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "marker": { "color": "rgb(255, 165, 0)", "size": 10, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 0
20.0 kV", "Bus 1
20.0 kV", "Bus 2
20.0 kV", "Bus 3
20.0 kV", "Bus 4
20.0 kV", "Bus 5
20.0 kV", "Bus 6
20.0 kV", "Bus 7
20.0 kV", "Bus 8
20.0 kV", "Bus 9
20.0 kV", "Bus 10
20.0 kV", "Bus 11
20.0 kV", "Bus 12
20.0 kV", "Bus 13
20.0 kV", "Bus 14
20.0 kV", "Bus 15
20.0 kV", "Bus 16
20.0 kV", "Bus 17
20.0 kV", "Bus 18
20.0 kV", "Bus 19
20.0 kV", "Bus 20
20.0 kV", "Bus 21
20.0 kV", "Bus 22
20.0 kV", "Bus 23
20.0 kV", "Bus 24
20.0 kV", "Bus 25
20.0 kV", "Bus 26
20.0 kV", "Bus 27
20.0 kV", "Bus 28
20.0 kV", "Bus 29
20.0 kV", "Bus 30
20.0 kV", "Bus 31
20.0 kV", "Bus 32
20.0 kV", "Bus 33
20.0 kV", "Bus 34
20.0 kV", "Bus 35
20.0 kV", "Bus 36
20.0 kV", "Bus 37
20.0 kV", "Bus 38
110.0 kV", "Bus 39
20.0 kV", "Bus 40
20.0 kV", "Bus 41
20.0 kV", "Bus 42
20.0 kV", "Bus 43
20.0 kV", "Bus 44
20.0 kV", "Bus 45
20.0 kV", "Bus 46
20.0 kV", "Bus 47
20.0 kV", "Bus 48
20.0 kV", "Bus 49
20.0 kV", "Bus 50
20.0 kV", "Bus 51
20.0 kV", "Bus 52
20.0 kV", "Bus 53
20.0 kV", "Bus 54
20.0 kV", "Bus 55
20.0 kV", "Bus 56
20.0 kV", "Bus 57
20.0 kV", "Bus 58
20.0 kV", "Bus 59
20.0 kV", "Bus 60
20.0 kV", "Bus 61
20.0 kV", "Bus 62
20.0 kV", "Bus 63
20.0 kV", "Bus 64
20.0 kV", "Bus 65
20.0 kV", "Bus 66
20.0 kV", "Bus 67
20.0 kV", "Bus 68
20.0 kV", "Bus 69
20.0 kV", "Bus 70
20.0 kV", "Bus 71
20.0 kV", "Bus 72
20.0 kV", "Bus 73
20.0 kV", "Bus 74
20.0 kV", "Bus 75
20.0 kV", "Bus 76
20.0 kV", "Bus 77
20.0 kV", "Bus 78
20.0 kV", "Bus 79
20.0 kV", "Bus 80
20.0 kV", "Bus 81
20.0 kV", "Bus 82
20.0 kV", "Bus 83
20.0 kV", "Bus 84
20.0 kV", "Bus 85
20.0 kV", "Bus 86
20.0 kV", "Bus 87
20.0 kV", "Bus 88
20.0 kV", "Bus 89
20.0 kV", "Bus 90
20.0 kV", "Bus 91
20.0 kV", "Bus 92
20.0 kV", "Bus 93
20.0 kV", "Bus 94
20.0 kV", "Bus 95
20.0 kV", "Bus 96
20.0 kV", "Bus 97
20.0 kV", "Bus 98
20.0 kV", "Bus 99
20.0 kV", "Bus 100
20.0 kV", "Bus 101
20.0 kV", "Bus 102
20.0 kV", "Bus 103
20.0 kV", "Bus 104
20.0 kV", "Bus 105
20.0 kV", "Bus 106
20.0 kV", "Bus 107
20.0 kV", "Bus 108
20.0 kV", "Bus 109
20.0 kV", "Bus 110
20.0 kV", "Bus 111
20.0 kV", "Bus 112
20.0 kV", "Bus 113
20.0 kV", "Bus 114
20.0 kV", "Bus 115
20.0 kV", "Bus 116
20.0 kV", "Bus 117
20.0 kV", "Bus 118
20.0 kV", "Bus 119
20.0 kV", "Bus 120
20.0 kV", "Bus 121
20.0 kV", "Bus 122
20.0 kV", "Bus 123
20.0 kV", "Bus 124
20.0 kV", "Bus 125
20.0 kV", "Bus 126
20.0 kV", "Bus 127
20.0 kV", "Bus 128
20.0 kV", "Bus 129
20.0 kV", "Bus 130
20.0 kV", "Bus 131
20.0 kV", "Bus 132
20.0 kV", "Bus 133
20.0 kV", "Bus 134
20.0 kV", "Bus 135
20.0 kV", "Bus 136
20.0 kV", "Bus 137
20.0 kV", "Bus 138
20.0 kV", "Bus 139
20.0 kV", "Bus 140
20.0 kV", "Bus 141
20.0 kV", "Bus 142
20.0 kV", "Bus 143
20.0 kV", "Bus 144
20.0 kV", "Bus 145
20.0 kV", "Bus 146
20.0 kV", "Bus 147
20.0 kV", "Bus 148
20.0 kV", "Bus 149
20.0 kV", "Bus 150
20.0 kV", "Bus 151
20.0 kV", "Bus 152
20.0 kV", "Bus 153
20.0 kV", "Bus 154
20.0 kV", "Bus 155
20.0 kV", "Bus 156
20.0 kV", "Bus 157
20.0 kV", "Bus 158
20.0 kV", "Bus 159
20.0 kV", "Bus 160
20.0 kV", "Bus 161
20.0 kV", "Bus 162
20.0 kV", "Bus 163
20.0 kV", "Bus 164
20.0 kV", "Bus 165
20.0 kV", "Bus 166
20.0 kV", "Bus 167
20.0 kV", "Bus 168
20.0 kV", "Bus 169
20.0 kV", "Bus 170
20.0 kV", "Bus 171
20.0 kV", "Bus 172
20.0 kV", "Bus 173
20.0 kV", "Bus 174
20.0 kV", "Bus 175
20.0 kV", "Bus 176
20.0 kV", "Bus 177
110.0 kV", "Bus 178
20.0 kV" ], "type": "scatter", "x": [ 3408665.349175, 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141, 3408210.205095, 3408719.72605, 3408975.913755, 3410296.66458, 3411216.526165, 3412523.282265, 3413353.181945, 3414619.659505, 3413854.89557, 3417068.32117, 3412335.82098, 3416989.87706, 3420936.666405, 3419748.613735, 3417044.332345, 3416936.8934, 3411249.917565, 3417839.113615, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3410287.52413, 3417062.86489, 3410365.877105, 3411701.231155, 3417046.76693, 3412171.07318, 3412037.331555, 3417317.379745, 3411094.5293799997, 3411891.829765, 3419748.613735, 3412644.303915, 3412494.665505, 3418411.783625, 3411785.34044, 3417849.758145, 3411973.54194, 3411622.542935, 3413992.76188, 3417091.49669, 3417392.81507, 3412984.086275, 3417643.32197, 3417614.157325, 3413126.367695, 3417773.4362149998, 3410821.62822, 3407983.78155, 3419397.84279, 3419357.7620449997, 3419277.01657, 3419979.565655, 3419616.951355, 3412068.438205, 3419697.711465, 3412575.0779, 3412613.5358949997, 3412542.38331, 3419678.205055, 3412183.33188, 3418359.45578, 3412343.37775, 3414019.75533, 3413865.67305, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245, 3409538.64957, 3407984.897035, 3412268.81795, 3418745.212615, 3412143.304465, 3419021.5555249997, 3414311.22654, 3419221.18234, 3413481.2855599998, 3412220.238145, 3412851.145155, 3418890.004785, 3417019.61853, 3412082.45804, 3417250.970735, 3416952.52644, 3412339.049355, 3417439.513935, 3412453.990615, 3417043.53881, 3408131.461275, 3407976.02058, 3407642.913365, 3408223.972925, 3421413.450085, 3421459.12736, 3408045.89905, 3407935.6436, 3409798.60001, 3413898.4617749997, 3409096.600125, 3412438.404275, 3421058.997755, 3421313.47574, 3409369.512385, 3408951.664265, 3407627.22878, 3407706.186985, 3407068.74552, 3407771.006305, 3412509.49375, 3412756.53258, 3411352.7399999998, 3418844.726965, 3417796.371315, 3412259.1209299997, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3418636.99365, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417611.24743, 3417854.33292, 3418753.533525, 3418265.46984, 3418770.10536, 3419250.55144, 3418943.6674349997, 3419057.457715, 3419234.664765, 3418987.826405, 3418717.898335, 3414374.640155, 3418242.10659, 3418335.48461, 3408772.0309, 3408416.22914, 3409133.776065, 3409465.918195, 3409402.47713, 3409404.38822, 3407887.282875, 3415957.4344, 3411641.501945, 3408547.67568, 3412089.223465, 3407772.74985, 3407427.18329, 3410109.835535, 3407580.5643599997, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3411731.63789, 3408983.211045, 3410393.1329, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407626.841255, 3417098.868935, 3408444.066435, 3408444.066435 ], "y": [ 5364414.94864, 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881, 5366929.533960001, 5365410.875170001, 5364211.5701750005, 5367207.696925, 5367341.3704200005, 5367829.039055, 5370522.3722, 5365662.20595, 5370532.17406, 5369426.721965, 5368857.966840001, 5368254.9978950005, 5362804.52194, 5369365.755840001, 5363686.7694500005, 5367855.33526, 5370149.9372000005, 5368879.194555, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5369692.02639, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370300.571885, 5370502.51661, 5361518.461155, 5370438.243685001, 5370489.677610001, 5370473.070780001, 5369365.755840001, 5369017.6826450005, 5368924.077845001, 5369014.851915, 5367394.89804, 5369289.93087, 5366489.345235, 5366769.909935, 5370905.836490001, 5369163.8307300005, 5369328.91016, 5368951.073805001, 5369572.441095, 5369041.862825001, 5369150.284555, 5366754.669095, 5370490.62743, 5359666.521380001, 5369283.55578, 5365951.351740001, 5365730.16249, 5365699.86742, 5365543.414095, 5366340.79855, 5365915.13698, 5366790.77472, 5366446.5986, 5366267.2019650005, 5365307.31304, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363006.85271, 5363143.39408, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001, 5367396.459115, 5357597.62531, 5361965.8234250005, 5365482.46575, 5362222.8465100005, 5365620.6961550005, 5363573.696045, 5365385.339415001, 5362851.352340001, 5361942.450270001, 5361808.458255, 5365889.114250001, 5371396.63716, 5361762.5657, 5370854.007660001, 5371121.336080001, 5361239.5318, 5370076.235715, 5361394.883040001, 5370568.944580001, 5357026.600335, 5355254.867855, 5355408.41098, 5355362.004125, 5362571.397205001, 5362910.782760001, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363247.510285, 5364094.958985001, 5361795.338565, 5363197.1299600005, 5363113.38267, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5357185.01204, 5357563.082055001, 5357944.49746, 5370211.403535, 5368870.109585, 5370544.256, 5364736.559470001, 5364792.013845, 5366668.92399, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5364405.856085001, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364442.002145001, 5364474.723965, 5363104.6379350005, 5363455.22988, 5362524.28598, 5362788.69955, 5362367.0363300005, 5362622.245215001, 5362484.08542, 5366019.591035, 5362777.79097, 5362902.157225001, 5363665.279770001, 5362827.18118, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364631.06477, 5364375.353395, 5364135.048685, 5361864.4739850005, 5364162.393145001, 5362715.89218, 5362893.18738, 5367029.39345, 5361211.91952, 5361721.47309, 5359383.313385, 5361398.412885, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5367155.67967, 5364768.844140001, 5363605.245315, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5355652.590995001, 5364820.328685001, 5367639.480235, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(0, 0, 0)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501 ] } ], "layout": { "autosize": false, "height": 525, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 700, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "net = nw.mv_oberrhein()\n", "\n", "lc = pplotly.create_line_trace(net,net.line.index, color='black')\n", "bc = pplotly.create_bus_trace(net, net.bus.index, size=10, color=\"orange\",\n", " infofunc=Series(index=net.bus.index,\n", " data=net.bus.name + '
' + net.bus.vn_kv.astype(str) + ' kV'))\n", "pplotly.draw_traces(bc + lc, figsize=1, aspectratio=(8,6));" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Order of plotting traces is as ordered in the `draw_traces` function. So, in order to plot buses in front of lines first lines and then buses need to be set in the input traces list:" ] }, { "cell_type": "code", "execution_count": 41, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 0, 0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(0, 0, 0)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(255, 165, 0)", "size": 10, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 0
20.0 kV", "Bus 1
20.0 kV", "Bus 2
20.0 kV", "Bus 3
20.0 kV", "Bus 4
20.0 kV", "Bus 5
20.0 kV", "Bus 6
20.0 kV", "Bus 7
20.0 kV", "Bus 8
20.0 kV", "Bus 9
20.0 kV", "Bus 10
20.0 kV", "Bus 11
20.0 kV", "Bus 12
20.0 kV", "Bus 13
20.0 kV", "Bus 14
20.0 kV", "Bus 15
20.0 kV", "Bus 16
20.0 kV", "Bus 17
20.0 kV", "Bus 18
20.0 kV", "Bus 19
20.0 kV", "Bus 20
20.0 kV", "Bus 21
20.0 kV", "Bus 22
20.0 kV", "Bus 23
20.0 kV", "Bus 24
20.0 kV", "Bus 25
20.0 kV", "Bus 26
20.0 kV", "Bus 27
20.0 kV", "Bus 28
20.0 kV", "Bus 29
20.0 kV", "Bus 30
20.0 kV", "Bus 31
20.0 kV", "Bus 32
20.0 kV", "Bus 33
20.0 kV", "Bus 34
20.0 kV", "Bus 35
20.0 kV", "Bus 36
20.0 kV", "Bus 37
20.0 kV", "Bus 38
110.0 kV", "Bus 39
20.0 kV", "Bus 40
20.0 kV", "Bus 41
20.0 kV", "Bus 42
20.0 kV", "Bus 43
20.0 kV", "Bus 44
20.0 kV", "Bus 45
20.0 kV", "Bus 46
20.0 kV", "Bus 47
20.0 kV", "Bus 48
20.0 kV", "Bus 49
20.0 kV", "Bus 50
20.0 kV", "Bus 51
20.0 kV", "Bus 52
20.0 kV", "Bus 53
20.0 kV", "Bus 54
20.0 kV", "Bus 55
20.0 kV", "Bus 56
20.0 kV", "Bus 57
20.0 kV", "Bus 58
20.0 kV", "Bus 59
20.0 kV", "Bus 60
20.0 kV", "Bus 61
20.0 kV", "Bus 62
20.0 kV", "Bus 63
20.0 kV", "Bus 64
20.0 kV", "Bus 65
20.0 kV", "Bus 66
20.0 kV", "Bus 67
20.0 kV", "Bus 68
20.0 kV", "Bus 69
20.0 kV", "Bus 70
20.0 kV", "Bus 71
20.0 kV", "Bus 72
20.0 kV", "Bus 73
20.0 kV", "Bus 74
20.0 kV", "Bus 75
20.0 kV", "Bus 76
20.0 kV", "Bus 77
20.0 kV", "Bus 78
20.0 kV", "Bus 79
20.0 kV", "Bus 80
20.0 kV", "Bus 81
20.0 kV", "Bus 82
20.0 kV", "Bus 83
20.0 kV", "Bus 84
20.0 kV", "Bus 85
20.0 kV", "Bus 86
20.0 kV", "Bus 87
20.0 kV", "Bus 88
20.0 kV", "Bus 89
20.0 kV", "Bus 90
20.0 kV", "Bus 91
20.0 kV", "Bus 92
20.0 kV", "Bus 93
20.0 kV", "Bus 94
20.0 kV", "Bus 95
20.0 kV", "Bus 96
20.0 kV", "Bus 97
20.0 kV", "Bus 98
20.0 kV", "Bus 99
20.0 kV", "Bus 100
20.0 kV", "Bus 101
20.0 kV", "Bus 102
20.0 kV", "Bus 103
20.0 kV", "Bus 104
20.0 kV", "Bus 105
20.0 kV", "Bus 106
20.0 kV", "Bus 107
20.0 kV", "Bus 108
20.0 kV", "Bus 109
20.0 kV", "Bus 110
20.0 kV", "Bus 111
20.0 kV", "Bus 112
20.0 kV", "Bus 113
20.0 kV", "Bus 114
20.0 kV", "Bus 115
20.0 kV", "Bus 116
20.0 kV", "Bus 117
20.0 kV", "Bus 118
20.0 kV", "Bus 119
20.0 kV", "Bus 120
20.0 kV", "Bus 121
20.0 kV", "Bus 122
20.0 kV", "Bus 123
20.0 kV", "Bus 124
20.0 kV", "Bus 125
20.0 kV", "Bus 126
20.0 kV", "Bus 127
20.0 kV", "Bus 128
20.0 kV", "Bus 129
20.0 kV", "Bus 130
20.0 kV", "Bus 131
20.0 kV", "Bus 132
20.0 kV", "Bus 133
20.0 kV", "Bus 134
20.0 kV", "Bus 135
20.0 kV", "Bus 136
20.0 kV", "Bus 137
20.0 kV", "Bus 138
20.0 kV", "Bus 139
20.0 kV", "Bus 140
20.0 kV", "Bus 141
20.0 kV", "Bus 142
20.0 kV", "Bus 143
20.0 kV", "Bus 144
20.0 kV", "Bus 145
20.0 kV", "Bus 146
20.0 kV", "Bus 147
20.0 kV", "Bus 148
20.0 kV", "Bus 149
20.0 kV", "Bus 150
20.0 kV", "Bus 151
20.0 kV", "Bus 152
20.0 kV", "Bus 153
20.0 kV", "Bus 154
20.0 kV", "Bus 155
20.0 kV", "Bus 156
20.0 kV", "Bus 157
20.0 kV", "Bus 158
20.0 kV", "Bus 159
20.0 kV", "Bus 160
20.0 kV", "Bus 161
20.0 kV", "Bus 162
20.0 kV", "Bus 163
20.0 kV", "Bus 164
20.0 kV", "Bus 165
20.0 kV", "Bus 166
20.0 kV", "Bus 167
20.0 kV", "Bus 168
20.0 kV", "Bus 169
20.0 kV", "Bus 170
20.0 kV", "Bus 171
20.0 kV", "Bus 172
20.0 kV", "Bus 173
20.0 kV", "Bus 174
20.0 kV", "Bus 175
20.0 kV", "Bus 176
20.0 kV", "Bus 177
110.0 kV", "Bus 178
20.0 kV" ], "type": "scatter", "x": [ 3408665.349175, 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141, 3408210.205095, 3408719.72605, 3408975.913755, 3410296.66458, 3411216.526165, 3412523.282265, 3413353.181945, 3414619.659505, 3413854.89557, 3417068.32117, 3412335.82098, 3416989.87706, 3420936.666405, 3419748.613735, 3417044.332345, 3416936.8934, 3411249.917565, 3417839.113615, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3410287.52413, 3417062.86489, 3410365.877105, 3411701.231155, 3417046.76693, 3412171.07318, 3412037.331555, 3417317.379745, 3411094.5293799997, 3411891.829765, 3419748.613735, 3412644.303915, 3412494.665505, 3418411.783625, 3411785.34044, 3417849.758145, 3411973.54194, 3411622.542935, 3413992.76188, 3417091.49669, 3417392.81507, 3412984.086275, 3417643.32197, 3417614.157325, 3413126.367695, 3417773.4362149998, 3410821.62822, 3407983.78155, 3419397.84279, 3419357.7620449997, 3419277.01657, 3419979.565655, 3419616.951355, 3412068.438205, 3419697.711465, 3412575.0779, 3412613.5358949997, 3412542.38331, 3419678.205055, 3412183.33188, 3418359.45578, 3412343.37775, 3414019.75533, 3413865.67305, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245, 3409538.64957, 3407984.897035, 3412268.81795, 3418745.212615, 3412143.304465, 3419021.5555249997, 3414311.22654, 3419221.18234, 3413481.2855599998, 3412220.238145, 3412851.145155, 3418890.004785, 3417019.61853, 3412082.45804, 3417250.970735, 3416952.52644, 3412339.049355, 3417439.513935, 3412453.990615, 3417043.53881, 3408131.461275, 3407976.02058, 3407642.913365, 3408223.972925, 3421413.450085, 3421459.12736, 3408045.89905, 3407935.6436, 3409798.60001, 3413898.4617749997, 3409096.600125, 3412438.404275, 3421058.997755, 3421313.47574, 3409369.512385, 3408951.664265, 3407627.22878, 3407706.186985, 3407068.74552, 3407771.006305, 3412509.49375, 3412756.53258, 3411352.7399999998, 3418844.726965, 3417796.371315, 3412259.1209299997, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3418636.99365, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417611.24743, 3417854.33292, 3418753.533525, 3418265.46984, 3418770.10536, 3419250.55144, 3418943.6674349997, 3419057.457715, 3419234.664765, 3418987.826405, 3418717.898335, 3414374.640155, 3418242.10659, 3418335.48461, 3408772.0309, 3408416.22914, 3409133.776065, 3409465.918195, 3409402.47713, 3409404.38822, 3407887.282875, 3415957.4344, 3411641.501945, 3408547.67568, 3412089.223465, 3407772.74985, 3407427.18329, 3410109.835535, 3407580.5643599997, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3411731.63789, 3408983.211045, 3410393.1329, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407626.841255, 3417098.868935, 3408444.066435, 3408444.066435 ], "y": [ 5364414.94864, 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881, 5366929.533960001, 5365410.875170001, 5364211.5701750005, 5367207.696925, 5367341.3704200005, 5367829.039055, 5370522.3722, 5365662.20595, 5370532.17406, 5369426.721965, 5368857.966840001, 5368254.9978950005, 5362804.52194, 5369365.755840001, 5363686.7694500005, 5367855.33526, 5370149.9372000005, 5368879.194555, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5369692.02639, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370300.571885, 5370502.51661, 5361518.461155, 5370438.243685001, 5370489.677610001, 5370473.070780001, 5369365.755840001, 5369017.6826450005, 5368924.077845001, 5369014.851915, 5367394.89804, 5369289.93087, 5366489.345235, 5366769.909935, 5370905.836490001, 5369163.8307300005, 5369328.91016, 5368951.073805001, 5369572.441095, 5369041.862825001, 5369150.284555, 5366754.669095, 5370490.62743, 5359666.521380001, 5369283.55578, 5365951.351740001, 5365730.16249, 5365699.86742, 5365543.414095, 5366340.79855, 5365915.13698, 5366790.77472, 5366446.5986, 5366267.2019650005, 5365307.31304, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363006.85271, 5363143.39408, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001, 5367396.459115, 5357597.62531, 5361965.8234250005, 5365482.46575, 5362222.8465100005, 5365620.6961550005, 5363573.696045, 5365385.339415001, 5362851.352340001, 5361942.450270001, 5361808.458255, 5365889.114250001, 5371396.63716, 5361762.5657, 5370854.007660001, 5371121.336080001, 5361239.5318, 5370076.235715, 5361394.883040001, 5370568.944580001, 5357026.600335, 5355254.867855, 5355408.41098, 5355362.004125, 5362571.397205001, 5362910.782760001, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363247.510285, 5364094.958985001, 5361795.338565, 5363197.1299600005, 5363113.38267, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5357185.01204, 5357563.082055001, 5357944.49746, 5370211.403535, 5368870.109585, 5370544.256, 5364736.559470001, 5364792.013845, 5366668.92399, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5364405.856085001, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364442.002145001, 5364474.723965, 5363104.6379350005, 5363455.22988, 5362524.28598, 5362788.69955, 5362367.0363300005, 5362622.245215001, 5362484.08542, 5366019.591035, 5362777.79097, 5362902.157225001, 5363665.279770001, 5362827.18118, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364631.06477, 5364375.353395, 5364135.048685, 5361864.4739850005, 5364162.393145001, 5362715.89218, 5362893.18738, 5367029.39345, 5361211.91952, 5361721.47309, 5359383.313385, 5361398.412885, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5367155.67967, 5364768.844140001, 5363605.245315, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5355652.590995001, 5364820.328685001, 5367639.480235, 5367639.480235 ] } ], "layout": { "autosize": false, "height": 525, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 700, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "pplotly.draw_traces(lc + bc , figsize=1, aspectratio=(8,6));" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Highlighting\n", "Specific lines or buses can be highlighted by creating extra line collections in different colors.\n", "\n", "In this example, we plot lines that are longer than 2 km green and buses with a voltage below 0.98 p.u. red.\n", "\n", "First, we create a line collection for all lines in grey and a line collection for only the long lines in green:" ] }, { "cell_type": "code", "execution_count": 42, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "marker": { "color": "rgb(0, 0, 255)", "size": 10, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 0", "Bus 1", "Bus 2", "Bus 3", "Bus 4", "Bus 5", "Bus 6", "Bus 7", "Bus 8", "Bus 9", "Bus 10", "Bus 11", "Bus 12", "Bus 13", "Bus 14", "Bus 15", "Bus 16", "Bus 17", "Bus 18", "Bus 19", "Bus 20", "Bus 21", "Bus 22", "Bus 23", "Bus 24", "Bus 25", "Bus 26", "Bus 27", "Bus 28", "Bus 29", "Bus 30", "Bus 31", "Bus 32", "Bus 33", "Bus 34", "Bus 35", "Bus 36", "Bus 37", "Bus 38", "Bus 39", "Bus 40", "Bus 41", "Bus 42", "Bus 43", "Bus 44", "Bus 45", "Bus 46", "Bus 47", "Bus 48", "Bus 49", "Bus 50", "Bus 51", "Bus 52", "Bus 53", "Bus 54", "Bus 55", "Bus 56", "Bus 57", "Bus 58", "Bus 59", "Bus 60", "Bus 61", "Bus 62", "Bus 63", "Bus 64", "Bus 65", "Bus 66", "Bus 67", "Bus 68", "Bus 69", "Bus 70", "Bus 71", "Bus 72", "Bus 73", "Bus 74", "Bus 75", "Bus 76", "Bus 77", "Bus 78", "Bus 79", "Bus 80", "Bus 81", "Bus 82", "Bus 83", "Bus 84", "Bus 85", "Bus 86", "Bus 87", "Bus 88", "Bus 89", "Bus 90", "Bus 91", "Bus 92", "Bus 93", "Bus 94", "Bus 95", "Bus 96", "Bus 97", "Bus 98", "Bus 99", "Bus 100", "Bus 101", "Bus 102", "Bus 103", "Bus 104", "Bus 105", "Bus 106", "Bus 107", "Bus 108", "Bus 109", "Bus 110", "Bus 111", "Bus 112", "Bus 113", "Bus 114", "Bus 115", "Bus 116", "Bus 117", "Bus 118", "Bus 119", "Bus 120", "Bus 121", "Bus 122", "Bus 123", "Bus 124", "Bus 125", "Bus 126", "Bus 127", "Bus 128", "Bus 129", "Bus 130", "Bus 131", "Bus 132", "Bus 133", "Bus 134", "Bus 135", "Bus 136", "Bus 137", "Bus 138", "Bus 139", "Bus 140", "Bus 141", "Bus 142", "Bus 143", "Bus 144", "Bus 145", "Bus 146", "Bus 147", "Bus 148", "Bus 149", "Bus 150", "Bus 151", "Bus 152", "Bus 153", "Bus 154", "Bus 155", "Bus 156", "Bus 157", "Bus 158", "Bus 159", "Bus 160", "Bus 161", "Bus 162", "Bus 163", "Bus 164", "Bus 165", "Bus 166", "Bus 167", "Bus 168", "Bus 169", "Bus 170", "Bus 171", "Bus 172", "Bus 173", "Bus 174", "Bus 175", "Bus 176", "Bus 177", "Bus 178" ], "type": "scatter", "x": [ 3408665.349175, 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141, 3408210.205095, 3408719.72605, 3408975.913755, 3410296.66458, 3411216.526165, 3412523.282265, 3413353.181945, 3414619.659505, 3413854.89557, 3417068.32117, 3412335.82098, 3416989.87706, 3420936.666405, 3419748.613735, 3417044.332345, 3416936.8934, 3411249.917565, 3417839.113615, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3410287.52413, 3417062.86489, 3410365.877105, 3411701.231155, 3417046.76693, 3412171.07318, 3412037.331555, 3417317.379745, 3411094.5293799997, 3411891.829765, 3419748.613735, 3412644.303915, 3412494.665505, 3418411.783625, 3411785.34044, 3417849.758145, 3411973.54194, 3411622.542935, 3413992.76188, 3417091.49669, 3417392.81507, 3412984.086275, 3417643.32197, 3417614.157325, 3413126.367695, 3417773.4362149998, 3410821.62822, 3407983.78155, 3419397.84279, 3419357.7620449997, 3419277.01657, 3419979.565655, 3419616.951355, 3412068.438205, 3419697.711465, 3412575.0779, 3412613.5358949997, 3412542.38331, 3419678.205055, 3412183.33188, 3418359.45578, 3412343.37775, 3414019.75533, 3413865.67305, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245, 3409538.64957, 3407984.897035, 3412268.81795, 3418745.212615, 3412143.304465, 3419021.5555249997, 3414311.22654, 3419221.18234, 3413481.2855599998, 3412220.238145, 3412851.145155, 3418890.004785, 3417019.61853, 3412082.45804, 3417250.970735, 3416952.52644, 3412339.049355, 3417439.513935, 3412453.990615, 3417043.53881, 3408131.461275, 3407976.02058, 3407642.913365, 3408223.972925, 3421413.450085, 3421459.12736, 3408045.89905, 3407935.6436, 3409798.60001, 3413898.4617749997, 3409096.600125, 3412438.404275, 3421058.997755, 3421313.47574, 3409369.512385, 3408951.664265, 3407627.22878, 3407706.186985, 3407068.74552, 3407771.006305, 3412509.49375, 3412756.53258, 3411352.7399999998, 3418844.726965, 3417796.371315, 3412259.1209299997, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3418636.99365, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417611.24743, 3417854.33292, 3418753.533525, 3418265.46984, 3418770.10536, 3419250.55144, 3418943.6674349997, 3419057.457715, 3419234.664765, 3418987.826405, 3418717.898335, 3414374.640155, 3418242.10659, 3418335.48461, 3408772.0309, 3408416.22914, 3409133.776065, 3409465.918195, 3409402.47713, 3409404.38822, 3407887.282875, 3415957.4344, 3411641.501945, 3408547.67568, 3412089.223465, 3407772.74985, 3407427.18329, 3410109.835535, 3407580.5643599997, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3411731.63789, 3408983.211045, 3410393.1329, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407626.841255, 3417098.868935, 3408444.066435, 3408444.066435 ], "y": [ 5364414.94864, 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881, 5366929.533960001, 5365410.875170001, 5364211.5701750005, 5367207.696925, 5367341.3704200005, 5367829.039055, 5370522.3722, 5365662.20595, 5370532.17406, 5369426.721965, 5368857.966840001, 5368254.9978950005, 5362804.52194, 5369365.755840001, 5363686.7694500005, 5367855.33526, 5370149.9372000005, 5368879.194555, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5369692.02639, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370300.571885, 5370502.51661, 5361518.461155, 5370438.243685001, 5370489.677610001, 5370473.070780001, 5369365.755840001, 5369017.6826450005, 5368924.077845001, 5369014.851915, 5367394.89804, 5369289.93087, 5366489.345235, 5366769.909935, 5370905.836490001, 5369163.8307300005, 5369328.91016, 5368951.073805001, 5369572.441095, 5369041.862825001, 5369150.284555, 5366754.669095, 5370490.62743, 5359666.521380001, 5369283.55578, 5365951.351740001, 5365730.16249, 5365699.86742, 5365543.414095, 5366340.79855, 5365915.13698, 5366790.77472, 5366446.5986, 5366267.2019650005, 5365307.31304, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363006.85271, 5363143.39408, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001, 5367396.459115, 5357597.62531, 5361965.8234250005, 5365482.46575, 5362222.8465100005, 5365620.6961550005, 5363573.696045, 5365385.339415001, 5362851.352340001, 5361942.450270001, 5361808.458255, 5365889.114250001, 5371396.63716, 5361762.5657, 5370854.007660001, 5371121.336080001, 5361239.5318, 5370076.235715, 5361394.883040001, 5370568.944580001, 5357026.600335, 5355254.867855, 5355408.41098, 5355362.004125, 5362571.397205001, 5362910.782760001, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363247.510285, 5364094.958985001, 5361795.338565, 5363197.1299600005, 5363113.38267, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5357185.01204, 5357563.082055001, 5357944.49746, 5370211.403535, 5368870.109585, 5370544.256, 5364736.559470001, 5364792.013845, 5366668.92399, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5364405.856085001, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364442.002145001, 5364474.723965, 5363104.6379350005, 5363455.22988, 5362524.28598, 5362788.69955, 5362367.0363300005, 5362622.245215001, 5362484.08542, 5366019.591035, 5362777.79097, 5362902.157225001, 5363665.279770001, 5362827.18118, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364631.06477, 5364375.353395, 5364135.048685, 5361864.4739850005, 5364162.393145001, 5362715.89218, 5362893.18738, 5367029.39345, 5361211.91952, 5361721.47309, 5359383.313385, 5361398.412885, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5367155.67967, 5364768.844140001, 5363605.245315, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5355652.590995001, 5364820.328685001, 5367639.480235, 5367639.480235 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(255, 0, 0)", "size": 10, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 16", "Bus 22", "Bus 28", "Bus 30", "Bus 31", "Bus 39", "Bus 40", "Bus 49", "Bus 52", "Bus 116", "Bus 117", "Bus 135", "Bus 137", "Bus 139" ], "type": "scatter", "x": [ 3412335.82098, 3411249.917565, 3410287.52413, 3410365.877105, 3411701.231155, 3412644.303915, 3412494.665505, 3412984.086275, 3413126.367695, 3412509.49375, 3412756.53258, 3418770.10536, 3418943.6674349997, 3419234.664765 ], "y": [ 5368857.966840001, 5370149.9372000005, 5369692.02639, 5369898.0554, 5370156.0428100005, 5369017.6826450005, 5368924.077845001, 5368951.073805001, 5369150.284555, 5370211.403535, 5368870.109585, 5362524.28598, 5362367.0363300005, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(128, 128, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 5
3.3028 km", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45
2.611110855 km", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48
2.0333863013 km", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56
2.1491664162 km", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59
3.15538962 km", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77
2.1218681894 km", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91
2.5282 km", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0, 128, 0)", "width": 2 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162
2.5953 km", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(0, 128, 0)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "text": [ "Line 5
3.3028 km", "Line 45
2.611110855 km", "Line 48
2.0333863013 km", "Line 56
2.1491664162 km", "Line 59
3.15538962 km", "Line 77
2.1218681894 km", "Line 91
2.5282 km", "Line 162
2.5953 km" ], "type": "scatter", "x": [ 3410934.9569125, 3416140.7611525, 3415166.0372775, 3413734.78541, 3414655.7789175, 3408127.9865025003, 3420078.1228475, 3418695.9678525003 ], "y": [ 5360989.1642325, 5365120.91828, 5363532.275185, 5365980.226365, 5370027.6374075, 5358881.906900001, 5364802.29265, 5369469.098467501 ] } ], "layout": { "autosize": true, "height": 700, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 624.049761687503, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "long_lines = net.line[net.line.length_km > 2.].index\n", "lc = pplotly.create_line_trace(net, net.line.index, color=\"grey\")\n", "lcl = pplotly.create_line_trace(net, long_lines, color=\"green\", width=2,\n", " infofunc=Series(index=net.line.index, \n", " data=net.line.name[long_lines] + '
' + net.line.length_km[long_lines].astype(str) + ' km'))\n", "\n", "low_voltage_buses = net.res_bus[net.res_bus.vm_pu < 0.98].index\n", "bc = pplotly.create_bus_trace(net, net.bus.index, size=10, color=\"blue\")\n", "bch = pplotly.create_bus_trace(net, low_voltage_buses, size=10, color=\"red\")\n", "\n", "pplotly.draw_traces(bc + bch + lc + lcl );" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "## Highlighting with the Topology Package\n", "Colors palette for plotly can be obtained using function `plotting.plotly.get_plotly_color_palette(n)` where argument `n` defines number of colors that will be returned in a list." ] }, { "cell_type": "code", "execution_count": 43, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "marker": { "color": "rgb(219, 95, 87)", "size": 5, "symbol": "circle" }, "mode": "markers", "name": "feeder 0", "text": [ "Bus 0", "Bus 77", "Bus 2", "Bus 1", "Bus 4", "Bus 3", "Bus 80", "Bus 7", "Bus 8", "Bus 78", "Bus 6", "Bus 5", "Bus 85", "Bus 156", "Bus 89", "Bus 157", "Bus 158", "Bus 159", "Bus 96", "Bus 97", "Bus 160", "Bus 161", "Bus 162", "Bus 163", "Bus 99", "Bus 165", "Bus 98", "Bus 102", "Bus 103", "Bus 104", "Bus 166", "Bus 106", "Bus 107", "Bus 167", "Bus 168", "Bus 169", "Bus 170", "Bus 110", "Bus 111", "Bus 112", "Bus 34", "Bus 171", "Bus 172", "Bus 173", "Bus 174", "Bus 115", "Bus 114", "Bus 113", "Bus 175", "Bus 122", "Bus 123", "Bus 124", "Bus 125", "Bus 55", "Bus 145", "Bus 146", "Bus 147", "Bus 148", "Bus 149", "Bus 150", "Bus 151", "Bus 153", "Bus 154" ], "type": "scatter", "x": [ 3408665.349175, 3407984.897035, 3409701.5281849997, 3409669.096215, 3408730.1735, 3409395.5326549998, 3412143.304465, 3408719.72605, 3408975.913755, 3412268.81795, 3408210.205095, 3408849.00141, 3412220.238145, 3407772.74985, 3412082.45804, 3407427.18329, 3410109.835535, 3407580.5643599997, 3408131.461275, 3407976.02058, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3408223.972925, 3408983.211045, 3407642.913365, 3408045.89905, 3407935.6436, 3409798.60001, 3410393.1329, 3409096.600125, 3412438.404275, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3409369.512385, 3408951.664265, 3407627.22878, 3412037.331555, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407771.006305, 3407068.74552, 3407706.186985, 3407626.841255, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3407983.78155, 3408772.0309, 3408416.22914, 3409133.776065, 3409465.918195, 3409402.47713, 3409404.38822, 3407887.282875, 3411641.501945, 3408547.67568 ], "y": [ 5364414.94864, 5357597.62531, 5364523.170815, 5364282.613545001, 5364581.697500001, 5363867.96846, 5362222.8465100005, 5365410.875170001, 5364211.5701750005, 5361965.8234250005, 5366929.533960001, 5365837.96881, 5361942.450270001, 5361211.91952, 5361762.5657, 5361721.47309, 5359383.313385, 5361398.412885, 5357026.600335, 5355254.867855, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5355362.004125, 5364768.844140001, 5355408.41098, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363605.245315, 5364094.958985001, 5361795.338565, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5361518.461155, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5357944.49746, 5357563.082055001, 5357185.01204, 5355652.590995001, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5359666.521380001, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364631.06477, 5364375.353395, 5364135.048685, 5361864.4739850005, 5362715.89218, 5362893.18738 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(145, 219, 87)", "size": 5, "symbol": "circle" }, "mode": "markers", "name": "feeder 1", "text": [ "Bus 82", "Bus 84", "Bus 155", "Bus 86", "Bus 92", "Bus 94", "Bus 9", "Bus 10", "Bus 11", "Bus 164", "Bus 13", "Bus 20", "Bus 105", "Bus 176", "Bus 119", "Bus 120", "Bus 121", "Bus 42", "Bus 126", "Bus 44", "Bus 45", "Bus 127", "Bus 128", "Bus 129", "Bus 130", "Bus 131", "Bus 132", "Bus 133", "Bus 134", "Bus 61", "Bus 63", "Bus 64", "Bus 65", "Bus 67", "Bus 68", "Bus 69", "Bus 143", "Bus 144", "Bus 141", "Bus 142", "Bus 70", "Bus 71", "Bus 152", "Bus 76" ], "type": "scatter", "x": [ 3414311.22654, 3413481.2855599998, 3412089.223465, 3412851.145155, 3412339.049355, 3412453.990615, 3410296.66458, 3411216.526165, 3412523.282265, 3411731.63789, 3414619.659505, 3417044.332345, 3413898.4617749997, 3417098.868935, 3418844.726965, 3417796.371315, 3412259.1209299997, 3411785.34044, 3418636.99365, 3411973.54194, 3411622.542935, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417611.24743, 3417854.33292, 3418753.533525, 3418265.46984, 3412068.438205, 3412575.0779, 3412613.5358949997, 3412542.38331, 3412183.33188, 3418359.45578, 3412343.37775, 3418242.10659, 3418335.48461, 3418717.898335, 3414374.640155, 3414019.75533, 3413865.67305, 3415957.4344, 3409538.64957 ], "y": [ 5363573.696045, 5362851.352340001, 5367029.39345, 5361808.458255, 5361239.5318, 5361394.883040001, 5367207.696925, 5367341.3704200005, 5367829.039055, 5367155.67967, 5365662.20595, 5363686.7694500005, 5363247.510285, 5364820.328685001, 5364736.559470001, 5364792.013845, 5366668.92399, 5367394.89804, 5364405.856085001, 5366489.345235, 5366769.909935, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364442.002145001, 5364474.723965, 5363104.6379350005, 5363455.22988, 5366340.79855, 5366790.77472, 5366446.5986, 5366267.2019650005, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363665.279770001, 5362827.18118, 5362777.79097, 5362902.157225001, 5363006.85271, 5363143.39408, 5364162.393145001, 5367396.459115 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(87, 211, 219)", "size": 5, "symbol": "circle" }, "mode": "markers", "name": "feeder 2", "text": [ "Bus 88", "Bus 90", "Bus 91", "Bus 93", "Bus 95", "Bus 12", "Bus 14", "Bus 16", "Bus 22", "Bus 24", "Bus 25", "Bus 26", "Bus 27", "Bus 28", "Bus 29", "Bus 30", "Bus 31", "Bus 32", "Bus 33", "Bus 35", "Bus 36", "Bus 37", "Bus 116", "Bus 117", "Bus 118", "Bus 39", "Bus 40", "Bus 46", "Bus 49", "Bus 50", "Bus 52", "Bus 54", "Bus 72", "Bus 73", "Bus 74", "Bus 75" ], "type": "scatter", "x": [ 3417019.61853, 3417250.970735, 3416952.52644, 3417439.513935, 3417043.53881, 3413353.181945, 3413854.89557, 3412335.82098, 3411249.917565, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3410287.52413, 3417062.86489, 3410365.877105, 3411701.231155, 3417046.76693, 3412171.07318, 3417317.379745, 3411094.5293799997, 3411891.829765, 3412509.49375, 3412756.53258, 3411352.7399999998, 3412644.303915, 3412494.665505, 3413992.76188, 3412984.086275, 3417643.32197, 3413126.367695, 3410821.62822, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245 ], "y": [ 5371396.63716, 5370854.007660001, 5371121.336080001, 5370076.235715, 5370568.944580001, 5370522.3722, 5370532.17406, 5368857.966840001, 5370149.9372000005, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5369692.02639, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370300.571885, 5370502.51661, 5370438.243685001, 5370489.677610001, 5370473.070780001, 5370211.403535, 5368870.109585, 5370544.256, 5369017.6826450005, 5368924.077845001, 5370905.836490001, 5368951.073805001, 5369572.441095, 5369150.284555, 5370490.62743, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(161, 87, 219)", "size": 5, "symbol": "circle" }, "mode": "markers", "name": "feeder 3", "text": [ "Bus 79", "Bus 81", "Bus 83", "Bus 87", "Bus 100", "Bus 101", "Bus 15", "Bus 17", "Bus 18", "Bus 21", "Bus 23", "Bus 108", "Bus 109", "Bus 41", "Bus 43", "Bus 47", "Bus 48", "Bus 51", "Bus 53", "Bus 56", "Bus 57", "Bus 58", "Bus 136", "Bus 135", "Bus 59", "Bus 137", "Bus 60", "Bus 138", "Bus 62", "Bus 139", "Bus 140", "Bus 66" ], "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997, 3419221.18234, 3418890.004785, 3421413.450085, 3421459.12736, 3417068.32117, 3416989.87706, 3420936.666405, 3416936.8934, 3417839.113615, 3421058.997755, 3421313.47574, 3418411.783625, 3417849.758145, 3417091.49669, 3417392.81507, 3417614.157325, 3417773.4362149998, 3419397.84279, 3419357.7620449997, 3419277.01657, 3419250.55144, 3418770.10536, 3419979.565655, 3418943.6674349997, 3419616.951355, 3419057.457715, 3419697.711465, 3419234.664765, 3418987.826405, 3419678.205055 ], "y": [ 5365482.46575, 5365620.6961550005, 5365385.339415001, 5365889.114250001, 5362571.397205001, 5362910.782760001, 5369426.721965, 5368254.9978950005, 5362804.52194, 5367855.33526, 5368879.194555, 5363197.1299600005, 5363113.38267, 5369014.851915, 5369289.93087, 5369163.8307300005, 5369328.91016, 5369041.862825001, 5366754.669095, 5369283.55578, 5365951.351740001, 5365730.16249, 5362788.69955, 5362524.28598, 5365699.86742, 5362367.0363300005, 5365543.414095, 5362622.245215001, 5365915.13698, 5362484.08542, 5366019.591035, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(128, 128, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(255, 255, 0)", "size": 10, "symbol": "square" }, "mode": "markers", "name": "buses", "text": [ "Bus 38", "Bus 177" ], "type": "scatter", "x": [ 3419748.613735, 3408444.066435 ], "y": [ 5369365.755840001, 5367639.480235 ] } ], "layout": { "autosize": true, "height": 700, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 624.049761687503, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from pandapower.plotting.plotly import get_plotly_color_palette\n", "\n", "net = nw.mv_oberrhein()\n", "\n", "mg = pp.topology.create_nxgraph(net, nogobuses=set(net.trafo.lv_bus.values) | set(net.trafo.hv_bus.values))\n", "collections = []\n", "ai = 0\n", "islands = list(pp.topology.connected_components(mg)) # getting connected components of a graph\n", "colors = get_plotly_color_palette(len(islands)) # getting a color for each connected component\n", "for color, area in zip(colors, islands):\n", " collections += pplotly.create_bus_trace(net, area, size=5, color=color, trace_name='feeder {0}'.format(ai))\n", " ai += 1\n", "collections += pplotly.create_line_trace(net, net.line.index, color=\"grey\")\n", "collections += pplotly.create_bus_trace(net, net.ext_grid.bus.values, patch_type=\"square\", size=10,\n", " color=\"yellow\")\n", "pplotly.draw_traces(collections);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Collection on mapbox\n", "Plots on Mapbox maps are available only considering you have a Mapbox account and a Mapbox Access Token. After getting a mabox token it can be written set to pandapower as the following (where `''` needs to be replaced with provided mapbox token).\n", "If network geo-data are not in lat/long form, there is a function `geo_data_to_latlong` which can be used to transform entire network geodata from a specific projection to lat/long:" ] }, { "cell_type": "code", "execution_count": 44, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "lat": [ 48.40549007606241, 48.41060722903666, 48.41100311474432 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8947079593416, 7.896048283667894, 7.896173712216692 ], "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40549007606241, 48.40551636934287, 48.40575963817082, 48.4055268532696 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8947079593416, 7.892690190852129, 7.887502065342014, 7.878529136519797 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40549007606241, 48.40360449047714 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8947079593416, 7.895064345442788 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40360449047714, 48.39796660294922 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.895064345442788, 7.89613191775149 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39796660294922, 48.39788292247765, 48.39783122887795, 48.39757191961706 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.89613191775149, 7.897077173332039, 7.9009358501319475, 7.901304807601978 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.36717009454328, 48.367588997722855, 48.372747136260564, 48.38813104890056, 48.38535297479408 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.781578254760578, 7.782415938904114, 7.787571249041797, 7.805636919599265, 7.811370592555369 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.36717009454328, 48.36674970053756, 48.36588430787831 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.781578254760578, 7.784123146908384, 7.785809443995345 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.36717009454328, 48.36700871405821, 48.365595067644534, 48.36620372462611, 48.36639701618336, 48.36481251470263, 48.36446774724093 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.781578254760578, 7.781874544974903, 7.780913142315842, 7.77915169057083, 7.777242872572381, 7.775776555187228, 7.775695905660649 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.34834126522201, 48.34860057697059, 48.349523303920996 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.758380110203183, 7.758084610072344, 7.757528366368351 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.35023997375141, 48.34834126522201 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.761479038023908, 7.758380110203183 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.34750561849222, 48.34759205831028, 48.348120675529074, 48.34834126522201 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.755691317531285, 7.756422840300819, 7.756456152212044, 7.758380110203183 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.385539481251776, 48.385150459695026, 48.38528923325705, 48.38651874735516 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.755987281846834, 7.754936541688859, 7.752264174321627, 7.749098302762139 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.385539481251776, 48.38577499413253, 48.38647184045549, 48.386749567178704, 48.3874153634542, 48.38787177811008 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.755987281846834, 7.755867224918182, 7.756532496276515, 7.756205473201505, 7.756694065388471, 7.755277485653522 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38789817455823, 48.38787586615857, 48.38940745322478 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.816726675067033, 7.81622593503414, 7.814401857028636 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.387554015831256, 48.38824937519955, 48.387702180733314, 48.38637650877378, 48.38743514280955, 48.38789817455823 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.811928656238718, 7.813485965068052, 7.813979419660251, 7.81428296170347, 7.816863859935843, 7.816726675067033 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39721686304388, 48.40810118664213 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.763967963075327, 7.7711189069166515 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40810118664213, 48.40897040695545, 48.40913221025741 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.7711189069166515, 7.769656033756945, 7.769463871775121 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40115572630924, 48.401147192227256, 48.40180506554106, 48.403988079279166, 48.404144714210396 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8361383171097305, 7.836125476104098, 7.83739965076556, 7.841204475200443, 7.84164511823214 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40115572630924, 48.40022903250557, 48.40021513104056 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8361383171097305, 7.835783312488762, 7.835716941924163 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41271758635438, 48.41442695301358, 48.41556285746508 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.889313095595696, 7.888004329429848, 7.888468123365731 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41556285746508, 48.419194753695685, 48.421893919694526 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.888468123365731, 7.8936321320293485, 7.901150019336374 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41556285746508, 48.41572609267613 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.888468123365731, 7.879041696902467 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41377255466426, 48.41396058205242, 48.41520010054602 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.901303414862235, 7.902018853458887, 7.902638577055225 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.414242480883395, 48.41442462856805, 48.41538086848998, 48.41552371266226, 48.41520010054602 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8963835846532575, 7.897599470445078, 7.897895242226608, 7.901830541319305, 7.902638577055225 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.434908969273856, 48.43301239443272, 48.431691688874466 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.810916838962296, 7.8098100277588465, 7.813287824838175 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.431691688874466, 48.431385728136846, 48.43111791204204, 48.430037266388126 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.813287824838175, 7.812791494205497, 7.8109220612220165, 7.809467223941316 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46357677093137, 48.46330568615259, 48.46088669813349, 48.458211727907035, 48.45715225417666, 48.45412175433379 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.815930580624138, 7.8174482688698275, 7.815439202434551, 7.818286894295967, 7.825631951055531, 7.824490292422416 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.462966137609016, 48.461520715433174, 48.46377225434117, 48.46392050699719, 48.46287434251547, 48.46354502678717, 48.46357677093137 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.805015433493411, 7.808201496422336, 7.811538745152171, 7.811827811522226, 7.815509915547556, 7.815387741483943, 7.815930580624138 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.44215898326708, 48.45155156672426 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8166146453040595, 7.819549800807648 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4520004486148, 48.45179274446283, 48.45227496161182, 48.45155156672426 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.815999191593257, 7.817498572038815, 7.817775058148472, 7.819549800807648 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.466407519502575, 48.467138864546264, 48.46829711967187, 48.46870230866751 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.800222048335613, 7.800113593024236, 7.800610379993529, 7.799503775436736 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46584321750807, 48.466407519502575 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.80752534227331, 7.800222048335613 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43599439563442, 48.4362055733579, 48.43694878245399, 48.43815271598549 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.806058800069422, 7.806421309165015, 7.805599960895004, 7.80673405778964 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43599439563442, 48.436230098706325, 48.43479353997049, 48.433461816428554, 48.43251066830495 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.806058800069422, 7.805335765721932, 7.805199488129543, 7.804603425726798, 7.804666086284209 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41414363205724, 48.41861893207832, 48.41987792805789 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.769441570183095, 7.766083922141606, 7.765743379197091 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41414363205724, 48.41394093258762, 48.414134725399144, 48.41297284403903 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.769441570183095, 7.769730282276106, 7.770542159455186, 7.771503761305329 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41414363205724, 48.414371438124, 48.41460781659752, 48.414566847409716, 48.413949635424736 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.769441570183095, 7.768406128570779, 7.767799181835386, 7.76713218273902, 7.766593408887951 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.434908969273856, 48.4348039992478, 48.43586958521815, 48.437252750993984 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.810916838962296, 7.811763300489368, 7.812358889947379, 7.812134057997846 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.3444105914956, 48.34240156159719, 48.34188624338181, 48.33596247728857, 48.331983432639284 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.759629839160128, 7.758283756273891, 7.757160848106757, 7.753461280522283, 7.753125163009409 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.331983432639284, 48.33034649606129, 48.32945774646641 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.753125163009409, 7.761877118332033, 7.761240053860368 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.331983432639284, 48.33020889805156, 48.3297903765829 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.753125163009409, 7.753573521770244, 7.753395370106913 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41572609267613, 48.415754019328425, 48.42084885223843, 48.4229645493474 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.879041696902467, 7.877416142764672, 7.854664591434976, 7.845385081335858 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40850592727621, 48.40904311794737, 48.40388379782281 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775266635504604, 7.777498262968239, 7.788731914746645 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40388379782281, 48.39607413223037, 48.39606378340132 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.788731914746645, 7.805732381533399, 7.8057758179679615 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.398115449480244, 48.40965933667854 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8426383362929775, 7.86375666391543 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40965933667854, 48.40835437410063, 48.40633626883148, 48.4055268532696 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.86375666391543, 7.866225916836617, 7.875543574545038, 7.878529136519797 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39170089001182, 48.39208848005875, 48.3932605026847, 48.39410379848378, 48.394554739534286, 48.39606378340132 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8126537758568055, 7.812246482891534, 7.811644040831371, 7.809930941843631, 7.806087360715251, 7.8057758179679615 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.398115449480244, 48.39828929483894, 48.40038690577195, 48.401150186273235, 48.40220930073991, 48.402611223198186, 48.403862633463525, 48.404144714210396 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8426383362929775, 7.842030849441703, 7.839096884116497, 7.83989266587349, 7.841390825296571, 7.842892000465713, 7.842087064909871, 7.84164511823214 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43625936008396, 48.43621079355224, 48.4375915317665 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.786659017249014, 7.786974059473482, 7.799059506222635 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43784808661677, 48.43625936008396 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.776376345809668, 7.786659017249014 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4375915317665, 48.438365076975934, 48.43811625359848, 48.43774644970764, 48.43721361179621, 48.43815271598549 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.799059506222635, 7.79926973043239, 7.802946687308421, 7.804438421470535, 7.805266836376121, 7.80673405778964 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39721686304388, 48.39694908313921, 48.39667324003736, 48.39581646128183, 48.393568726631216, 48.3920182743164, 48.389305854830766, 48.388816338535605 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.763967963075327, 7.764958576168508, 7.766290866385869, 7.765925898160517, 7.763765633373263, 7.762700018994479, 7.761571047728088, 7.761470329043948 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4229645493474, 48.42844093575865, 48.429742025433235 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.845385081335858, 7.821346748489756, 7.818122484083059 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43503247924935, 48.44215898326708 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.814348752471256, 7.8166146453040595 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46664642659273, 48.46690297490613, 48.46785146428183, 48.46940220140584, 48.4700248786312 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.834053059787828, 7.834293506224103, 7.836048527306521, 7.835171724259093, 7.835840183052138 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45794147327886, 48.45816150593776, 48.45958978415041, 48.45952177587914, 48.46491575387908, 48.46664642659273 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.872608192748625, 7.871205169962752, 7.865685066309862, 7.855674529525037, 7.834291967844844, 7.834053059787828 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.466489410328336, 48.46658585880405, 48.46719882495215, 48.46600061457696, 48.46663092407985, 48.46664642659273 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.827272008388628, 7.8277365143264825, 7.829141388900078, 7.831866337061972, 7.833564402405951, 7.834053059787828 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4658421352211, 48.466489410328336 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.818941066410403, 7.827272008388628 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.439874883455424, 48.43784808661677 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.7615333943715035, 7.776376345809668 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4604578360895, 48.459942292632206, 48.45859429978941 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.787018478319392, 7.78662365658653, 7.786003458366173 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46284775712659, 48.46255155296364, 48.46047175881355, 48.4604578360895 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.798915550853087, 7.798843163722211, 7.787194863706104, 7.787018478319392 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46585030578092, 48.46578217805131, 48.465007274168464, 48.46263647425135, 48.46107800484119, 48.461045792318515, 48.46053877935838, 48.4604578360895 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.79305306057687, 7.795085016423698, 7.794918198969298, 7.796165093559586, 7.788830555207495, 7.786709754259317, 7.786464198716023, 7.787018478319392 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38535297479408, 48.38527882216764, 48.382887094355645 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.811370592555369, 7.811318787572469, 7.815501413379947 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38535297479408, 48.385928270244946, 48.386430065450135, 48.3871739014232, 48.387554015831256 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.811370592555369, 7.811595368627118, 7.8110655410750915, 7.81136875226478, 7.811928656238718 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39773842093887, 48.399447776583635, 48.3984020874538, 48.398980931406236, 48.398094303535 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.9084945276104195, 7.909391336045122, 7.924082516891615, 7.926292142746033, 7.931257487388791 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.398094303535, 48.39632695296329, 48.39605777290455 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.931257487388791, 7.932851955355446, 7.937738708318361 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.42317235658359, 48.42387899646563, 48.42556885464923 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.904856256838342, 7.905657633837185, 7.903027274636419 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.42556885464923, 48.426746959273764, 48.426754589785816 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.903027274636419, 7.904313419921688, 7.904323568737333 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.42556885464923, 48.42678214922959, 48.430715471028996, 48.431871317653105, 48.43274836139323, 48.433206518352755 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.903027274636419, 7.900422767586749, 7.895925122046382, 7.89306465328747, 7.888368095378101, 7.887773560526454 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.421893919694526, 48.42021485438325, 48.41985264054491, 48.42108182049426 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.901150019336374, 7.902983352314626, 7.904558598573622, 7.907598272338195 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.42108182049426, 48.42140868537678, 48.42259830298465, 48.424189374801 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.907598272338195, 7.907531430645335, 7.9052989811040755, 7.90828612482716 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.421893919694526, 48.42317235658359 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.901150019336374, 7.904856256838342 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.349523303920996, 48.35033193619265, 48.3526108097117 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.757528366368351, 7.757431972718276, 7.7545673423258386 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.36812436772768, 48.354057545467725, 48.349523303920996 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.757061058783549, 7.76129468741435, 7.757528366368351 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.424006590648986, 48.42255372117566 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.917782616603534, 7.912914076992986 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.42255372117566, 48.42455517977702, 48.42590628658488 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.912914076992986, 7.914608155074788, 7.913933853984345 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.426188487218326, 48.4262003114186, 48.42567694197769, 48.42624241123789, 48.42551677297042, 48.42590628658488 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.909334378322094, 7.909609713731938, 7.910526348475593, 7.911706758846923, 7.91260162511729, 7.913933853984345 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.42255372117566, 48.42109713594567, 48.420438677160725 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.912914076992986, 7.914987797345011, 7.913786733913147 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.426188487218326, 48.42540397589623, 48.424189374801 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.909334378322094, 7.910628274806562, 7.90828612482716 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41021512075374, 48.411324882457365, 48.412391654151094 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.888453497872278, 7.886142061203813, 7.886036456351012 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41271758635438, 48.412538868389674, 48.412646305840084, 48.412391654151094 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.889313095595696, 7.886754678860876, 7.88626878477168, 7.886036456351012 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40051528842866, 48.39898138560276, 48.39757191961706 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.901722719875609, 7.901478376520011, 7.901304807601978 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39757191961706, 48.396618597306905, 48.395299306037806 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.901304807601978, 7.901229365760782, 7.90205872309751 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41100311474432, 48.411197289242, 48.41219987862297 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.896173712216692, 7.898364527394128, 7.899896941709586 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.401639717054444, 48.40314742068416, 48.41145849305281, 48.420438677160725 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.9328354216280506, 7.931111333953971, 7.924782339298749, 7.913786733913147 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.412959833670094, 48.41328728677549, 48.414242480883395 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.894375462302109, 7.894609615717571, 7.8963835846532575 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41271758635438, 48.412959833670094 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.889313095595696, 7.894375462302109 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41219987862297, 48.41243010410867, 48.41377255466426 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.899896941709586, 7.901517441608324, 7.901303414862235 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.401639717054444, 48.40146312322061, 48.400918516127334 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.9328354216280506, 7.934454805930536, 7.936287351303501 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.400918516127334, 48.3996743385898, 48.39911501545859 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.936287351303501, 7.937871546738272, 7.938291961287202 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39605777290455, 48.39622610359972, 48.39706035508018, 48.39826119272725, 48.39860559684791, 48.39883465485712, 48.39911501545859 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.937738708318361, 7.937908408830377, 7.936633845961019, 7.936815722259916, 7.937734034157203, 7.937547687028119, 7.938291961287202 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.3297903765829, 48.328974117162275, 48.32845845019049 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.753395370106913, 7.755869301063094, 7.757920252549552 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.3444105914956, 48.34403541580135, 48.34396313065524 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.759629839160128, 7.75782276527147, 7.755780231459689 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.396217027426985, 48.396778066442074, 48.397053760799785, 48.39773842093887 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.905919468287753, 7.905870190748854, 7.907751741755607, 7.9084945276104195 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.395299306037806, 48.39512339357625, 48.3939077528269 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.90205872309751, 7.9026198872801, 7.904432371911033 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.3939077528269, 48.39294498344864, 48.39430048606478, 48.394489103137495, 48.39499750403587 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.904432371911033, 7.90720373734137, 7.90819035399443, 7.90794776041544, 7.908338597387135 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.39499750403587, 48.396340701525595, 48.396217027426985 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.908338597387135, 7.907877408859961, 7.905919468287753 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.359387497487134, 48.3602321159914, 48.360821415377465, 48.36133205154042 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.77541441952261, 7.775897231830879, 7.7762738316504265, 7.776701020794866 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.36133205154042, 48.361342842453865, 48.36244816364895, 48.36261088253629 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.776701020794866, 7.777133131484123, 7.777571136256727, 7.777566812718121 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.35663791686056, 48.357890227426644, 48.359387497487134 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.776039269015391, 7.77632396106846, 7.77541441952261 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.35975182971347, 48.35778042545513, 48.35663791686056 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.770325968788042, 7.772129830968809, 7.776039269015391 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.35975182971347, 48.35023997375141 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.770325968788042, 7.761479038023908 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.36446774724093, 48.36350223296791, 48.36261088253629 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775695905660649, 7.776419559308654, 7.777566812718121 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.34396313065524, 48.34426775081148, 48.34552927820808, 48.345772887818804 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.755780231459689, 7.755044310619697, 7.753952346270859, 7.7538594144436805 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.345623656884975, 48.34600528831053, 48.34750561849222 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.756184412909383, 7.756219304854599, 7.755691317531285 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.34750561849222, 48.34758219051105, 48.34920225220246, 48.34979925580374 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.755691317531285, 7.7541962576323025, 7.754530233365392, 7.752695973125167 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.345623656884975, 48.345533289077835, 48.345693810989175, 48.345772887818804 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.756184412909383, 7.7560847480531505, 7.754031231612078, 7.7538594144436805 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.34979925580374, 48.34979996068833, 48.349078642676616 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.752695973125167, 7.751810826297168, 7.745178558182357 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38819903758298, 48.3873020769341, 48.38622195737371 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.757804110375216, 7.759170513376308, 7.76226955024253 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38622195737371, 48.385914208309465, 48.387253837121776 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.76226955024253, 7.763443859194219, 7.764481499839719 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.387253837121776, 48.38794755581447, 48.38852075079145, 48.388816338535605 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.764481499839719, 7.762130310127758, 7.762763912430871, 7.761470329043948 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38651874735516, 48.386703185505056, 48.38849987706139 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.749098302762139, 7.747917223087707, 7.749908553830717 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38819903758298, 48.388485218743035, 48.388753667201904, 48.38787177811008 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.757804110375216, 7.756986342856801, 7.75516628477344, 7.755277485653522 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.381988033757224, 48.38177684669241, 48.38177158751474, 48.38124747666239, 48.38127333695404 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.753874632672531, 7.754239849704478, 7.754899242160297, 7.754909950395624, 7.756128882041786 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38593046261288, 48.38651874735516 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.747766254755177, 7.749098302762139 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.381988033757224, 48.38256215965859, 48.38363665057252 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.753874632672531, 7.750416988747825, 7.751239703606833 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38363665057252, 48.384248057650645, 48.38471159039433, 48.38478902400804, 48.38593046261288 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.751239703606833, 7.751637732522006, 7.750171002545883, 7.748848329315541, 7.747766254755177 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.381988033757224, 48.375902471849464, 48.36812436772768 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.753874632672531, 7.754719524904049, 7.757061058783549 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38593046261288, 48.38664414979842, 48.38747799457919 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.747766254755177, 7.747345601649864, 7.744260686465286 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41987792805789, 48.43345787620781 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.765743379197091, 7.7585288455939665 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41987792805789, 48.4200299349893, 48.42373656388579 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.765743379197091, 7.766447757298655, 7.767396711800372 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4106662024164, 48.410778162855365, 48.40987064550492 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775188962956967, 7.77674238652206, 7.778809539550178 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41091584192147, 48.41125561432176, 48.4124244421834 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.765225672614365, 7.764837816896532, 7.76606484746611 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.413486950801484, 48.41182097442182, 48.412450924445146, 48.4124244421834 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.761798098368771, 7.7639922621668935, 7.765722943668012, 7.76606484746611 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40913221025741, 48.409159177441765, 48.40969201784859, 48.41091584192147 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.769463871775121, 7.769431844659233, 7.7665951997192195, 7.765225672614365 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41297438457729, 48.41331062258001, 48.4123141062621, 48.4120381144602 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775990558453709, 7.776748729172764, 7.778617825020764, 7.779195765893586 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40850592727621, 48.40798047975019, 48.40610336882051 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775266635504604, 7.775768029695281, 7.775204689771646 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.413949635424736, 48.41402817045772, 48.41423953061414, 48.413486950801484 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.766593408887951, 7.765444260339439, 7.762677742769116, 7.761798098368771 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41297284403903, 48.41358426166424, 48.41284311449611, 48.41297438457729 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.771503761305329, 7.773426581451681, 7.775328167829107, 7.775990558453709 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40850592727621, 48.40895948375834, 48.41002748821806, 48.4106662024164 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775266635504604, 7.775834208670297, 7.775918857568513, 7.775188962956967 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4106662024164, 48.4110820109806, 48.41202505132909, 48.41266511728967, 48.41297438457729 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.775188962956967, 7.776156826669018, 7.776069305156782, 7.775436339281674, 7.775990558453709 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40021513104056, 48.39984602561909, 48.39850086933367, 48.397536748144226 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.835716941924163, 7.834017116189658, 7.83265609981566, 7.830587014176033 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40021513104056, 48.399196490714516, 48.39847231884331, 48.399008499161106 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.835716941924163, 7.835858596456743, 7.836801497796553, 7.837825353282277 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43503247924935, 48.435288574248574, 48.435439366512185, 48.436011043823065, 48.43731600257155, 48.437252750993984 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.814348752471256, 7.813250525813567, 7.812532716282892, 7.8128153969307474, 7.8125753726717475, 7.812134057997846 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38940745322478, 48.38938411385852, 48.389190547422494 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.814401857028636, 7.814291499576686, 7.813750946930894 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.38940745322478, 48.38967584196678, 48.39156960616492, 48.39170089001182 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.814401857028636, 7.814283926768282, 7.812753400538021, 7.8126537758568055 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.388073277915936, 48.388456987331466, 48.39023179835488, 48.3911177281352, 48.39305079689933, 48.39485609666392, 48.396704883728056, 48.39743032423392, 48.397536748144226 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.822295509468547, 7.823869402630555, 7.821060890101761, 7.822347038318297, 7.824097180083762, 7.828171691377432, 7.829222350628085, 7.830348907527056, 7.830587014176033 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.384299821641136, 48.38482287897183, 48.38520652110626, 48.386411329681195, 48.387031003585435, 48.38770493588316, 48.388073277915936 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.817020486640479, 7.8187887099884605, 7.8194394395365086, 7.822665542229687, 7.82198478444112, 7.822815782652554, 7.822295509468547 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.382887094355645, 48.38240623332936, 48.383115188134305, 48.384299821641136 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.815501413379947, 7.816546084219191, 7.8176024284740455, 7.817020486640479 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45286282617741, 48.45236679952003, 48.452472330174245, 48.4520004486148 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.818002161030199, 7.81735047281143, 7.816277752431433, 7.815999191593257 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4520004486148, 48.4518489851428, 48.45198309301552, 48.451139116622976, 48.45138394977538 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.815999191593257, 7.8159470252984145, 7.8154455454548195, 7.814877765306854, 7.81386610882482 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45231100630828, 48.45286282617741 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.82260854480729, 7.818002161030199 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45231100630828, 48.45266207846716, 48.4543191325133, 48.45412175433379 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.82260854480729, 7.822566781765138, 7.823197223787065, 7.824490292422416 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.430037266388126, 48.43027933506786, 48.43083045464513, 48.43251066830495 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.809467223941316, 7.808549583479154, 7.804648465174723, 7.804666086284209 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.430037266388126, 48.42998020030199, 48.42871494027006 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.809467223941316, 7.809391548745799, 7.810780426185848 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43503247924935, 48.434970421032745, 48.43310110711298, 48.43283117116668 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.814348752471256, 7.815872682700299, 7.815418792061373, 7.817531148856758 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.429742025433235, 48.42987868583484, 48.43023545576382, 48.4306924859205, 48.43088424285493, 48.43283117116668 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.818122484083059, 7.818083816984841, 7.817135120871869, 7.817461811443534, 7.816642126259775, 7.817531148856758 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.429742025433235, 48.42919600788272, 48.42888699876993, 48.42811920030154 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.818122484083059, 7.8164050618348995, 7.817027926271891, 7.817198631577032 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45615430303409, 48.45358185114635, 48.45301794986834, 48.453611293794474 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.909234863520262, 7.903483652202673, 7.900317070730212, 7.895958297692228 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.453611293794474, 48.45475150473159, 48.45601148005711 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.895958297692228, 7.8956862736710836, 7.888307623910822 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45601148005711, 48.45627719348572, 48.456097127840614, 48.45630214585839 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.888307623910822, 7.88776916325827, 7.883674810334897, 7.882123314640699 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45852459670366, 48.4569382040042 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.885461594829367, 7.913960629334794 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46584321750807, 48.46596098113992, 48.46600035605018, 48.46630497792045, 48.4661470004884 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.80752534227331, 7.80754101864081, 7.810031262748202, 7.810539456577534, 7.81129440007589 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4658421352211, 48.46581065840659, 48.46590380868623, 48.4661470004884 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.818941066410403, 7.814808134254484, 7.812943051142982, 7.81129440007589 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45663219653908, 48.456833482269886, 48.45740074172955, 48.45615430303409 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.913099680241396, 7.912790933340661, 7.912023603713898, 7.909234863520262 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46284775712659, 48.462966137609016 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.798915550853087, 7.805015433493411 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46870230866751, 48.465884252336345, 48.465880383024654 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.799503775436736, 7.797891210313311, 7.796742737062005 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.465880383024654, 48.46590636450038, 48.46585030578092 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.796742737062005, 7.794110968819995, 7.79305306057687 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46499296672238, 48.465615075712854, 48.46636840611702, 48.46654892076256, 48.46740551089215 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.877253109601893, 7.876719230418665, 7.876755015618762, 7.876972891130834, 7.877156262352438 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.472360114769316, 48.47232304101376, 48.47165336171102, 48.47114089929794, 48.46913517198261, 48.46937137732608, 48.467794565092966, 48.46740551089215 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.875816099565331, 7.875534511796639, 7.875985161359858, 7.875486830253149, 7.876637087726613, 7.877441949337699, 7.8784594392724, 7.877156262352438 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.4613555876003, 48.46292133786397, 48.463027583083495 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8834468909549855, 7.883787221239259, 7.882607162668001 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.463027583083495, 48.463503680108325, 48.46419158988042 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.882607162668001, 7.884018547868955, 7.884320758321548 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.462169343727574, 48.46323445829534, 48.463027583083495 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.880230044935533, 7.8804581438335815, 7.882607162668001 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45852459670366, 48.45925446070308, 48.460217725224446, 48.460193056885444, 48.460862623984305, 48.46087555486147, 48.4613555876003 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.885461594829367, 7.885108020255011, 7.884632762011413, 7.884079704569312, 7.883791479415832, 7.883409991222734, 7.8834468909549855 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.472360114769316, 48.47484422826085 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.875816099565331, 7.876668674237667 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.469995861910235, 48.471352495441344, 48.47162030378073, 48.472360114769316 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8799044176633215, 7.878813093143337, 7.876277200018275, 7.875816099565331 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46626640796229, 48.466671630179064, 48.467065898624384, 48.46954175798025, 48.469995861910235 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.880884492342217, 7.8816500020356735, 7.882595447383071, 7.881056765995633, 7.8799044176633215 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.433206518352755, 48.43560076570538, 48.442648263362436, 48.44299303112847 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.887773560526454, 7.884664667578182, 7.8783627557360765, 7.876252723593842 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45375026829303, 48.453797177437885, 48.45401796002383, 48.45477827748655 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.88517175431814, 7.884505171805365, 7.880912379082944, 7.8780829873512435 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45477827748655, 48.454862932557084, 48.455538853940965, 48.45634075148979, 48.457138914558186 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8780829873512435, 7.877908932007487, 7.878580240512052, 7.8770142301153365, 7.8777176531569495 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45630214585839, 48.456681773446036, 48.457138914558186 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.882123314640699, 7.879801543323435, 7.8777176531569495 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45852459670366, 48.45835960086805, 48.45867550572121, 48.459363549919026 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.885461594829367, 7.883522518897455, 7.880600941961385, 7.880760551329065 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45375026829303, 48.453216141645576, 48.44925911156311, 48.44679416446019, 48.44659344334918 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.88517175431814, 7.885301981835198, 7.88291375765926, 7.8792242738174965, 7.876889542193039 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45375026829303, 48.4537292909254, 48.452782213375116, 48.452317091700706 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.88517175431814, 7.886951183856484, 7.886928854505144, 7.888244332713167 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.44659344334918, 48.44509707761739, 48.4444555753831, 48.443492269049536, 48.44299303112847 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.876889542193039, 7.876863406747357, 7.876408564981776, 7.876439417323305, 7.876252723593842 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.457138914558186, 48.45794147327886 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.8777176531569495, 7.872608192748625 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.45794147327886, 48.45828506195322, 48.46130227308567, 48.46134835145958 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.872608192748625, 7.87239644881949, 7.874935206203324, 7.875200408303946 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46134835145958, 48.46161584279951, 48.46328048605441, 48.46363931398706 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.875200408303946, 7.875153215471733, 7.877121230823239, 7.877500631694728 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46363931398706, 48.46499296672238 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.877500631694728, 7.877253109601893 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.46626640796229, 48.46601268490752, 48.4658585507005, 48.46419158988042 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.880884492342217, 7.882132382848775, 7.883586919552062, 7.884320758321548 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.43345787620781, 48.43510803999951, 48.437822432849366, 48.439874883455424 ], "legendgroup": "lines", "line": { "color": "rgb(128, 0, 128)", "width": 1 }, "lon": [ 7.7585288455939665, 7.758956898218413, 7.758431384490911, 7.7615333943715035 ], "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.40804865254953, 48.40564324572021, 48.40454728326978, 48.40078554671318, 48.3978570756778, 48.38043909258056, 48.366959897540426, 48.36630037040474, 48.34906194044579, 48.34929061948671, 48.34823097037554, 48.38521984647603, 48.38708246531645, 48.38864165969167, 48.387039344753546, 48.402659024843004, 48.40853579679879, 48.402896572410114, 48.4006923794074, 48.41357226968398, 48.4205443366951, 48.41564447507061, 48.41458034129922, 48.41545229057612, 48.432352041653594, 48.43125182008944, 48.45768199104185, 48.46264648488717, 48.44685527499567, 48.45203385303732, 48.467717992109066, 48.466125368505324, 48.43755074921974, 48.43412767819952, 48.416381282067775, 48.413553784719085, 48.41448962736076, 48.435336792232974, 48.338924360335184, 48.331164964350286, 48.33109616534542, 48.41830143578343, 48.40646345788509, 48.39997896502659, 48.40388739307939, 48.40734532146605, 48.394329269009035, 48.40167974350658, 48.43690116265937, 48.43705372335036, 48.43824066528721, 48.39469259395652, 48.42570274255303, 48.43859573125822, 48.46862683284384, 48.46221876487911, 48.46659971976456, 48.466165772774715, 48.4388614850361, 48.45926829621081, 48.46151165588859, 48.46185723954627, 48.384082958261644, 48.38680198343667, 48.398924932018716, 48.39619236293392, 48.42472392555743, 48.42615790696149, 48.42874881012929, 48.420033747464075, 48.42339383889283, 48.42253313813906, 48.351471372952176, 48.36109095659771, 48.42328015591232, 48.423554450476345, 48.42595967660779, 48.421825428560666, 48.42479667534862, 48.410770001605556, 48.412628227372025, 48.39974833701571, 48.395958951672355, 48.41110020199316, 48.41594858510677, 48.413764883829444, 48.41283871001224, 48.41231499136582, 48.40119081967397, 48.40029642735857, 48.39766077390371, 48.32938224687258, 48.34399927322829, 48.39691591362093, 48.39451557320157, 48.39342636813777, 48.39627886447629, 48.36052676568443, 48.36189550305141, 48.358638862456885, 48.35720917115785, 48.35499590173244, 48.3630565577521, 48.34489851450978, 48.34675545340137, 48.348392221356754, 48.345613550033505, 48.34943930168247, 48.3867620171539, 48.386584022715624, 48.38760069646813, 48.387601531283224, 48.38861944297247, 48.381509532088565, 48.38622460498402, 48.38227509670791, 48.38475030720119, 48.37201341978857, 48.38706107218881, 48.42666790213285, 48.42188324943754, 48.410324404180145, 48.411840028252584, 48.41265396261166, 48.40942559764518, 48.41281236442106, 48.40704192428535, 48.41413385053593, 48.41321368808018, 48.4094934859882, 48.411553531154844, 48.39917344747638, 48.39883440477891, 48.43572520516763, 48.38928733064051, 48.39062272406585, 48.392084262517265, 48.38580892539373, 48.38276071073183, 48.45241956484713, 48.45156110481925, 48.45258691624284, 48.45349060549023, 48.4305548948565, 48.429347570286026, 48.43403576407286, 48.430788364387716, 48.429469016657976, 48.453299900507346, 48.45538149239435, 48.45618716066316, 48.457731400353936, 48.46598066859505, 48.465826396813846, 48.45677752238182, 48.4629069473678, 48.46729328050193, 48.46589337376251, 48.46599174091494, 48.470138035640275, 48.462138462732135, 48.46326563159591, 48.46313102068942, 48.46020539105494, 48.47360217151508, 48.47148639961104, 48.46830382830232, 48.43912451453391, 48.453907568730855, 48.45593980271538, 48.45649195965221, 48.45851755329463, 48.44802663801165, 48.453255752150255, 48.44477632650025, 48.45754019391852, 48.45979366751945, 48.46244816442696, 48.46431614035472, 48.46593561780401, 48.43646523642444 ], "legendgroup": "lines", "lon": [ 7.895378121504747, 7.883015600930905, 7.8948861523921945, 7.895598131597139, 7.899006511731994, 7.796604084320531, 7.782850700834481, 7.778197281571606, 7.757806488220348, 7.759929574113546, 7.757418131207613, 7.753600358005243, 7.7564497692949885, 7.8153138960313875, 7.814131190681861, 7.767543434995989, 7.770387470336798, 7.839302062983002, 7.835960814799247, 7.888658712512772, 7.897391075682862, 7.883754910134099, 7.902328715257056, 7.8998628917729565, 7.811548926298511, 7.811856777713757, 7.821959422675748, 7.809870120787253, 7.818082223055853, 7.8176368150936435, 7.800361986508882, 7.803873695304461, 7.806167009342323, 7.804901456928171, 7.767762746162351, 7.771022960380257, 7.768102655203082, 7.8120610952183736, 7.755311064314521, 7.757501140670721, 7.753349342389827, 7.866040367099824, 7.783115088857442, 7.797232148140022, 7.853197500104203, 7.8708847456908275, 7.808009151279441, 7.840641745585031, 7.793016782848058, 7.7815176815293405, 7.801108208870406, 7.76484576576689, 7.833365914912807, 7.815481698887657, 7.835610125782807, 7.84498324868494, 7.8305038629810255, 7.823106537399516, 7.768954870090585, 7.786313557476351, 7.793019013714158, 7.79249782438354, 7.813410100476208, 7.811217146669936, 7.916736926468369, 7.935295331836903, 7.904342454236803, 7.9036703472790535, 7.898173944816565, 7.903770975444124, 7.906792552965618, 7.903003138087358, 7.755999657522057, 7.759177873098949, 7.91534834679826, 7.913761116033887, 7.911116553661258, 7.913950937168998, 7.9094571998168615, 7.887297779538045, 7.888033887228286, 7.90160054819781, 7.901644044429146, 7.89726911980541, 7.919284536605948, 7.895496600185414, 7.891844278948902, 7.900707191658955, 7.935371078617019, 7.937079449020887, 7.936724784110467, 7.754632335585004, 7.756801498365579, 7.90681096625223, 7.9035261295955666, 7.905818054626202, 7.906898438573857, 7.776085531740653, 7.777352133870425, 7.775869190295535, 7.7740845499921, 7.765902503405975, 7.776993186013387, 7.754498328445278, 7.755955311192942, 7.754363245498848, 7.755057989832615, 7.748494692239763, 7.760720031809418, 7.763962679516969, 7.7633059049837385, 7.748912888459212, 7.756076313815121, 7.75490459627796, 7.748432278758658, 7.752145810710179, 7.749509665930712, 7.755890291843799, 7.745803144057575, 7.762136112395529, 7.766922234549513, 7.7777759630361185, 7.765451332181321, 7.762895180267832, 7.768013522189227, 7.777683277096765, 7.775486359733463, 7.7640610015542775, 7.774377374640395, 7.775876533119405, 7.7761130659129005, 7.833336608002659, 7.836330047126648, 7.81267405660682, 7.81402122325379, 7.813518663653152, 7.82322210920103, 7.821052490883098, 7.8170742563466185, 7.816814112621431, 7.815161655380837, 7.820305352918744, 7.822882002776101, 7.806599024326939, 7.810085987465824, 7.8156457373808355, 7.817051968851654, 7.817263772958979, 7.901900361466442, 7.891996948790952, 7.885721986796583, 7.89971111208208, 7.808786140694506, 7.816874600332444, 7.91062923361708, 7.801965492173249, 7.798697492875023, 7.7954268529410005, 7.876737123018714, 7.876061958989881, 7.883617056097123, 7.883312855268478, 7.881532653250791, 7.8843562332903625, 7.876242386901499, 7.877545146580806, 7.881826106689353, 7.88151371165713, 7.882708775444154, 7.877797235313695, 7.880962428982067, 7.88206173042942, 7.881069015738378, 7.886940019180814, 7.876635985864566, 7.8751629229527875, 7.873665827511408, 7.876137223147486, 7.877376870648311, 7.882859651200419, 7.7586941413546615 ], "marker": { "color": "rgb(128, 0, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scattermapbox" }, { "hoverinfo": "text", "lat": [ 48.41091584192147, 48.40987064550492, 48.4120381144602, 48.40610336882051, 48.4124244421834, 48.42373656388579, 48.43345787620781, 48.41987792805789, 48.40913221025741, 48.43625936008396, 48.4375915317665, 48.44215898326708, 48.466489410328336, 48.4229645493474, 48.46664642659273, 48.457138914558186, 48.45138394977538, 48.44659344334918, 48.398094303535, 48.4569382040042, 48.4055268532696, 48.44299303112847, 48.46284775712659, 48.452317091700706, 48.46870230866751, 48.45794147327886, 48.4658421352211, 48.46134835145958, 48.45859429978941, 48.46363931398706, 48.4604578360895, 48.462966137609016, 48.46499296672238, 48.4661470004884, 48.38535297479408, 48.46626640796229, 48.465880383024654, 48.46584321750807, 48.4569382040042, 48.45286282617741, 48.4520004486148, 48.453611293794474, 48.43815271598549, 48.45601148005711, 48.430037266388126, 48.43251066830495, 48.4700248786312, 48.45477827748655, 48.45630214585839, 48.45231100630828, 48.45852459670366, 48.45375026829303, 48.45412175433379, 48.433206518352755, 48.46585030578092, 48.36812436772768, 48.45615430303409, 48.426188487218326, 48.424189374801, 48.424006590648986, 48.42255372117566, 48.42871494027006, 48.42590628658488, 48.43283117116668, 48.429742025433235, 48.42811920030154, 48.420438677160725, 48.437252750993984, 48.41100311474432, 48.43503247924935, 48.399008499161106, 48.40021513104056, 48.4613555876003, 48.462169343727574, 48.459363549919026, 48.46419158988042, 48.43784808661677, 48.349523303920996, 48.38940745322478, 48.421893919694526, 48.39170089001182, 48.42317235658359, 48.404144714210396, 48.42108182049426, 48.397536748144226, 48.389190547422494, 48.388073277915936, 48.42556885464923, 48.47484422826085, 48.387554015831256, 48.469995861910235, 48.472360114769316, 48.382887094355645, 48.463027583083495, 48.384299821641136, 48.46740551089215, 48.3444105914956, 48.32845845019049, 48.3297903765829, 48.32945774646641, 48.39605777290455, 48.39911501545859, 48.34834126522201, 48.385539481251776, 48.36717009454328, 48.40115572630924, 48.40810118664213, 48.38789817455823, 48.401639717054444, 48.400918516127334, 48.35663791686056, 48.35975182971347, 48.34979925580374, 48.345772887818804, 48.349078642676616, 48.3526108097117, 48.46357677093137, 48.45155156672426, 48.466407519502575, 48.41520010054602, 48.41556285746508, 48.431691688874466, 48.35023997375141, 48.345623656884975, 48.34750561849222, 48.34396313065524, 48.41219987862297, 48.412959833670094, 48.414242480883395, 48.41021512075374, 48.41377255466426, 48.412391654151094, 48.41271758635438, 48.40051528842866, 48.40360449047714, 48.395299306037806, 48.39773842093887, 48.3939077528269, 48.396217027426985, 48.39499750403587, 48.426754589785816, 48.39757191961706, 48.398115449480244, 48.40549007606241, 48.39796660294922, 48.413949635424736, 48.413486950801484, 48.41297284403903, 48.41297438457729, 48.4106662024164, 48.40850592727621, 48.38787177811008, 48.40965933667854, 48.39606378340132, 48.39721686304388, 48.434908969273856, 48.381988033757224, 48.38651874735516, 48.36588430787831, 48.38363665057252, 48.359387497487134, 48.36261088253629, 48.36446774724093, 48.36133205154042, 48.43599439563442, 48.41414363205724, 48.40388379782281, 48.38622195737371, 48.387253837121776, 48.388816338535605, 48.38127333695404, 48.38593046261288, 48.38747799457919, 48.38819903758298, 48.38849987706139, 48.331983432639284, 48.41572609267613, 48.439874883455424, 48.439874883455424 ], "lon": [ 7.765225672614365, 7.778809539550178, 7.779195765893586, 7.775204689771646, 7.76606484746611, 7.767396711800372, 7.7585288455939665, 7.765743379197091, 7.769463871775121, 7.786659017249014, 7.799059506222635, 7.8166146453040595, 7.827272008388628, 7.845385081335858, 7.834053059787828, 7.8777176531569495, 7.81386610882482, 7.876889542193039, 7.931257487388791, 7.913960629334794, 7.878529136519797, 7.876252723593842, 7.798915550853087, 7.888244332713167, 7.799503775436736, 7.872608192748625, 7.818941066410403, 7.875200408303946, 7.786003458366173, 7.877500631694728, 7.787018478319392, 7.805015433493411, 7.877253109601893, 7.81129440007589, 7.811370592555369, 7.880884492342217, 7.796742737062005, 7.80752534227331, 7.913960629334794, 7.818002161030199, 7.815999191593257, 7.895958297692228, 7.80673405778964, 7.888307623910822, 7.809467223941316, 7.804666086284209, 7.835840183052138, 7.8780829873512435, 7.882123314640699, 7.82260854480729, 7.885461594829367, 7.88517175431814, 7.824490292422416, 7.887773560526454, 7.79305306057687, 7.757061058783549, 7.909234863520262, 7.909334378322094, 7.90828612482716, 7.917782616603534, 7.912914076992986, 7.810780426185848, 7.913933853984345, 7.817531148856758, 7.818122484083059, 7.817198631577032, 7.913786733913147, 7.812134057997846, 7.896173712216692, 7.814348752471256, 7.837825353282277, 7.835716941924163, 7.8834468909549855, 7.880230044935533, 7.880760551329065, 7.884320758321548, 7.776376345809668, 7.757528366368351, 7.814401857028636, 7.901150019336374, 7.8126537758568055, 7.904856256838342, 7.84164511823214, 7.907598272338195, 7.830587014176033, 7.813750946930894, 7.822295509468547, 7.903027274636419, 7.876668674237667, 7.811928656238718, 7.8799044176633215, 7.875816099565331, 7.815501413379947, 7.882607162668001, 7.817020486640479, 7.877156262352438, 7.759629839160128, 7.757920252549552, 7.753395370106913, 7.761240053860368, 7.937738708318361, 7.938291961287202, 7.758380110203183, 7.755987281846834, 7.781578254760578, 7.8361383171097305, 7.7711189069166515, 7.816726675067033, 7.9328354216280506, 7.936287351303501, 7.776039269015391, 7.770325968788042, 7.752695973125167, 7.7538594144436805, 7.745178558182357, 7.7545673423258386, 7.815930580624138, 7.819549800807648, 7.800222048335613, 7.902638577055225, 7.888468123365731, 7.813287824838175, 7.761479038023908, 7.756184412909383, 7.755691317531285, 7.755780231459689, 7.899896941709586, 7.894375462302109, 7.8963835846532575, 7.888453497872278, 7.901303414862235, 7.886036456351012, 7.889313095595696, 7.901722719875609, 7.895064345442788, 7.90205872309751, 7.9084945276104195, 7.904432371911033, 7.905919468287753, 7.908338597387135, 7.904323568737333, 7.901304807601978, 7.8426383362929775, 7.8947079593416, 7.89613191775149, 7.766593408887951, 7.761798098368771, 7.771503761305329, 7.775990558453709, 7.775188962956967, 7.775266635504604, 7.755277485653522, 7.86375666391543, 7.8057758179679615, 7.763967963075327, 7.810916838962296, 7.753874632672531, 7.749098302762139, 7.785809443995345, 7.751239703606833, 7.77541441952261, 7.777566812718121, 7.775695905660649, 7.776701020794866, 7.806058800069422, 7.769441570183095, 7.788731914746645, 7.76226955024253, 7.764481499839719, 7.761470329043948, 7.756128882041786, 7.747766254755177, 7.744260686465286, 7.757804110375216, 7.749908553830717, 7.753125163009409, 7.879041696902467, 7.7615333943715035, 7.7615333943715035 ], "marker": { "color": "rgb(255, 165, 0)", "size": 10, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 0
20.0 kV", "Bus 1
20.0 kV", "Bus 2
20.0 kV", "Bus 3
20.0 kV", "Bus 4
20.0 kV", "Bus 5
20.0 kV", "Bus 6
20.0 kV", "Bus 7
20.0 kV", "Bus 8
20.0 kV", "Bus 9
20.0 kV", "Bus 10
20.0 kV", "Bus 11
20.0 kV", "Bus 12
20.0 kV", "Bus 13
20.0 kV", "Bus 14
20.0 kV", "Bus 15
20.0 kV", "Bus 16
20.0 kV", "Bus 17
20.0 kV", "Bus 18
20.0 kV", "Bus 19
20.0 kV", "Bus 20
20.0 kV", "Bus 21
20.0 kV", "Bus 22
20.0 kV", "Bus 23
20.0 kV", "Bus 24
20.0 kV", "Bus 25
20.0 kV", "Bus 26
20.0 kV", "Bus 27
20.0 kV", "Bus 28
20.0 kV", "Bus 29
20.0 kV", "Bus 30
20.0 kV", "Bus 31
20.0 kV", "Bus 32
20.0 kV", "Bus 33
20.0 kV", "Bus 34
20.0 kV", "Bus 35
20.0 kV", "Bus 36
20.0 kV", "Bus 37
20.0 kV", "Bus 38
110.0 kV", "Bus 39
20.0 kV", "Bus 40
20.0 kV", "Bus 41
20.0 kV", "Bus 42
20.0 kV", "Bus 43
20.0 kV", "Bus 44
20.0 kV", "Bus 45
20.0 kV", "Bus 46
20.0 kV", "Bus 47
20.0 kV", "Bus 48
20.0 kV", "Bus 49
20.0 kV", "Bus 50
20.0 kV", "Bus 51
20.0 kV", "Bus 52
20.0 kV", "Bus 53
20.0 kV", "Bus 54
20.0 kV", "Bus 55
20.0 kV", "Bus 56
20.0 kV", "Bus 57
20.0 kV", "Bus 58
20.0 kV", "Bus 59
20.0 kV", "Bus 60
20.0 kV", "Bus 61
20.0 kV", "Bus 62
20.0 kV", "Bus 63
20.0 kV", "Bus 64
20.0 kV", "Bus 65
20.0 kV", "Bus 66
20.0 kV", "Bus 67
20.0 kV", "Bus 68
20.0 kV", "Bus 69
20.0 kV", "Bus 70
20.0 kV", "Bus 71
20.0 kV", "Bus 72
20.0 kV", "Bus 73
20.0 kV", "Bus 74
20.0 kV", "Bus 75
20.0 kV", "Bus 76
20.0 kV", "Bus 77
20.0 kV", "Bus 78
20.0 kV", "Bus 79
20.0 kV", "Bus 80
20.0 kV", "Bus 81
20.0 kV", "Bus 82
20.0 kV", "Bus 83
20.0 kV", "Bus 84
20.0 kV", "Bus 85
20.0 kV", "Bus 86
20.0 kV", "Bus 87
20.0 kV", "Bus 88
20.0 kV", "Bus 89
20.0 kV", "Bus 90
20.0 kV", "Bus 91
20.0 kV", "Bus 92
20.0 kV", "Bus 93
20.0 kV", "Bus 94
20.0 kV", "Bus 95
20.0 kV", "Bus 96
20.0 kV", "Bus 97
20.0 kV", "Bus 98
20.0 kV", "Bus 99
20.0 kV", "Bus 100
20.0 kV", "Bus 101
20.0 kV", "Bus 102
20.0 kV", "Bus 103
20.0 kV", "Bus 104
20.0 kV", "Bus 105
20.0 kV", "Bus 106
20.0 kV", "Bus 107
20.0 kV", "Bus 108
20.0 kV", "Bus 109
20.0 kV", "Bus 110
20.0 kV", "Bus 111
20.0 kV", "Bus 112
20.0 kV", "Bus 113
20.0 kV", "Bus 114
20.0 kV", "Bus 115
20.0 kV", "Bus 116
20.0 kV", "Bus 117
20.0 kV", "Bus 118
20.0 kV", "Bus 119
20.0 kV", "Bus 120
20.0 kV", "Bus 121
20.0 kV", "Bus 122
20.0 kV", "Bus 123
20.0 kV", "Bus 124
20.0 kV", "Bus 125
20.0 kV", "Bus 126
20.0 kV", "Bus 127
20.0 kV", "Bus 128
20.0 kV", "Bus 129
20.0 kV", "Bus 130
20.0 kV", "Bus 131
20.0 kV", "Bus 132
20.0 kV", "Bus 133
20.0 kV", "Bus 134
20.0 kV", "Bus 135
20.0 kV", "Bus 136
20.0 kV", "Bus 137
20.0 kV", "Bus 138
20.0 kV", "Bus 139
20.0 kV", "Bus 140
20.0 kV", "Bus 141
20.0 kV", "Bus 142
20.0 kV", "Bus 143
20.0 kV", "Bus 144
20.0 kV", "Bus 145
20.0 kV", "Bus 146
20.0 kV", "Bus 147
20.0 kV", "Bus 148
20.0 kV", "Bus 149
20.0 kV", "Bus 150
20.0 kV", "Bus 151
20.0 kV", "Bus 152
20.0 kV", "Bus 153
20.0 kV", "Bus 154
20.0 kV", "Bus 155
20.0 kV", "Bus 156
20.0 kV", "Bus 157
20.0 kV", "Bus 158
20.0 kV", "Bus 159
20.0 kV", "Bus 160
20.0 kV", "Bus 161
20.0 kV", "Bus 162
20.0 kV", "Bus 163
20.0 kV", "Bus 164
20.0 kV", "Bus 165
20.0 kV", "Bus 166
20.0 kV", "Bus 167
20.0 kV", "Bus 168
20.0 kV", "Bus 169
20.0 kV", "Bus 170
20.0 kV", "Bus 171
20.0 kV", "Bus 172
20.0 kV", "Bus 173
20.0 kV", "Bus 174
20.0 kV", "Bus 175
20.0 kV", "Bus 176
20.0 kV", "Bus 177
110.0 kV", "Bus 178
20.0 kV" ], "type": "scattermapbox" } ], "layout": { "autosize": true, "hovermode": "closest", "mapbox": { "accesstoken": "pk.eyJ1Ijoiamtpc3NlIiwiYSI6ImNqa2I3ZGc5bzBnZTUzdm54YTdqZGJsajAifQ.7142M9jpGjyEdrf4akd40Q", "bearing": 0, "center": { "lat": 48.409033473281134, "lon": 7.895643318408728 }, "pitch": 0, "style": "dark", "zoom": 11 }, "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from pandapower.plotting.plotly.mapbox_plot import set_mapbox_token\n", "set_mapbox_token('')\n", "\n", "net = nw.mv_oberrhein()\n", "pplotly.geo_data_to_latlong(net, projection='epsg:31467') #transforming geodata to lat/long\n", "\n", "lc = pplotly.create_line_trace(net, net.line.index, color='purple')\n", "bc = pplotly.create_bus_trace(net, net.bus.index,size=10,color=\"orange\",\n", " infofunc=Series(index=net.bus.index,\n", " data=net.bus.name + '
' + net.bus.vn_kv.astype(str) + ' kV'))\n", "_ = pplotly.draw_traces(lc + bc, on_map=True, map_style='dark')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Colormaps\n", "Colormaps plots are available for plotly by setting `cmap=True` in create functions. By default, line loading and bus voltage magnitudes will be used for coloring." ] }, { "cell_type": "code", "execution_count": 45, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,188.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,16.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(234.6774193548387,255.0,12.096774193548399)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(173.3870967741935,255.0,73.38709677419357)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,127.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(8.870967741935482,240.5,237.90322580645162)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,188.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,224.5,250.80645161290326)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(37.90322580645161,255.0,208.8709677419355)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,159.4444444444445,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,207.59259259259264,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(144.3548387096774,255.0,102.41935483870967)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(144.3548387096774,255.0,102.41935483870967)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,12.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,222.40740740740748,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,132.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,203.88888888888894,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(70.16129032258063,255.0,176.61290322580646)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(89.51612903225806,255.0,157.25806451612902)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.1363636363637,7.592592592592638,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,85.37037037037041,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,60.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,116.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,132.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(105.64516129032252,255.0,141.12903225806457)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(150.8064516129032,255.0,95.96774193548387)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(250.22727272727295,15.000000000000146,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,40.92592592592597,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(182.0454545454546,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(154.77272727272728,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,229.81481481481487,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,55.74074074074078,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,254.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,203.88888888888894,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,107.59259259259265,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,107.59259259259265,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,107.59259259259265,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(202.41935483870967,255.0,44.35483870967742)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(202.41935483870967,255.0,44.35483870967742)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(227.50000000000006,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(144.3548387096774,255.0,102.41935483870967)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,203.88888888888894,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,136.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,215.00000000000006,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(237.9032258064516,255.0,8.870967741935484)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(237.9032258064516,255.0,8.870967741935484)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(202.41935483870967,255.0,44.35483870967742)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,172.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,184.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(15.322580645161288,248.5,231.45161290322582)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,127.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,229.81481481481487,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,60.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,80.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,148.33333333333337,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,172.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,111.29629629629635,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,215.00000000000006,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.58064516129028,244.62962962962968,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,181.66666666666674,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(112.09677419354837,255.0,134.6774193548387)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(157.258064516129,255.0,89.51612903225808)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(41.129032258064505,255.0,205.6451612903226)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(202.41935483870967,255.0,44.35483870967742)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,127.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,208.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(24.999999999999996,255.0,221.7741935483871)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(131.4516129032258,255.0,115.3225806451613)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(176.61290322580643,255.0,70.16129032258064)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(28.225806451612854,255.0,218.54838709677426)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,224.5,250.80645161290326)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,168.49999999999994,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,116.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,16.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,4.499999999999972,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,250.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(99.19354838709675,255.0,147.58064516129033)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(118.54838709677418,255.0,128.22580645161293)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(83.06451612903224,255.0,163.70967741935485)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(66.93548387096773,255.0,179.83870967741936)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(37.90322580645161,255.0,208.8709677419355)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(147.58064516129028,255.0,99.19354838709678)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,40.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,96.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,60.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(83.06451612903224,255.0,163.70967741935485)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(112.09677419354837,255.0,134.6774193548387)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128.2258064516129,255.0,118.5483870967742)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(57.258064516129025,255.0,189.51612903225805)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,136.49999999999994,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,32.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,64.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(168.40909090909093,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(199.19354838709674,255.0,47.580645161290334)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(215.32258064516125,255.0,31.451612903225794)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(170.16129032258064,255.0,76.61290322580645)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(231.45161290322577,255.0,15.322580645161283)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(191.13636363636368,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,37.22222222222227,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(218.40909090909096,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,236.59090909090907)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,89.0740740740741,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,126.11111111111116,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,4.499999999999972,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,4.499999999999972,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,36.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,59.44444444444448,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,137.22222222222229,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,155.7407407407408,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(234.6774193548387,255.0,12.096774193548399)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(221.77419354838705,255.0,24.999999999999996)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.1363636363637,7.592592592592638,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,203.88888888888894,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(176.61290322580643,255.0,70.16129032258064)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(195.96774193548384,255.0,50.80645161290322)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(234.6774193548387,255.0,12.096774193548399)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,148.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(60.48387096774193,255.0,186.29032258064518)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(15.322580645161288,248.5,231.45161290322582)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,103.88888888888893,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,85.37037037037041,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(195.68181818181822,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,29.81481481481485,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(159.31818181818184,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(236.59090909090915,3.8888888888889412,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(172.95454545454547,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,111.29629629629635,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(145.6818181818182,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,33.518518518518576,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.1363636363637,7.592592592592638,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,29.81481481481485,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,77.96296296296302,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,127.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,196.48148148148155,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,163.1481481481482,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,144.62962962962968,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(127.5,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(141.13636363636363,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "marker": { "cmax": 57.79844884777721, "cmin": 0.039195580527066225, "color": "rgb(255,255,255)", "colorbar": { "thickness": 10, "title": { "side": "right" }, "x": 1.1 }, "colorscale": [ [ 0, "rgb(0,0,131)" ], [ 0.2, "rgb(0,60,170)" ], [ 0.4, "rgb(5,255,255)" ], [ 0.6, "rgb(255,255,0)" ], [ 0.8, "rgb(250,0,0)" ], [ 1, "rgb(128,0,0)" ] ], "opacity": 0, "size": 0 }, "mode": "markers", "type": "scatter", "x": [ 3418242.10659 ], "y": [ 5363665.279770001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(128, 128, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002, 3418242.10659 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501, 5363665.279770001 ] }, { "hoverinfo": "text", "marker": { "cmax": 1.0288039994992633, "cmin": 0.9756171709226281, "color": [ 1.0094727560608585, 1.0093543109466936, 1.0103055250584385, 1.0086112755703607, 1.0100214603190583, 1.0155592717983728, 1.0235513513299068, 1.0155904076313123, 1.0089050932534576, 1.023671892779296, 1.0210417226714483, 1.0121240923407644, 0.9858773236515613, 1.0054137208875331, 0.987053126928636, 1.0054069303869473, 0.9756578394240129, 0.9997861024089654, 0.9812640901059138, 1.014597720294667, 0.9938968084499498, 0.9987145764979286, 0.9782906813653706, 1.0027742070009305, 0.9816422294943468, 0.9938259179116168, 0.9846214416339144, 0.9948081307433092, 0.979166671470098, 0.995534093966509, 0.9791978320464119, 0.9778904697642123, 0.995894403827135, 0.9835679790024567, 0.996712445857364, 1.001547311801776, 0.9810809994639834, 0.9830202113323668, 1, 0.9757630860435274, 0.9756745525037039, 1.0097137874052058, 1.0192423366919237, 1.0074881975033927, 1.0160635799028979, 1.0173606142831666, 0.9870212158479894, 1.004518789372944, 1.0062795001880454, 0.9759077536488955, 1.0051084035293796, 1.0028338823638632, 0.9760811208173031, 0.9951483260581544, 0.9807651206682343, 1.00076669073608, 1.0133588490985026, 0.9871353067361607, 0.9877954259464667, 0.9859402424027316, 0.9859731447864897, 1.0160477531275016, 0.9863984177837819, 1.010982935954292, 1.0099734638690658, 1.0099247402672162, 0.9855471698690751, 1.0130804548169305, 0.9951104418965745, 1.012112790459469, 0.9915236890700269, 0.9915453000338417, 1.0040057222368528, 1.0032483185230863, 1.0050330261489044, 1.0028044677868047, 1.0258962872033306, 1.0001910370977012, 0.9992244171642697, 0.9899033323774972, 0.9999227538479628, 0.990598049972751, 0.9918535597681474, 0.9888914336075386, 0.9913981095868848, 0.9992166263501668, 0.9910418124823861, 0.9914783911769036, 0.9985651682949535, 0.9972582960918238, 0.9998792095891319, 0.9985972978302544, 0.9908908066466844, 1.0032965843072097, 0.990915211231003, 0.9966119244094719, 0.9839254660253072, 0.9832974023876901, 0.9833224969298955, 0.9832816847089692, 0.9816466324194745, 0.9819934329897031, 0.9846928111883263, 1.002220001529089, 0.9900875219065532, 0.9915852880649365, 1.0086764206903571, 0.9986322309807467, 0.9824997204737208, 0.982226184779612, 0.9874956327110325, 0.9866591043809945, 0.9843675898539889, 0.9841864832139916, 0.9843296048568461, 1.000153191187447, 0.9770789858906448, 0.9756171709226281, 0.9821085555438435, 0.9960560730877309, 0.9983230721942491, 1.0154239779229581, 0.9850536667756932, 0.9842918851640706, 0.9844404007425535, 0.9840558129499152, 0.9954235927231396, 0.9969911151297612, 0.9968439725679158, 0.9975677981140886, 0.9957412414338273, 0.9976038166355493, 0.9976678004386857, 0.9940954075743255, 0.9944730242066684, 0.9797880513181267, 0.9802011818537301, 0.9798297444844746, 0.9800753608993553, 0.9799699593579723, 0.9914558841161649, 0.9941282174047733, 0.9923543486050623, 0.9945661841748729, 0.9942349070377413, 1.0116144719459386, 1.0108245652579437, 1.01142164589866, 1.010325406144043, 1.009374303493848, 1.0086302511000331, 1.0026688600304656, 0.9933993503337168, 1.001938566295095, 1.006526706918286, 1.0139777638346348, 1.0011527680204066, 1.001747934392852, 0.9900636109031941, 1.0013451836743434, 0.9878987527612657, 0.9885317679963426, 0.9887772966231024, 0.9882548470592144, 1.0185093341495075, 1.012162275003948, 1.0057505181668247, 1.00364194151105, 1.0040428059975985, 1.0046353179302245, 1.001136942544963, 1.0016525300973935, 1.0016247968698395, 1.0030709124413228, 1.0017205066435086, 0.9833668206300604, 0.9998216491980205, 1, 1.0288039994992633 ], "colorbar": { "thickness": 10, "title": { "side": "right" }, "x": 1 }, "colorscale": [ [ 0, "rgb(0,0,131)" ], [ 0.2, "rgb(0,60,170)" ], [ 0.4, "rgb(5,255,255)" ], [ 0.6, "rgb(255,255,0)" ], [ 0.8, "rgb(250,0,0)" ], [ 1, "rgb(128,0,0)" ] ], "size": 5, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 0", "Bus 1", "Bus 2", "Bus 3", "Bus 4", "Bus 5", "Bus 6", "Bus 7", "Bus 8", "Bus 9", "Bus 10", "Bus 11", "Bus 12", "Bus 13", "Bus 14", "Bus 15", "Bus 16", "Bus 17", "Bus 18", "Bus 19", "Bus 20", "Bus 21", "Bus 22", "Bus 23", "Bus 24", "Bus 25", "Bus 26", "Bus 27", "Bus 28", "Bus 29", "Bus 30", "Bus 31", "Bus 32", "Bus 33", "Bus 34", "Bus 35", "Bus 36", "Bus 37", "Bus 38", "Bus 39", "Bus 40", "Bus 41", "Bus 42", "Bus 43", "Bus 44", "Bus 45", "Bus 46", "Bus 47", "Bus 48", "Bus 49", "Bus 50", "Bus 51", "Bus 52", "Bus 53", "Bus 54", "Bus 55", "Bus 56", "Bus 57", "Bus 58", "Bus 59", "Bus 60", "Bus 61", "Bus 62", "Bus 63", "Bus 64", "Bus 65", "Bus 66", "Bus 67", "Bus 68", "Bus 69", "Bus 70", "Bus 71", "Bus 72", "Bus 73", "Bus 74", "Bus 75", "Bus 76", "Bus 77", "Bus 78", "Bus 79", "Bus 80", "Bus 81", "Bus 82", "Bus 83", "Bus 84", "Bus 85", "Bus 86", "Bus 87", "Bus 88", "Bus 89", "Bus 90", "Bus 91", "Bus 92", "Bus 93", "Bus 94", "Bus 95", "Bus 96", "Bus 97", "Bus 98", "Bus 99", "Bus 100", "Bus 101", "Bus 102", "Bus 103", "Bus 104", "Bus 105", "Bus 106", "Bus 107", "Bus 108", "Bus 109", "Bus 110", "Bus 111", "Bus 112", "Bus 113", "Bus 114", "Bus 115", "Bus 116", "Bus 117", "Bus 118", "Bus 119", "Bus 120", "Bus 121", "Bus 122", "Bus 123", "Bus 124", "Bus 125", "Bus 126", "Bus 127", "Bus 128", "Bus 129", "Bus 130", "Bus 131", "Bus 132", "Bus 133", "Bus 134", "Bus 135", "Bus 136", "Bus 137", "Bus 138", "Bus 139", "Bus 140", "Bus 141", "Bus 142", "Bus 143", "Bus 144", "Bus 145", "Bus 146", "Bus 147", "Bus 148", "Bus 149", "Bus 150", "Bus 151", "Bus 152", "Bus 153", "Bus 154", "Bus 155", "Bus 156", "Bus 157", "Bus 158", "Bus 159", "Bus 160", "Bus 161", "Bus 162", "Bus 163", "Bus 164", "Bus 165", "Bus 166", "Bus 167", "Bus 168", "Bus 169", "Bus 170", "Bus 171", "Bus 172", "Bus 173", "Bus 174", "Bus 175", "Bus 176", "Bus 177", "Bus 178" ], "type": "scatter", "x": [ 3408665.349175, 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141, 3408210.205095, 3408719.72605, 3408975.913755, 3410296.66458, 3411216.526165, 3412523.282265, 3413353.181945, 3414619.659505, 3413854.89557, 3417068.32117, 3412335.82098, 3416989.87706, 3420936.666405, 3419748.613735, 3417044.332345, 3416936.8934, 3411249.917565, 3417839.113615, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3410287.52413, 3417062.86489, 3410365.877105, 3411701.231155, 3417046.76693, 3412171.07318, 3412037.331555, 3417317.379745, 3411094.5293799997, 3411891.829765, 3419748.613735, 3412644.303915, 3412494.665505, 3418411.783625, 3411785.34044, 3417849.758145, 3411973.54194, 3411622.542935, 3413992.76188, 3417091.49669, 3417392.81507, 3412984.086275, 3417643.32197, 3417614.157325, 3413126.367695, 3417773.4362149998, 3410821.62822, 3407983.78155, 3419397.84279, 3419357.7620449997, 3419277.01657, 3419979.565655, 3419616.951355, 3412068.438205, 3419697.711465, 3412575.0779, 3412613.5358949997, 3412542.38331, 3419678.205055, 3412183.33188, 3418359.45578, 3412343.37775, 3414019.75533, 3413865.67305, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245, 3409538.64957, 3407984.897035, 3412268.81795, 3418745.212615, 3412143.304465, 3419021.5555249997, 3414311.22654, 3419221.18234, 3413481.2855599998, 3412220.238145, 3412851.145155, 3418890.004785, 3417019.61853, 3412082.45804, 3417250.970735, 3416952.52644, 3412339.049355, 3417439.513935, 3412453.990615, 3417043.53881, 3408131.461275, 3407976.02058, 3407642.913365, 3408223.972925, 3421413.450085, 3421459.12736, 3408045.89905, 3407935.6436, 3409798.60001, 3413898.4617749997, 3409096.600125, 3412438.404275, 3421058.997755, 3421313.47574, 3409369.512385, 3408951.664265, 3407627.22878, 3407706.186985, 3407068.74552, 3407771.006305, 3412509.49375, 3412756.53258, 3411352.7399999998, 3418844.726965, 3417796.371315, 3412259.1209299997, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3418636.99365, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417611.24743, 3417854.33292, 3418753.533525, 3418265.46984, 3418770.10536, 3419250.55144, 3418943.6674349997, 3419057.457715, 3419234.664765, 3418987.826405, 3418717.898335, 3414374.640155, 3418242.10659, 3418335.48461, 3408772.0309, 3408416.22914, 3409133.776065, 3409465.918195, 3409402.47713, 3409404.38822, 3407887.282875, 3415957.4344, 3411641.501945, 3408547.67568, 3412089.223465, 3407772.74985, 3407427.18329, 3410109.835535, 3407580.5643599997, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3411731.63789, 3408983.211045, 3410393.1329, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407626.841255, 3417098.868935, 3408444.066435, 3408444.066435 ], "y": [ 5364414.94864, 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881, 5366929.533960001, 5365410.875170001, 5364211.5701750005, 5367207.696925, 5367341.3704200005, 5367829.039055, 5370522.3722, 5365662.20595, 5370532.17406, 5369426.721965, 5368857.966840001, 5368254.9978950005, 5362804.52194, 5369365.755840001, 5363686.7694500005, 5367855.33526, 5370149.9372000005, 5368879.194555, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5369692.02639, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370300.571885, 5370502.51661, 5361518.461155, 5370438.243685001, 5370489.677610001, 5370473.070780001, 5369365.755840001, 5369017.6826450005, 5368924.077845001, 5369014.851915, 5367394.89804, 5369289.93087, 5366489.345235, 5366769.909935, 5370905.836490001, 5369163.8307300005, 5369328.91016, 5368951.073805001, 5369572.441095, 5369041.862825001, 5369150.284555, 5366754.669095, 5370490.62743, 5359666.521380001, 5369283.55578, 5365951.351740001, 5365730.16249, 5365699.86742, 5365543.414095, 5366340.79855, 5365915.13698, 5366790.77472, 5366446.5986, 5366267.2019650005, 5365307.31304, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363006.85271, 5363143.39408, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001, 5367396.459115, 5357597.62531, 5361965.8234250005, 5365482.46575, 5362222.8465100005, 5365620.6961550005, 5363573.696045, 5365385.339415001, 5362851.352340001, 5361942.450270001, 5361808.458255, 5365889.114250001, 5371396.63716, 5361762.5657, 5370854.007660001, 5371121.336080001, 5361239.5318, 5370076.235715, 5361394.883040001, 5370568.944580001, 5357026.600335, 5355254.867855, 5355408.41098, 5355362.004125, 5362571.397205001, 5362910.782760001, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363247.510285, 5364094.958985001, 5361795.338565, 5363197.1299600005, 5363113.38267, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5357185.01204, 5357563.082055001, 5357944.49746, 5370211.403535, 5368870.109585, 5370544.256, 5364736.559470001, 5364792.013845, 5366668.92399, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5364405.856085001, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364442.002145001, 5364474.723965, 5363104.6379350005, 5363455.22988, 5362524.28598, 5362788.69955, 5362367.0363300005, 5362622.245215001, 5362484.08542, 5366019.591035, 5362777.79097, 5362902.157225001, 5363665.279770001, 5362827.18118, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364631.06477, 5364375.353395, 5364135.048685, 5361864.4739850005, 5364162.393145001, 5362715.89218, 5362893.18738, 5367029.39345, 5361211.91952, 5361721.47309, 5359383.313385, 5361398.412885, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5367155.67967, 5364768.844140001, 5363605.245315, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5355652.590995001, 5364820.328685001, 5367639.480235, 5367639.480235 ] } ], "layout": { "autosize": true, "height": 700, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": false, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 624.049761687503, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "net = nw.mv_oberrhein()\n", "bt = pplotly.create_bus_trace(net, cmap=True)\n", "lt = pplotly.create_line_trace(net, cmap=True)\n", "pplotly.draw_traces(lt + bt, showlegend=False);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Some customization is possible in regard to: limits, choosing a colormap, colorbar title, etc." ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(211.36470588235295,227.90980392156862,243.45490196078433)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(227.3921568627451,238.45098039215685,248.72549019607843)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(231.31372549019608,240.96078431372547,249.98039215686276)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(233.66666666666666,242.46666666666667,250.73333333333332)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(237.58823529411765,244.9764705882353,251.98823529411763)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(160.03921568627453,202.86666666666667,225.71372549019605)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(173.84313725490196,208.73333333333332,230.5450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.0,251.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(206.09411764705882,224.39607843137253,241.69803921568626)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(212.11764705882356,228.41176470588232,243.70588235294116)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(207.6,225.4,242.20000000000002)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(202.3294117647059,221.8862745098039,240.44313725490196)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(136.6,190.25098039215686,220.3843137254902)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(149.4,197.27843137254902,223.1450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(181.37254901960785,211.9333333333333,233.18039215686275)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(181.37254901960785,211.9333333333333,233.18039215686275)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(231.31372549019608,240.96078431372547,249.98039215686276)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(233.66666666666666,242.46666666666667,250.73333333333332)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(152.6,199.03529411764703,223.83529411764704)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.0,251.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(147.79999999999998,196.39999999999998,222.79999999999998)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(197.68627450980392,218.86666666666665,238.8901960784314)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(193.92156862745097,217.26666666666665,237.57254901960786)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(99.92549019607844,169.1686274509804,211.23921568627452)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(117.40000000000002,179.70980392156864,216.24313725490197)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(225.82352941176472,237.4470588235294,248.2235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(219.64705882352942,233.4313725490196,246.2156862745098)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.0,251.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(240.72549019607845,246.9843137254902,252.9921568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(190.15686274509804,215.66666666666666,236.25490196078434)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(180.11764705882354,211.39999999999998,232.74117647058821)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(101.2117647058824,170.04705882352943,211.74117647058827)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(107.8,174.4392156862745,214.17254901960786)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(90.92156862745098,163.01960784313724,207.72549019607845)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(85.7764705882353,159.50588235294117,205.71764705882353)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(154.20000000000005,199.9137254901961,224.18039215686275)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(111.0,176.19607843137257,214.86274509803923)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(234.45098039215685,242.9686274509804,250.98431372549018)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(240.72549019607845,246.9843137254902,252.9921568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(147.79999999999998,196.39999999999998,222.79999999999998)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(123.8,183.2235294117647,217.6235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(123.8,183.2235294117647,217.6235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(227.3921568627451,238.45098039215685,248.72549019607843)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(227.3921568627451,238.45098039215685,248.72549019607843)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(123.8,183.2235294117647,217.6235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(227.3921568627451,238.45098039215685,248.72549019607843)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(168.82352941176472,206.6,228.78823529411764)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(168.82352941176472,206.6,228.78823529411764)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(98.63921568627451,168.29019607843136,210.7372549019608)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(181.37254901960785,211.9333333333333,233.18039215686275)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(147.79999999999998,196.39999999999998,222.79999999999998)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(246.2156862745098,250.49803921568628,254.74901960784314)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(151.0,198.15686274509804,223.49019607843138)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(160.03921568627453,202.86666666666667,225.71372549019605)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(160.03921568627453,202.86666666666667,225.71372549019605)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(168.82352941176472,206.6,228.78823529411764)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(242.29411764705884,247.98823529411763,253.49411764705883)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(212.11764705882356,228.41176470588232,243.70588235294116)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(205.34117647058827,223.8941176470588,241.4470588235294)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.0,251.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(154.20000000000005,199.9137254901961,224.18039215686275)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(225.82352941176472,237.4470588235294,248.2235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(223.47058823529412,235.94117647058823,247.47058823529412)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(133.4,188.4941176470588,219.69411764705882)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(242.29411764705884,247.98823529411763,253.49411764705883)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(123.8,183.2235294117647,217.6235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(149.4,197.27843137254902,223.1450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(157.4,201.6705882352941,224.8705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(141.40000000000003,192.88627450980394,221.41960784313724)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.8627450980392,248.99215686274508,253.99607843137255)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(237.58823529411765,244.9764705882353,251.98823529411763)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(187.64705882352942,214.6,235.3764705882353)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(177.6078431372549,210.33333333333331,231.86274509803923)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(201.57647058823528,221.3843137254902,240.1921568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(167.5686274509804,206.06666666666663,228.34901960784316)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(238.37254901960785,245.478431372549,252.23921568627452)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.0,251.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(209.1058823529412,226.40392156862745,242.7019607843137)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(203.83529411764707,222.89019607843136,240.9450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(183.8823529411765,212.99999999999997,234.05882352941177)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(173.84313725490196,208.73333333333332,230.5450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(203.83529411764707,222.89019607843136,240.9450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(207.6,225.4,242.20000000000002)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(213.6235294117647,229.4156862745098,244.2078431372549)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(219.64705882352942,233.4313725490196,246.2156862745098)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(230.52941176470588,240.45882352941175,249.72941176470587)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(232.09803921568627,241.46274509803922,250.23137254901962)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(240.72549019607845,246.9843137254902,252.9921568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(236.80392156862746,244.47450980392153,251.73725490196077)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(234.45098039215685,242.9686274509804,250.98431372549018)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(191.41176470588235,216.2,236.69411764705882)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(186.3921568627451,214.06666666666663,234.93725490196078)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(195.1764705882353,217.8,238.01176470588234)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(198.56470588235297,219.37647058823526,239.18823529411765)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(202.3294117647059,221.8862745098039,240.44313725490196)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(180.11764705882354,211.39999999999998,232.74117647058821)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(228.1764705882353,238.95294117647057,248.97647058823532)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(221.90588235294118,234.93725490196078,246.9686274509804)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(240.72549019607845,246.9843137254902,252.9921568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(225.82352941176472,237.4470588235294,248.2235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(195.1764705882353,217.8,238.01176470588234)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(188.90196078431373,215.13333333333333,235.8156862745098)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(185.1372549019608,213.53333333333333,234.49803921568628)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.8627450980392,248.99215686274508,253.99607843137255)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(200.07058823529414,220.3803921568627,239.69019607843137)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(217.38823529411766,231.9254901960784,245.46274509803922)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(228.9607843137255,239.4549019607843,249.22745098039215)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(225.0392156862745,236.94509803921568,247.97254901960784)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(237.58823529411765,244.9764705882353,251.98823529411763)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.8627450980392,248.99215686274508,253.99607843137255)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(88.34901960784313,161.26274509803923,206.721568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(168.82352941176472,206.6,228.78823529411764)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(165.0588235294118,205.0,227.47058823529412)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(175.0980392156863,209.26666666666665,230.9843137254902)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(161.29411764705884,203.39999999999998,226.1529411764706)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(92.2078431372549,163.89803921568628,208.22745098039215)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(106.35686274509804,173.5607843137255,213.74901960784314)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(96.06666666666668,166.53333333333333,209.73333333333332)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(236.01960784313724,243.97254901960784,251.48627450980393)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(119.0,180.58823529411765,216.58823529411765)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128.60000000000002,185.85882352941178,218.65882352941176)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(238.37254901960785,245.478431372549,252.23921568627452)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(240.72549019607845,246.9843137254902,252.9921568627451)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(232.09803921568627,241.46274509803922,250.23137254901962)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(244.64705882352942,249.49411764705883,254.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(232.09803921568627,241.46274509803922,250.23137254901962)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(228.1764705882353,238.95294117647057,248.97647058823532)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(111.0,176.19607843137257,214.86274509803923)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.8627450980392,248.99215686274508,253.99607843137255)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(130.20000000000002,186.7372549019608,219.00392156862745)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(135.0,189.37254901960785,220.0392156862745)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.50980392156862,247.4862745098039,253.24313725490194)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(160.03921568627453,202.86666666666667,225.71372549019605)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(163.80392156862746,204.46666666666667,227.03137254901958)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(99.92549019607844,169.1686274509804,211.23921568627452)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(147.79999999999998,196.39999999999998,222.79999999999998)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(173.84313725490196,208.73333333333332,230.5450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(170.07843137254903,207.13333333333333,229.22745098039215)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(160.03921568627453,202.86666666666667,225.71372549019605)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(215.8823529411765,230.92156862745097,244.9607843137255)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(199.31764705882352,219.87843137254902,239.4392156862745)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(205.34117647058827,223.8941176470588,241.4470588235294)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(122.2,182.34509803921569,217.27843137254902)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(117.40000000000002,179.70980392156864,216.24313725490197)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(92.2078431372549,163.89803921568628,208.22745098039215)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(105.07058823529412,172.68235294117648,213.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.50980392156862,247.4862745098039,253.24313725490194)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(87.06274509803922,160.3843137254902,206.21960784313725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(243.07843137254903,248.49019607843135,253.7450980392157)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(99.92549019607844,169.1686274509804,211.23921568627452)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(89.63529411764706,162.14117647058822,207.2235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(123.8,183.2235294117647,217.6235294117647)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(84.49019607843138,158.62745098039215,205.2156862745098)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(105.07058823529412,172.68235294117648,213.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(99.92549019607844,169.1686274509804,211.23921568627452)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.50980392156862,247.4862745098039,253.24313725490194)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(105.07058823529412,172.68235294117648,213.24705882352941)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.50980392156862,247.4862745098039,253.24313725490194)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(115.80000000000003,178.83137254901965,215.89803921568628)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(247.0,251.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(146.20000000000002,195.52156862745096,222.4549019607843)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(138.20000000000002,191.12941176470588,220.7294117647059)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(133.4,188.4941176470588,219.69411764705882)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(81.91764705882353,156.87058823529412,204.21176470588233)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(84.49019607843138,158.62745098039215,205.2156862745098)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "marker": { "cmax": 100, "cmin": 0, "color": "rgb(255,255,255)", "colorbar": { "thickness": 10, "title": { "side": "right", "text": "Line loading [%]" }, "x": 1.1 }, "colorscale": [ [ 0, "rgb(247,251,255)" ], [ 0.125, "rgb(222,235,247)" ], [ 0.25, "rgb(198,219,239)" ], [ 0.375, "rgb(158,202,225)" ], [ 0.5, "rgb(107,174,214)" ], [ 0.625, "rgb(66,146,198)" ], [ 0.75, "rgb(33,113,181)" ], [ 0.875, "rgb(8,81,156)" ], [ 1, "rgb(8,48,107)" ] ], "opacity": 0, "size": 0 }, "mode": "markers", "type": "scatter", "x": [ 3418242.10659 ], "y": [ 5363665.279770001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(128, 128, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002, 3418242.10659 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501, 5363665.279770001 ] } ], "layout": { "autosize": true, "height": 700, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": false, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 624.049761687503, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "lt = pplotly.create_line_trace(net, cmap='Blues', cmin=0, cmax=100, cbar_title = 'Line loading [%]')\n", "pplotly.draw_traces(lt, showlegend=False);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Alternatively, any other values can be used for colormaps, with also some customization in regard to limits, choosing a colormap, colorbar title, etc. An example with coloring according to line length:" ] }, { "cell_type": "code", "execution_count": 47, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,32.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Line 0", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(44.354838709677416,255.0,202.4193548387097)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 1", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,172.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 2", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 3", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,236.59090909090907)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 4", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(127.5,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 5", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 6", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,80.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 7", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 8", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 10", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 11", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,254.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 12", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 14", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 15", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,48.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 16", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(24.999999999999996,255.0,221.7741935483871)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 17", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 18", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,48.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 20", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,141.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 21", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 22", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,224.5,250.80645161290326)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 23", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,68.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 24", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 25", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,24.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 26", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,12.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 27", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 28", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(124.99999999999999,255.0,121.77419354838709)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 29", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,188.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 30", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,156.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 31", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,218.4090909090909)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 32", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 34", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,20.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 35", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 36", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 37", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,72.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 38", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 39", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 40", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 41", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(105.64516129032252,255.0,141.12903225806457)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 42", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,96.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 43", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 44", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,115.00000000000004,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 45", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,216.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 46", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(83.06451612903224,255.0,163.70967741935485)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 47", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(212.09677419354836,255.0,34.67741935483871)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 48", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,164.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 49", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,104.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 50", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,148.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 51", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,140.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 52", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,96.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 53", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,72.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 54", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,208.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 55", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(241.1290322580644,252.0370370370372,5.645161290322684)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 56", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,104.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 57", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 58", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(177.50000000000017,0.0,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 59", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,32.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 60", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 61", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,168.49999999999994,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 62", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,177.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 63", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,144.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 64", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(34.677419354838705,255.0,212.09677419354838)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 65", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 66", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 67", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(154.03225806451613,255.0,92.74193548387096)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 68", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,36.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 69", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,232.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 70", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,159.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 71", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(63.70967741935483,255.0,183.06451612903228)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 72", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 73", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,16.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 74", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 75", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 76", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(234.6774193548387,255.0,12.096774193548399)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 77", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 78", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 79", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,254.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 80", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 81", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 82", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,218.4090909090909)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 85", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 86", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 87", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 88", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 90", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,140.92592592592598,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 91", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,132.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 92", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 93", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 94", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 95", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 96", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 97", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,232.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 98", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 99", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 100", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 101", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,4.499999999999972,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 102", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 103", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 104", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 105", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 106", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,44.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 107", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(18.54838709677419,252.5,228.2258064516129)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 108", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,154.77272727272728)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 109", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 110", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,177.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 111", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,250.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 112", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,163.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 113", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,24.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 114", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,245.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 116", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 117", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,232.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 118", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 119", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 120", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,182.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 121", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,141.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 122", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 123", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,12.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 124", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(83.06451612903224,255.0,163.70967741935485)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 125", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,191.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 126", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(102.41935483870967,255.0,144.35483870967744)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 127", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 128", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 129", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 130", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,250.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 131", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,218.4090909090909)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 132", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 133", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 134", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 135", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,232.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 136", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 137", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,218.4090909090909)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 138", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,4.499999999999972,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 139", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 140", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 141", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,127.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 142", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 143", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(79.8387096774193,255.0,166.93548387096777)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 144", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,76.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 145", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,177.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 146", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,177.5)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 147", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,186.5909090909091)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 148", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 149", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,218.4090909090909)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 150", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,24.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 151", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,150.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 152", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 153", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 154", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 156", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,192.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 157", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,68.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 158", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 161", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(255.0,122.40740740740746,0.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 162", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,209.3181818181818)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 163", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,28.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 164", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,232.04545454545453)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 165", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 167", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,250.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 168", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 169", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 170", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,92.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 171", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,195.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 172", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,168.4090909090909)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 173", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,200.22727272727272)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 174", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 175", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,204.77272727272725)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 177", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 178", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,24.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 179", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(54.03225806451608,255.0,192.74193548387103)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 180", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,20.49999999999997,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 181", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,227.49999999999997)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 182", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 183", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 184", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,196.5,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 185", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,222.95454545454544)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 186", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,245.68181818181816)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 187", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 188", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 189", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,213.86363636363635)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 190", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,154.77272727272728)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 191", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,0.0,241.13636363636363)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 192", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(0.0,168.49999999999994,255.0)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Line 193", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "marker": { "cmax": 3.3028, "cmin": 0.07044866, "color": "rgb(255,255,255)", "colorbar": { "thickness": 10, "title": { "side": "right", "text": "Line length [km]" }, "x": 1.1 }, "colorscale": [ [ 0, "rgb(0,0,131)" ], [ 0.2, "rgb(0,60,170)" ], [ 0.4, "rgb(5,255,255)" ], [ 0.6, "rgb(255,255,0)" ], [ 0.8, "rgb(250,0,0)" ], [ 1, "rgb(128,0,0)" ] ], "opacity": 0, "size": 0 }, "mode": "markers", "type": "scatter", "x": [ 3418242.10659 ], "y": [ 5363665.279770001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(128, 128, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408004.68027, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3418464.8338075, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412639.9074224997, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412186.2080349997, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418740.448935, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416880.02482, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002, 3418242.10659 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357545.9905075, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5365336.400515, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368349.57432, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361374.903515, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5362598.0757825, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369474.118245, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501, 5363665.279770001 ] } ], "layout": { "autosize": true, "height": 700, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": false, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 624.049761687503, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "lt = pplotly.create_line_trace(net, cmap_vals=net.line.length_km, cmap=True, cbar_title = 'Line length [km]')\n", "pplotly.draw_traces(lt, showlegend=False);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Customized hover-info\n", "Information that pop-ups when a bus or a line is pointed with mouse-cursor is called hover-info. By default, it is set to bus/line name, but it can be customized by setting a list of strings to `infofunc` argument. A newline is defined using `
`. See a representative example hereafter (try getting hoverinfo by pointing a cursor above each bus):" ] }, { "cell_type": "code", "execution_count": 48, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "marker": { "color": "rgb(0, 0, 255)", "size": 15, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Bus 1
20.0 kV
this is one of the 5 buses...", "Bus 2
20.0 kV
this is one of the 5 buses...", "Bus 3
20.0 kV
this is one of the 5 buses...", "Bus 4
20.0 kV
this is one of the 5 buses...", "Bus 5
20.0 kV
this is one of the 5 buses..." ], "type": "scatter", "x": [ 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141 ], "y": [ 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881 ] } ], "layout": { "autosize": true, "height": 700, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 345.1513495922265, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "bc = pplotly.create_bus_trace(net, [1,2,3,4,5], size=15,\n", " infofunc=Series(index=net.bus.index, data=net.bus.name + '
' + \n", " net.bus.vn_kv.astype(str) + ' kV' + '
' +\n", " 'this is one of the 5 buses...'))\n", "pplotly.draw_traces(bc);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Weighted Marker Traces\n", "A trace with markers of value-dependent size can be created by the `create_weighted_marker_trace` function. Like other traces, this trace can be passed to `draw_traces` directly, or it can be passed as \"additional trace\" to `simple_plotly`. By default, the latter will also add a reference marker to indicate the value for one size." ] }, { "cell_type": "code", "execution_count": 49, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": true, "text": "Index: 0
Name: Line 0
Length: 0.586 km
R: 0.094 Ohm
X: 0.069 Ohm
", "type": "scatter", "x": [ 3418242.10659, 3418349.53631, 3418359.45578 ], "y": [ 5363665.279770001, 5364232.8565650005, 5364276.74375 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 1
Name: Line 1
Length: 1.374 km
R: 0.221 Ohm
X: 0.161 Ohm
", "type": "scatter", "x": [ 3418242.10659, 3418092.75894, 3417709.037645, 3417044.332345 ], "y": [ 5363665.279770001, 5363670.35976, 5363702.9726100005, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 2
Name: Line 2
Length: 0.206 km
R: 0.033 Ohm
X: 0.024 Ohm
", "type": "scatter", "x": [ 3418242.10659, 3418265.46984 ], "y": [ 5363665.279770001, 5363455.22988 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 3
Name: Line 3
Length: 0.617 km
R: 0.099 Ohm
X: 0.072 Ohm
", "type": "scatter", "x": [ 3418265.46984, 3418335.48461 ], "y": [ 5363455.22988, 5362827.18118 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 4
Name: Line 4
Length: 0.382 km
R: 0.061 Ohm
X: 0.045 Ohm
", "type": "scatter", "x": [ 3418335.48461, 3418405.3451199997, 3418690.99093, 3418717.898335 ], "y": [ 5362827.18118, 5362816.868740001, 5362807.01673, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 5
Name: Line 5
Length: 3.303 km
R: 0.532 Ohm
X: 0.386 Ohm
", "type": "scatter", "x": [ 3409798.60001, 3409861.40567, 3410252.44079, 3411617.473035, 3412037.331555 ], "y": [ 5359531.258485001, 5359576.852505, 5360144.3587650005, 5361833.9697, 5361518.461155 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 6
Name: Line 6
Length: 0.35 km
R: 0.056 Ohm
X: 0.041 Ohm
", "type": "scatter", "x": [ 3409798.60001, 3409986.41617, 3410109.835535 ], "y": [ 5359531.258485001, 5359481.52011, 5359383.313385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 7
Name: Line 7
Length: 0.736 km
R: 0.118 Ohm
X: 0.086 Ohm
", "type": "scatter", "x": [ 3409798.60001, 3409820.267835, 3409746.536065, 3409617.09921, 3409476.0102399997, 3409364.552905, 3409357.96508 ], "y": [ 5359531.258485001, 5359512.96507, 5359356.907045, 5359426.662735, 5359450.409085, 5359275.954360001, 5359237.7134650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 10
Name: Line 10
Length: 0.313 km
R: 0.05 Ohm
X: 0.037 Ohm
", "type": "scatter", "x": [ 3408278.9995999997, 3408045.89905 ], "y": [ 5357672.579415, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 11
Name: Line 11
Length: 0.258 km
R: 0.042 Ohm
X: 0.03 Ohm
", "type": "scatter", "x": [ 3407845.09925, 3407899.4762049997, 3407902.898215, 3408045.89905 ], "y": [ 5357375.47743, 5357384.20975, 5357442.948910001, 5357465.167160001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 12
Name: Line 12
Length: 0.435 km
R: 0.07 Ohm
X: 0.051 Ohm
", "type": "scatter", "x": [ 3407935.6436, 3407857.117245, 3407659.436105, 3407427.18329 ], "y": [ 5361604.281020001, 5361562.287195001, 5361580.936145, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 14
Name: Line 14
Length: 0.357 km
R: 0.058 Ohm
X: 0.042 Ohm
", "type": "scatter", "x": [ 3407935.6436, 3407927.176495, 3407977.706905, 3407953.987195, 3407991.374965, 3407887.282875 ], "y": [ 5361604.281020001, 5361630.61316, 5361707.29951, 5361738.57424, 5361812.020425, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 15
Name: Line 15
Length: 0.254 km
R: 0.041 Ohm
X: 0.03 Ohm
", "type": "scatter", "x": [ 3412438.404275, 3412401.27992, 3412268.81795 ], "y": [ 5361795.338565, 5361793.430515001, 5361965.8234250005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 16
Name: Line 16
Length: 0.635 km
R: 0.102 Ohm
X: 0.074 Ohm
", "type": "scatter", "x": [ 3412082.45804, 3412198.993665, 3412234.59856, 3412254.799825, 3412447.76993, 3412438.404275 ], "y": [ 5361762.5657, 5361838.10008, 5361776.689135, 5361628.93297, 5361743.6948150005, 5361795.338565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 17
Name: Line 17
Length: 1.3 km
R: 0.209 Ohm
X: 0.152 Ohm
", "type": "scatter", "x": [ 3408547.67568, 3409096.600125 ], "y": [ 5362893.18738, 5364094.958985001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 18
Name: Line 18
Length: 0.139 km
R: 0.022 Ohm
X: 0.016 Ohm
", "type": "scatter", "x": [ 3409096.600125, 3408989.850945, 3408975.913755 ], "y": [ 5364094.958985001, 5364193.349975, 5364211.5701750005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 20
Name: Line 20
Length: 0.632 km
R: 0.102 Ohm
X: 0.074 Ohm
", "type": "scatter", "x": [ 3413898.4617749997, 3413897.4965749998, 3413992.95028, 3414278.33845, 3414311.22654 ], "y": [ 5363247.510285, 5363246.57577, 5363318.296595001, 5363556.7720800005, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 21
Name: Line 21
Length: 0.112 km
R: 0.018 Ohm
X: 0.013 Ohm
", "type": "scatter", "x": [ 3413898.4617749997, 3413870.610915, 3413865.67305 ], "y": [ 5363247.510285, 5363144.865215001, 5363143.39408 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 22
Name: Line 22
Length: 0.312 km
R: 0.05 Ohm
X: 0.036 Ohm
", "type": "scatter", "x": [ 3417854.33292, 3417760.207325, 3417796.371315 ], "y": [ 5364474.723965, 5364666.203765, 5364792.013845 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 24
Name: Line 24
Length: 0.695 km
R: 0.112 Ohm
X: 0.081 Ohm
", "type": "scatter", "x": [ 3417796.371315, 3417098.868935 ], "y": [ 5364792.013845, 5364820.328685001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 25
Name: Line 25
Length: 0.235 km
R: 0.038 Ohm
X: 0.028 Ohm
", "type": "scatter", "x": [ 3418743.61835, 3418796.87837, 3418844.726965 ], "y": [ 5364579.237955, 5364599.386855001, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 26
Name: Line 26
Length: 0.561 km
R: 0.09 Ohm
X: 0.066 Ohm
", "type": "scatter", "x": [ 3418380.179585, 3418470.476255, 3418493.89969, 3418785.4293049998, 3418844.726965 ], "y": [ 5364636.724845001, 5364655.683525001, 5364761.698805001, 5364773.4007, 5364736.559470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 27
Name: Line 27
Length: 0.522 km
R: 0.084 Ohm
X: 0.061 Ohm
", "type": "scatter", "x": [ 3412089.223465, 3412004.049395, 3412259.1209299997 ], "y": [ 5367029.39345, 5366819.77355, 5366668.92399 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 28
Name: Line 28
Length: 0.283 km
R: 0.034 Ohm
X: 0.032 Ohm
", "type": "scatter", "x": [ 3412259.1209299997, 3412221.865795, 3412083.0668, 3411973.54194 ], "y": [ 5366668.92399, 5366635.471405, 5366607.83676, 5366489.345235 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 29
Name: Line 29
Length: 1.688 km
R: 0.272 Ohm
X: 0.197 Ohm
", "type": "scatter", "x": [ 3412509.49375, 3412621.26517, 3412468.527745, 3412674.54292, 3413215.97949, 3413126.367695 ], "y": [ 5370211.403535, 5370179.525365001, 5369912.83851, 5369612.136945, 5369485.97021, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 30
Name: Line 30
Length: 1.073 km
R: 0.173 Ohm
X: 0.125 Ohm
", "type": "scatter", "x": [ 3411701.231155, 3411934.34987, 3412185.043655, 3412206.67657, 3412477.17626, 3412469.294795, 3412509.49375 ], "y": [ 5370156.0428100005, 5369991.64462, 5370238.172255, 5370254.325705, 5370133.776980001, 5370208.494600001, 5370211.403535 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 32
Name: Line 32
Length: 0.324 km
R: 0.052 Ohm
X: 0.038 Ohm
", "type": "scatter", "x": [ 3412494.665505, 3412605.21716, 3412626.49647, 3412756.53258 ], "y": [ 5368924.077845001, 5368899.26836, 5368952.573465001, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 34
Name: Line 34
Length: 0.309 km
R: 0.05 Ohm
X: 0.036 Ohm
", "type": "scatter", "x": [ 3411352.7399999998, 3411345.994305, 3411384.747885, 3411303.625725 ], "y": [ 5370544.256, 5370625.704795, 5370753.92334, 5370800.261425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 35
Name: Line 35
Length: 0.541 km
R: 0.087 Ohm
X: 0.063 Ohm
", "type": "scatter", "x": [ 3411891.829765, 3411352.7399999998 ], "y": [ 5370473.070780001, 5370544.256 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 36
Name: Line 36
Length: 0.296 km
R: 0.036 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3411731.63789, 3411758.82676, 3411699.34185, 3411785.34044 ], "y": [ 5367155.67967, 5367178.74382, 5367262.333025, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 37
Name: Line 37
Length: 0.48 km
R: 0.059 Ohm
X: 0.054 Ohm
", "type": "scatter", "x": [ 3411731.63789, 3411678.54743, 3411665.9725099998, 3411619.55654, 3411622.542935 ], "y": [ 5367155.67967, 5367182.723010001, 5367023.140550001, 5366875.746195001, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 38
Name: Line 38
Length: 0.711 km
R: 0.084 Ohm
X: 0.228 Ohm
", "type": "scatter", "x": [ 3408983.211045, 3408742.6771899997, 3408719.72605 ], "y": [ 5364768.844140001, 5365270.474385001, 5365410.875170001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 39
Name: Line 39
Length: 0.242 km
R: 0.039 Ohm
X: 0.028 Ohm
", "type": "scatter", "x": [ 3408983.211045, 3409004.22087, 3409064.66543, 3409133.776065 ], "y": [ 5364768.844140001, 5364745.961705, 5364766.54604, 5364636.208415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 40
Name: Line 40
Length: 0.261 km
R: 0.042 Ohm
X: 0.031 Ohm
", "type": "scatter", "x": [ 3408983.211045, 3408906.970405, 3408862.4645, 3408813.017565, 3408772.0309 ], "y": [ 5364768.844140001, 5364795.406535001, 5364822.413045, 5364818.65161, 5364750.662205 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 41
Name: Line 41
Length: 0.345 km
R: 0.055 Ohm
X: 0.04 Ohm
", "type": "scatter", "x": [ 3412089.223465, 3412151.675665, 3412197.5828899997, 3412183.33188 ], "y": [ 5367029.39345, 5367016.749345001, 5367134.5549800005, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 42
Name: Line 42
Length: 1.621 km
R: 0.261 Ohm
X: 0.19 Ohm
", "type": "scatter", "x": [ 3408131.461275, 3408028.06636, 3407943.898745, 3407658.95065, 3407626.841255 ], "y": [ 5357026.600335, 5356804.8221700005, 5356748.86976, 5356094.631815, 5355652.590995001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 43
Name: Line 43
Length: 0.782 km
R: 0.126 Ohm
X: 0.091 Ohm
", "type": "scatter", "x": [ 3407626.841255, 3408272.804065, 3408223.972925 ], "y": [ 5355652.590995001, 5355460.06527, 5355362.004125 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 44
Name: Line 44
Length: 0.248 km
R: 0.04 Ohm
X: 0.029 Ohm
", "type": "scatter", "x": [ 3407626.841255, 3407656.878685, 3407642.913365 ], "y": [ 5355652.590995001, 5355454.733415, 5355408.41098 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 45
Name: Line 45
Length: 2.611 km
R: 0.42 Ohm
X: 0.305 Ohm
", "type": "scatter", "x": [ 3417098.868935, 3416978.587215, 3415302.93509, 3414619.659505 ], "y": [ 5364820.328685001, 5364825.195400001, 5365416.64116, 5365662.20595 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 46
Name: Line 46
Length: 1.158 km
R: 0.186 Ohm
X: 0.136 Ohm
", "type": "scatter", "x": [ 3409404.38822, 3409570.553915, 3410393.1329 ], "y": [ 5364135.048685, 5364192.14396, 5363605.245315 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 47
Name: Line 47
Length: 1.526 km
R: 0.246 Ohm
X: 0.179 Ohm
", "type": "scatter", "x": [ 3410393.1329, 3411638.30338, 3411641.501945 ], "y": [ 5363605.245315, 5362717.093035, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 48
Name: Line 48
Length: 2.033 km
R: 0.327 Ohm
X: 0.238 Ohm
", "type": "scatter", "x": [ 3414374.640155, 3415957.4344 ], "y": [ 5362902.157225001, 5364162.393145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 49
Name: Line 49
Length: 0.997 km
R: 0.161 Ohm
X: 0.117 Ohm
", "type": "scatter", "x": [ 3415957.4344, 3416138.089135, 3416824.610515, 3417044.332345 ], "y": [ 5364162.393145001, 5364014.57943, 5363780.011725, 5363686.7694500005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 50
Name: Line 50
Length: 0.804 km
R: 0.129 Ohm
X: 0.094 Ohm
", "type": "scatter", "x": [ 3412143.304465, 3412113.809365, 3412071.215, 3411945.80778, 3411661.9583199997, 3411641.501945 ], "y": [ 5362222.8465100005, 5362266.41198, 5362397.426875001, 5362493.16555, 5362547.734135, 5362715.89218 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 51
Name: Line 51
Length: 0.947 km
R: 0.153 Ohm
X: 0.111 Ohm
", "type": "scatter", "x": [ 3414374.640155, 3414329.94916, 3414116.229045, 3414176.436845, 3414289.14575, 3414400.970145, 3414343.473955, 3414311.22654 ], "y": [ 5362902.157225001, 5362922.167435001, 5363158.69869, 5363242.680005, 5363358.771035001, 5363401.783995001, 5363541.83545, 5363573.696045 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 52
Name: Line 52
Length: 0.929 km
R: 0.11 Ohm
X: 0.297 Ohm
", "type": "scatter", "x": [ 3410296.66458, 3410319.88972, 3411216.526165 ], "y": [ 5367207.696925, 5367201.927345, 5367341.3704200005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 53
Name: Line 53
Length: 0.778 km
R: 0.092 Ohm
X: 0.249 Ohm
", "type": "scatter", "x": [ 3409538.64957, 3410296.66458 ], "y": [ 5367396.459115, 5367207.696925 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 54
Name: Line 54
Length: 0.713 km
R: 0.087 Ohm
X: 0.08 Ohm
", "type": "scatter", "x": [ 3411216.526165, 3411233.42899, 3411505.05154, 3411614.78245, 3411675.15284, 3411785.34044 ], "y": [ 5367341.3704200005, 5367427.141805001, 5367395.215685001, 5367352.371215001, 5367292.165390001, 5367394.89804 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 55
Name: Line 55
Length: 1.136 km
R: 0.183 Ohm
X: 0.133 Ohm
", "type": "scatter", "x": [ 3408547.67568, 3408620.549605, 3408718.71092, 3408690.1513199997, 3408526.150955, 3408444.45504, 3408355.97492, 3408347.63624 ], "y": [ 5362893.18738, 5362862.22912, 5362829.96793, 5362735.13332, 5362487.7739200005, 5362316.644455001, 5362016.386965, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 56
Name: Line 56
Length: 2.149 km
R: 0.346 Ohm
X: 0.251 Ohm
", "type": "scatter", "x": [ 3414619.659505, 3412849.911315, 3412613.5358949997 ], "y": [ 5365662.20595, 5366298.246780001, 5366446.5986 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 57
Name: Line 57
Length: 0.811 km
R: 0.131 Ohm
X: 0.095 Ohm
", "type": "scatter", "x": [ 3412343.37775, 3412523.282265 ], "y": [ 5367039.191295001, 5367829.039055 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 58
Name: Line 58
Length: 0.47 km
R: 0.076 Ohm
X: 0.055 Ohm
", "type": "scatter", "x": [ 3413854.89557, 3413873.1104449998, 3414004.493645, 3413942.280495, 3413992.76188 ], "y": [ 5370532.17406, 5370560.430695, 5370663.925415, 5370837.34848, 5370905.836490001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 59
Name: Line 59
Length: 3.155 km
R: 0.508 Ohm
X: 0.369 Ohm
", "type": "scatter", "x": [ 3416691.72847, 3416588.320235, 3416182.4025, 3415441.925215, 3413869.63262, 3413854.89557 ], "y": [ 5369521.514525, 5369547.51002, 5369712.362500001, 5369715.815005001, 5370339.459810001, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 60
Name: Line 60
Length: 0.58 km
R: 0.093 Ohm
X: 0.068 Ohm
", "type": "scatter", "x": [ 3413353.181945, 3413387.695595, 3413492.62585, 3413692.095905, 3413818.733995, 3413854.89557 ], "y": [ 5370522.3722, 5370532.570975, 5370599.1413, 5370462.826445, 5370531.000585, 5370532.17406 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 61
Name: Line 61
Length: 0.618 km
R: 0.1 Ohm
X: 0.072 Ohm
", "type": "scatter", "x": [ 3412736.0123, 3413353.181945 ], "y": [ 5370459.866305, 5370522.3722 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 62
Name: Line 62
Length: 1.006 km
R: 0.12 Ohm
X: 0.322 Ohm
", "type": "scatter", "x": [ 3408444.066435, 3409538.64957 ], "y": [ 5367639.480235, 5367396.459115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 63
Name: Line 63
Length: 0.222 km
R: 0.036 Ohm
X: 0.026 Ohm
", "type": "scatter", "x": [ 3410365.877105, 3410335.7689, 3410287.52413 ], "y": [ 5369898.0554, 5369841.191405, 5369692.02639 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 64
Name: Line 64
Length: 0.936 km
R: 0.151 Ohm
X: 0.11 Ohm
", "type": "scatter", "x": [ 3411249.917565, 3411244.047615, 3410378.94656, 3410365.877105 ], "y": [ 5370149.9372000005, 5370117.084285, 5369899.396935, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 65
Name: Line 65
Length: 1.341 km
R: 0.216 Ohm
X: 0.157 Ohm
", "type": "scatter", "x": [ 3410821.62822, 3410971.7705, 3410958.07834, 3411046.14208, 3410500.98363, 3410344.080695, 3410325.026885, 3410365.877105 ], "y": [ 5370490.62743, 5370480.685295001, 5370394.712755, 5370129.637465, 5369964.8947, 5369963.79578, 5369907.7055, 5369898.0554 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 67
Name: Line 67
Length: 0.26 km
R: 0.042 Ohm
X: 0.03 Ohm
", "type": "scatter", "x": [ 3412037.331555, 3412054.971475, 3412016.594945, 3412040.334555, 3412082.45804 ], "y": [ 5361518.461155, 5361582.173155, 5361638.578815, 5361720.94159, 5361762.5657 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 68
Name: Line 68
Length: 1.804 km
R: 0.29 Ohm
X: 0.211 Ohm
", "type": "scatter", "x": [ 3419250.55144, 3419319.66301, 3420405.85444, 3420570.3734, 3420936.666405 ], "y": [ 5362788.69955, 5362977.827675001, 5362846.17838, 5362908.24937, 5362804.52194 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 69
Name: Line 69
Length: 0.59 km
R: 0.095 Ohm
X: 0.069 Ohm
", "type": "scatter", "x": [ 3420936.666405, 3421051.997845, 3421413.450085 ], "y": [ 5362804.52194, 5362606.354845, 5362571.397205001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 70
Name: Line 70
Length: 0.368 km
R: 0.059 Ohm
X: 0.043 Ohm
", "type": "scatter", "x": [ 3419021.5555249997, 3419081.98887, 3418890.004785 ], "y": [ 5365620.6961550005, 5365698.424545, 5365889.114250001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 71
Name: Line 71
Length: 0.162 km
R: 0.026 Ohm
X: 0.019 Ohm
", "type": "scatter", "x": [ 3418890.004785, 3418987.063195, 3418987.826405 ], "y": [ 5365889.114250001, 5366018.75329, 5366019.591035 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 72
Name: Line 72
Length: 1.455 km
R: 0.234 Ohm
X: 0.17 Ohm
", "type": "scatter", "x": [ 3418890.004785, 3418699.18642, 3418372.634975, 3418162.815655, 3417816.690755, 3417773.4362149998 ], "y": [ 5365889.114250001, 5366026.791055, 5366468.948755001, 5366600.529080001, 5366703.0851650005, 5366754.669095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 73
Name: Line 73
Length: 0.466 km
R: 0.075 Ohm
X: 0.054 Ohm
", "type": "scatter", "x": [ 3418745.212615, 3418878.230885, 3418994.24827, 3419221.18234 ], "y": [ 5365482.46575, 5365293.815715, 5365251.870945, 5365385.339415001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 74
Name: Line 74
Length: 0.53 km
R: 0.085 Ohm
X: 0.062 Ohm
", "type": "scatter", "x": [ 3419221.18234, 3419216.75326, 3419053.410295, 3419277.01657 ], "y": [ 5365385.339415001, 5365421.75611, 5365556.395295001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 75
Name: Line 75
Length: 0.304 km
R: 0.049 Ohm
X: 0.036 Ohm
", "type": "scatter", "x": [ 3418745.212615, 3419021.5555249997 ], "y": [ 5365482.46575, 5365620.6961550005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 76
Name: Line 76
Length: 0.347 km
R: 0.056 Ohm
X: 0.041 Ohm
", "type": "scatter", "x": [ 3407984.897035, 3407979.209105, 3407771.006305 ], "y": [ 5357597.62531, 5357687.656325, 5357944.49746 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 77
Name: Line 77
Length: 2.122 km
R: 0.342 Ohm
X: 0.248 Ohm
", "type": "scatter", "x": [ 3407983.78155, 3408272.191455, 3407984.897035 ], "y": [ 5359666.521380001, 5358097.292420001, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 78
Name: Line 78
Length: 0.296 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3419979.565655, 3419616.951355 ], "y": [ 5365699.86742, 5365543.414095 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 79
Name: Line 79
Length: 0.275 km
R: 0.044 Ohm
X: 0.032 Ohm
", "type": "scatter", "x": [ 3419616.951355, 3419745.486705, 3419697.711465 ], "y": [ 5365543.414095, 5365764.191640001, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 80
Name: Line 80
Length: 0.428 km
R: 0.069 Ohm
X: 0.05 Ohm
", "type": "scatter", "x": [ 3419357.7620449997, 3419378.15755, 3419445.167595, 3419533.420385, 3419598.501745, 3419697.711465 ], "y": [ 5365951.351740001, 5365952.376535, 5365893.214765, 5365954.85145, 5365873.22283, 5365915.13698 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 81
Name: Line 81
Length: 0.338 km
R: 0.054 Ohm
X: 0.039 Ohm
", "type": "scatter", "x": [ 3419616.951355, 3419768.1391249998, 3419678.205055 ], "y": [ 5365543.414095, 5365379.27182, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 82
Name: Line 82
Length: 0.349 km
R: 0.056 Ohm
X: 0.041 Ohm
", "type": "scatter", "x": [ 3419357.7620449997, 3419452.2794149998, 3419277.01657 ], "y": [ 5365951.351740001, 5365862.754670001, 5365730.16249 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 85
Name: Line 85
Length: 0.329 km
R: 0.053 Ohm
X: 0.038 Ohm
", "type": "scatter", "x": [ 3417786.66388, 3417617.341015, 3417611.24743 ], "y": [ 5364197.382300001, 5364323.26774, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 86
Name: Line 86
Length: 0.261 km
R: 0.042 Ohm
X: 0.031 Ohm
", "type": "scatter", "x": [ 3417854.33292, 3417664.653175, 3417628.857545, 3417611.24743 ], "y": [ 5364474.723965, 5364457.599210001, 5364470.0684400005, 5364442.002145001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 87
Name: Line 87
Length: 0.298 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3418753.533525, 3418732.9969, 3418717.898335 ], "y": [ 5363104.6379350005, 5362934.33353, 5362777.79097 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 90
Name: Line 90
Length: 0.315 km
R: 0.051 Ohm
X: 0.037 Ohm
", "type": "scatter", "x": [ 3418359.45578, 3418521.950405, 3418636.99365 ], "y": [ 5364276.74375, 5364296.001595001, 5364405.856085001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 91
Name: Line 91
Length: 2.528 km
R: 0.407 Ohm
X: 0.296 Ohm
", "type": "scatter", "x": [ 3421058.997755, 3420933.679185, 3420478.04064, 3419678.205055 ], "y": [ 5363197.1299600005, 5363366.559325, 5364297.27226, 5365307.31304 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 92
Name: Line 92
Length: 0.093 km
R: 0.015 Ohm
X: 0.011 Ohm
", "type": "scatter", "x": [ 3418229.471735, 3418247.330445, 3418380.179585 ], "y": [ 5364496.242115, 5364532.403580001, 5364636.724845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 93
Name: Line 93
Length: 0.387 km
R: 0.062 Ohm
X: 0.045 Ohm
", "type": "scatter", "x": [ 3417854.33292, 3418229.471735 ], "y": [ 5364474.723965, 5364496.242115 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 94
Name: Line 94
Length: 0.272 km
R: 0.044 Ohm
X: 0.032 Ohm
", "type": "scatter", "x": [ 3418636.99365, 3418757.322075, 3418743.61835 ], "y": [ 5364405.856085001, 5364429.735545, 5364579.237955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 95
Name: Line 95
Length: 0.247 km
R: 0.04 Ohm
X: 0.029 Ohm
", "type": "scatter", "x": [ 3421058.997755, 3421178.628675, 3421313.47574 ], "y": [ 5363197.1299600005, 5363175.82538, 5363113.38267 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 96
Name: Line 96
Length: 0.25 km
R: 0.04 Ohm
X: 0.029 Ohm
", "type": "scatter", "x": [ 3421313.47574, 3421428.858865, 3421459.12736 ], "y": [ 5363113.38267, 5362973.408515001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 97
Name: Line 97
Length: 0.459 km
R: 0.074 Ohm
X: 0.054 Ohm
", "type": "scatter", "x": [ 3421413.450085, 3421426.275905, 3421333.18035, 3421348.500145, 3421417.0298099997, 3421403.5843249997, 3421459.12736 ], "y": [ 5362571.397205001, 5362589.940780001, 5362684.0146, 5362817.356120001, 5362854.709785, 5362880.371350001, 5362910.782760001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 98
Name: Line 98
Length: 0.366 km
R: 0.059 Ohm
X: 0.043 Ohm
", "type": "scatter", "x": [ 3407642.913365, 3407824.875245, 3407976.02058 ], "y": [ 5355408.41098, 5355314.670635001, 5355254.867855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 99
Name: Line 99
Length: 0.291 km
R: 0.047 Ohm
X: 0.034 Ohm
", "type": "scatter", "x": [ 3408131.461275, 3407996.835665, 3407845.30055 ], "y": [ 5357026.600335, 5356987.050445001, 5356981.466445001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 100
Name: Line 100
Length: 0.299 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3419057.457715, 3419054.699105, 3419194.46451, 3419250.55144 ], "y": [ 5362622.245215001, 5362684.682495001, 5362713.351625, 5362788.69955 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 101
Name: Line 101
Length: 0.236 km
R: 0.038 Ohm
X: 0.028 Ohm
", "type": "scatter", "x": [ 3418770.10536, 3418811.380675, 3418943.6674349997 ], "y": [ 5362524.28598, 5362504.13023, 5362367.0363300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 102
Name: Line 102
Length: 0.489 km
R: 0.079 Ohm
X: 0.057 Ohm
", "type": "scatter", "x": [ 3418943.6674349997, 3419147.37214, 3419222.58312, 3419204.917, 3419234.664765 ], "y": [ 5362367.0363300005, 5362257.051155, 5362406.736285, 5362427.965600001, 5362484.08542 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 103
Name: Line 103
Length: 0.298 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3419234.664765, 3419202.64047, 3419057.457715 ], "y": [ 5362484.08542, 5362633.929815, 5362622.245215001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 104
Name: Line 104
Length: 0.238 km
R: 0.038 Ohm
X: 0.028 Ohm
", "type": "scatter", "x": [ 3409328.087865, 3409365.3650599997, 3409394.31761, 3409426.878715 ], "y": [ 5358673.150195001, 5358766.496010001, 5358831.577545, 5358887.852505 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 105
Name: Line 105
Length: 0.177 km
R: 0.029 Ohm
X: 0.021 Ohm
", "type": "scatter", "x": [ 3409426.878715, 3409458.917645, 3409493.3332599998, 3409493.301295 ], "y": [ 5358887.852505, 5358888.5417450005, 5359010.93006, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 106
Name: Line 106
Length: 0.283 km
R: 0.046 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3409369.512385, 3409392.83196, 3409328.087865 ], "y": [ 5358366.672750001, 5358505.58616, 5358673.150195001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 107
Name: Line 107
Length: 0.615 km
R: 0.099 Ohm
X: 0.072 Ohm
", "type": "scatter", "x": [ 3408951.664265, 3409081.826705, 3409369.512385 ], "y": [ 5358719.695230001, 5358498.34422, 5358366.672750001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 108
Name: Line 108
Length: 1.278 km
R: 0.206 Ohm
X: 0.149 Ohm
", "type": "scatter", "x": [ 3408951.664265, 3408278.9995999997 ], "y": [ 5358719.695230001, 5357672.579415 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 109
Name: Line 109
Length: 0.147 km
R: 0.024 Ohm
X: 0.017 Ohm
", "type": "scatter", "x": [ 3409357.96508, 3409409.87224, 3409493.301295 ], "y": [ 5359237.7134650005, 5359129.497685, 5359029.028630001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 110
Name: Line 110
Length: 0.253 km
R: 0.041 Ohm
X: 0.03 Ohm
", "type": "scatter", "x": [ 3407845.30055, 3407791.29936, 3407712.6354, 3407706.186985 ], "y": [ 5356981.466445001, 5357016.223475001, 5357157.812170001, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 111
Name: Line 111
Length: 0.214 km
R: 0.034 Ohm
X: 0.025 Ohm
", "type": "scatter", "x": [ 3407878.25476, 3407881.52913, 3407845.09925 ], "y": [ 5357165.621435001, 5357208.0147, 5357375.47743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 112
Name: Line 112
Length: 0.415 km
R: 0.067 Ohm
X: 0.049 Ohm
", "type": "scatter", "x": [ 3407845.09925, 3407734.42234, 3407762.10182, 3407627.22878 ], "y": [ 5357375.47743, 5357385.790465, 5357565.5300050005, 5357634.122470001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 113
Name: Line 113
Length: 0.18 km
R: 0.029 Ohm
X: 0.021 Ohm
", "type": "scatter", "x": [ 3407878.25476, 3407870.704295, 3407718.77984, 3407706.186985 ], "y": [ 5357165.621435001, 5357155.69285, 5357176.01228, 5357185.01204 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 114
Name: Line 114
Length: 0.562 km
R: 0.09 Ohm
X: 0.066 Ohm
", "type": "scatter", "x": [ 3407627.22878, 3407561.625125, 3407068.74552 ], "y": [ 5357634.122470001, 5357635.26804, 5357563.082055001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 116
Name: Line 116
Length: 0.399 km
R: 0.064 Ohm
X: 0.047 Ohm
", "type": "scatter", "x": [ 3408075.000255, 3408174.584235, 3408402.1696 ], "y": [ 5361897.82828, 5361796.45182, 5361672.63748 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 117
Name: Line 117
Length: 0.261 km
R: 0.042 Ohm
X: 0.031 Ohm
", "type": "scatter", "x": [ 3408402.1696, 3408488.5925249998, 3408567.84631 ], "y": [ 5361672.63748, 5361637.013755, 5361784.734655 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 118
Name: Line 118
Length: 0.37 km
R: 0.06 Ohm
X: 0.043 Ohm
", "type": "scatter", "x": [ 3408567.84631, 3408394.955145, 3408442.90982, 3408347.63624 ], "y": [ 5361784.734655, 5361864.681895, 5361927.66077, 5361962.0757 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 119
Name: Line 119
Length: 0.251 km
R: 0.04 Ohm
X: 0.029 Ohm
", "type": "scatter", "x": [ 3407427.18329, 3407340.04245, 3407490.786255 ], "y": [ 5361721.47309, 5361743.409725, 5361940.785785001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 120
Name: Line 120
Length: 0.304 km
R: 0.049 Ohm
X: 0.036 Ohm
", "type": "scatter", "x": [ 3408075.000255, 3408014.9508599997, 3407880.639465, 3407887.282875 ], "y": [ 5361897.82828, 5361930.631925001, 5361962.669355, 5361864.4739850005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 121
Name: Line 121
Length: 0.233 km
R: 0.037 Ohm
X: 0.027 Ohm
", "type": "scatter", "x": [ 3407772.74985, 3407799.420215, 3407848.25269, 3407848.099405, 3407938.434695 ], "y": [ 5361211.91952, 5361187.996970001, 5361186.61875, 5361128.32744, 5361129.737385 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 122
Name: Line 122
Length: 0.118 km
R: 0.019 Ohm
X: 0.014 Ohm
", "type": "scatter", "x": [ 3407327.457605, 3407427.18329 ], "y": [ 5361657.66951, 5361721.47309 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 123
Name: Line 123
Length: 0.397 km
R: 0.064 Ohm
X: 0.046 Ohm
", "type": "scatter", "x": [ 3407772.74985, 3407517.67973, 3407580.5643599997 ], "y": [ 5361211.91952, 5361279.9279350005, 5361398.412885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 124
Name: Line 124
Length: 0.52 km
R: 0.084 Ohm
X: 0.061 Ohm
", "type": "scatter", "x": [ 3407580.5643599997, 3407611.152795, 3407503.355955, 3407405.530175, 3407327.457605 ], "y": [ 5361398.412885, 5361465.9180850005, 5361519.230605001, 5361529.43881, 5361657.66951 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 125
Name: Line 125
Length: 1.526 km
R: 0.246 Ohm
X: 0.179 Ohm
", "type": "scatter", "x": [ 3407772.74985, 3407824.341, 3407983.78155 ], "y": [ 5361211.91952, 5360534.219805, 5359666.521380001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 126
Name: Line 126
Length: 0.254 km
R: 0.041 Ohm
X: 0.03 Ohm
", "type": "scatter", "x": [ 3407327.457605, 3407297.598615, 3407070.63602 ], "y": [ 5361657.66951, 5361737.53689, 5361833.994235001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 127
Name: Line 127
Length: 1.601 km
R: 0.19 Ohm
X: 0.512 Ohm
", "type": "scatter", "x": [ 3408719.72605, 3408210.205095 ], "y": [ 5365410.875170001, 5366929.533960001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 128
Name: Line 128
Length: 0.473 km
R: 0.076 Ohm
X: 0.055 Ohm
", "type": "scatter", "x": [ 3408719.72605, 3408772.13334, 3408849.00141 ], "y": [ 5365410.875170001, 5365426.938100001, 5365837.96881 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 129
Name: Line 129
Length: 0.298 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3409402.47713, 3409517.6747149997, 3409669.096215 ], "y": [ 5364375.353395, 5364385.9660600005, 5364282.613545001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 130
Name: Line 130
Length: 0.295 km
R: 0.047 Ohm
X: 0.034 Ohm
", "type": "scatter", "x": [ 3408665.349175, 3408637.2456, 3408730.1735 ], "y": [ 5364414.94864, 5364453.192500001, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 131
Name: Line 131
Length: 0.417 km
R: 0.067 Ohm
X: 0.049 Ohm
", "type": "scatter", "x": [ 3408416.22914, 3408575.6645, 3408704.910915, 3408730.1735 ], "y": [ 5364704.938425001, 5364517.06723, 5364585.049815, 5364581.697500001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 132
Name: Line 132
Length: 0.323 km
R: 0.052 Ohm
X: 0.038 Ohm
", "type": "scatter", "x": [ 3408975.913755, 3408973.59089, 3408764.543515, 3408665.349175 ], "y": [ 5364211.5701750005, 5364214.6068750005, 5364277.232285, 5364414.94864 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 133
Name: Line 133
Length: 0.296 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3409465.918195, 3409522.63933, 3409659.233905, 3409701.5281849997 ], "y": [ 5364631.06477, 5364667.55675, 5364554.541605, 5364523.170815 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 134
Name: Line 134
Length: 0.282 km
R: 0.045 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3409404.38822, 3409440.5743, 3409395.5326549998 ], "y": [ 5364135.048685, 5364076.028220001, 5363867.96846 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 135
Name: Line 135
Length: 0.396 km
R: 0.064 Ohm
X: 0.046 Ohm
", "type": "scatter", "x": [ 3408772.0309, 3408687.106445, 3408482.69619, 3408416.22914 ], "y": [ 5364750.662205, 5364760.764780001, 5364787.570115, 5364704.938425001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 136
Name: Line 136
Length: 0.371 km
R: 0.06 Ohm
X: 0.043 Ohm
", "type": "scatter", "x": [ 3409133.776065, 3409277.20286, 3409416.650825, 3409465.918195 ], "y": [ 5364636.208415001, 5364701.9152150005, 5364617.25155, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 137
Name: Line 137
Length: 0.274 km
R: 0.044 Ohm
X: 0.032 Ohm
", "type": "scatter", "x": [ 3409404.38822, 3409447.2126599997, 3409455.37627, 3409402.47713 ], "y": [ 5364135.048685, 5364184.81075, 5364303.46791, 5364375.353395 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 138
Name: Line 138
Length: 0.329 km
R: 0.053 Ohm
X: 0.038 Ohm
", "type": "scatter", "x": [ 3409402.47713, 3409474.8658, 3409470.061495, 3409424.342055, 3409465.918195 ], "y": [ 5364375.353395, 5364420.44472, 5364525.41005, 5364597.33109, 5364631.06477 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 139
Name: Line 139
Length: 0.499 km
R: 0.08 Ohm
X: 0.058 Ohm
", "type": "scatter", "x": [ 3413865.67305, 3413739.185685, 3413636.131, 3413481.2855599998 ], "y": [ 5363143.39408, 5363104.264425, 5362956.222935, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 140
Name: Line 140
Length: 0.316 km
R: 0.051 Ohm
X: 0.037 Ohm
", "type": "scatter", "x": [ 3413865.67305, 3413874.44151, 3413943.03773, 3414019.75533 ], "y": [ 5363143.39408, 5363029.96647, 5362948.381820001, 5363006.85271 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 141
Name: Line 141
Length: 0.388 km
R: 0.062 Ohm
X: 0.045 Ohm
", "type": "scatter", "x": [ 3412343.37775, 3412262.55668, 3412209.7032399997, 3412231.604895, 3412216.09413, 3412183.33188 ], "y": [ 5367039.191295001, 5367068.92636, 5367086.516935, 5367149.761055, 5367295.14271, 5367288.615625001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 142
Name: Line 142
Length: 0.07 km
R: 0.011 Ohm
X: 0.008 Ohm
", "type": "scatter", "x": [ 3412268.81795, 3412260.604705, 3412220.238145 ], "y": [ 5361965.8234250005, 5361963.3546050005, 5361942.450270001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 143
Name: Line 143
Length: 0.286 km
R: 0.046 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3412268.81795, 3412260.545595, 3412150.456275, 3412143.304465 ], "y": [ 5361965.8234250005, 5361995.80207, 5362208.134090001, 5362222.8465100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 144
Name: Line 144
Length: 1.517 km
R: 0.244 Ohm
X: 0.178 Ohm
", "type": "scatter", "x": [ 3412851.145155, 3412968.365805, 3412763.3975899997, 3412860.16193, 3412993.07086, 3413297.87764, 3413378.821395, 3413463.473535, 3413481.2855599998 ], "y": [ 5361808.458255, 5361849.33543, 5362049.88104, 5362146.92826, 5362359.88693, 5362556.00743, 5362760.39532, 5362839.787495, 5362851.352340001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 145
Name: Line 145
Length: 0.719 km
R: 0.116 Ohm
X: 0.084 Ohm
", "type": "scatter", "x": [ 3412453.990615, 3412585.854975, 3412634.70943, 3412875.7125999997, 3412826.35129, 3412889.048835, 3412851.145155 ], "y": [ 5361394.883040001, 5361451.025165, 5361492.941955, 5361623.23651, 5361692.915840001, 5361766.90854, 5361808.458255 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 146
Name: Line 146
Length: 0.22 km
R: 0.035 Ohm
X: 0.026 Ohm
", "type": "scatter", "x": [ 3412339.049355, 3412415.6025199997, 3412495.06219, 3412453.990615 ], "y": [ 5361239.5318, 5361184.867435001, 5361262.492565, 5361394.883040001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 147
Name: Line 147
Length: 0.21 km
R: 0.034 Ohm
X: 0.025 Ohm
", "type": "scatter", "x": [ 3412644.303915, 3412595.248015, 3412516.081485, 3412494.665505 ], "y": [ 5369017.6826450005, 5368963.270405, 5368976.2308950005, 5368924.077845001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 148
Name: Line 148
Length: 0.239 km
R: 0.039 Ohm
X: 0.028 Ohm
", "type": "scatter", "x": [ 3412494.665505, 3412490.54641, 3412453.68279, 3412410.232215, 3412335.82098 ], "y": [ 5368924.077845001, 5368907.2953, 5368922.781230001, 5368829.5838, 5368857.966840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 149
Name: Line 149
Length: 0.345 km
R: 0.055 Ohm
X: 0.04 Ohm
", "type": "scatter", "x": [ 3412984.086275, 3412644.303915 ], "y": [ 5368951.073805001, 5369017.6826450005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 150
Name: Line 150
Length: 0.327 km
R: 0.053 Ohm
X: 0.038 Ohm
", "type": "scatter", "x": [ 3412984.086275, 3412981.597275, 3413031.061405, 3413126.367695 ], "y": [ 5368951.073805001, 5368990.159290001, 5369173.701185, 5369150.284555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 151
Name: Line 151
Length: 0.553 km
R: 0.068 Ohm
X: 0.062 Ohm
", "type": "scatter", "x": [ 3411973.54194, 3411906.053985, 3411618.3238399997, 3411622.542935 ], "y": [ 5366489.345235, 5366517.317965, 5366583.097205, 5366769.909935 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 152
Name: Line 152
Length: 0.146 km
R: 0.024 Ohm
X: 0.017 Ohm
", "type": "scatter", "x": [ 3411973.54194, 3411967.843265, 3412068.438205 ], "y": [ 5366489.345235, 5366483.08674, 5366340.79855 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 153
Name: Line 153
Length: 0.482 km
R: 0.078 Ohm
X: 0.056 Ohm
", "type": "scatter", "x": [ 3412343.37775, 3412456.0328349997, 3412419.233455, 3412575.0779 ], "y": [ 5367039.191295001, 5367030.54655, 5366823.2053350005, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 154
Name: Line 154
Length: 0.443 km
R: 0.071 Ohm
X: 0.052 Ohm
", "type": "scatter", "x": [ 3412613.5358949997, 3412610.908895, 3412541.3164399997, 3412566.2763, 3412505.948665, 3412575.0779 ], "y": [ 5366446.5986, 5366461.83884, 5366502.593745001, 5366553.0404900005, 5366575.2997, 5366790.77472 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 156
Name: Line 156
Length: 0.284 km
R: 0.046 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3412613.5358949997, 3412485.505695, 3412531.06868, 3412542.38331 ], "y": [ 5366446.5986, 5366387.84564, 5366352.773145, 5366267.2019650005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 157
Name: Line 157
Length: 1.082 km
R: 0.128 Ohm
X: 0.346 Ohm
", "type": "scatter", "x": [ 3419397.84279, 3418968.36694, 3418733.242975, 3418411.783625 ], "y": [ 5369283.55578, 5369003.5814350005, 5368944.235565, 5369014.851915 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 158
Name: Line 158
Length: 0.689 km
R: 0.082 Ohm
X: 0.221 Ohm
", "type": "scatter", "x": [ 3418411.783625, 3418393.49088, 3417849.758145 ], "y": [ 5369014.851915, 5369141.929875, 5369289.93087 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 161
Name: Line 161
Length: 0.468 km
R: 0.057 Ohm
X: 0.052 Ohm
", "type": "scatter", "x": [ 3417849.758145, 3417810.360655, 3417507.23658, 3417392.81507 ], "y": [ 5369289.93087, 5369320.055620001, 5369304.438955001, 5369328.91016 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 162
Name: Line 162
Length: 2.595 km
R: 0.308 Ohm
X: 0.83 Ohm
", "type": "scatter", "x": [ 3417643.32197, 3419748.613735 ], "y": [ 5369572.441095, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 163
Name: Line 163
Length: 0.306 km
R: 0.049 Ohm
X: 0.036 Ohm
", "type": "scatter", "x": [ 3411891.829765, 3411893.192955, 3412077.412255, 3412115.51889, 3412171.07318 ], "y": [ 5370473.070780001, 5370486.147650001, 5370487.661115, 5370520.950145001, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 164
Name: Line 164
Length: 0.566 km
R: 0.091 Ohm
X: 0.066 Ohm
", "type": "scatter", "x": [ 3412736.0123, 3412430.33078, 3412292.569745, 3412171.07318 ], "y": [ 5370459.866305, 5370461.0886, 5370473.58311, 5370502.51661 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 165
Name: Line 165
Length: 0.365 km
R: 0.043 Ohm
X: 0.117 Ohm
", "type": "scatter", "x": [ 3419684.45287, 3419661.934775, 3419606.0771149998, 3419397.84279 ], "y": [ 5369332.632085, 5369355.33858, 5369419.222080001, 5369283.55578 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 167
Name: Line 167
Length: 0.464 km
R: 0.075 Ohm
X: 0.054 Ohm
", "type": "scatter", "x": [ 3411249.917565, 3411701.231155 ], "y": [ 5370149.9372000005, 5370156.0428100005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 168
Name: Line 168
Length: 0.42 km
R: 0.068 Ohm
X: 0.049 Ohm
", "type": "scatter", "x": [ 3411303.625725, 3411179.464765, 3411094.5293799997 ], "y": [ 5370800.261425001, 5370488.773875, 5370489.677610001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 169
Name: Line 169
Length: 0.272 km
R: 0.044 Ohm
X: 0.032 Ohm
", "type": "scatter", "x": [ 3411094.5293799997, 3410899.95785, 3410821.62822 ], "y": [ 5370489.677610001, 5370495.628355, 5370490.62743 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 170
Name: Line 170
Length: 0.285 km
R: 0.046 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3417046.76693, 3417008.30096, 3417012.176055, 3417028.582055, 3417043.53881 ], "y": [ 5370300.571885, 5370370.32754, 5370454.0568, 5370473.89317, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 171
Name: Line 171
Length: 0.77 km
R: 0.124 Ohm
X: 0.09 Ohm
", "type": "scatter", "x": [ 3416952.52644, 3416931.6453, 3416963.873155, 3416926.189135, 3417007.9690199997, 3417067.86932, 3417140.5387399998, 3417043.53881 ], "y": [ 5371121.336080001, 5371117.519325, 5371042.56366, 5370986.120375, 5370761.840875001, 5370787.2333700005, 5370610.79396, 5370568.944580001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 172
Name: Line 172
Length: 0.264 km
R: 0.032 Ohm
X: 0.03 Ohm
", "type": "scatter", "x": [ 3417498.904005, 3417526.611275, 3417439.513935 ], "y": [ 5369889.409085, 5370063.148825, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 173
Name: Line 173
Length: 0.197 km
R: 0.024 Ohm
X: 0.022 Ohm
", "type": "scatter", "x": [ 3417439.513935, 3417544.662435, 3417568.126245 ], "y": [ 5370076.235715, 5370127.654185001, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 174
Name: Line 174
Length: 0.28 km
R: 0.045 Ohm
X: 0.033 Ohm
", "type": "scatter", "x": [ 3417262.3221, 3417280.92264, 3417439.513935 ], "y": [ 5369983.370025001, 5370101.560875, 5370076.235715 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 175
Name: Line 175
Length: 0.398 km
R: 0.049 Ohm
X: 0.045 Ohm
", "type": "scatter", "x": [ 3417643.32197, 3417618.3530699997, 3417584.763455, 3417543.82065, 3417523.5894, 3417495.39675, 3417498.904005 ], "y": [ 5369572.441095, 5369653.980350001, 5369761.60422, 5369759.45706, 5369834.221525, 5369836.070705, 5369889.409085 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 177
Name: Line 177
Length: 0.293 km
R: 0.047 Ohm
X: 0.034 Ohm
", "type": "scatter", "x": [ 3416952.52644, 3417019.61853 ], "y": [ 5371121.336080001, 5371396.63716 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 178
Name: Line 178
Length: 0.449 km
R: 0.072 Ohm
X: 0.052 Ohm
", "type": "scatter", "x": [ 3417250.970735, 3417172.483415, 3416985.41284, 3416952.52644 ], "y": [ 5370854.007660001, 5371006.042420001, 5371038.570755, 5371121.336080001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 179
Name: Line 179
Length: 0.551 km
R: 0.089 Ohm
X: 0.064 Ohm
", "type": "scatter", "x": [ 3417317.379745, 3417374.64641, 3417445.20023, 3417335.44142, 3417250.970735 ], "y": [ 5370438.243685001, 5370482.47614, 5370525.296955001, 5370802.26678, 5370854.007660001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 180
Name: Line 180
Length: 1.42 km
R: 0.229 Ohm
X: 0.166 Ohm
", "type": "scatter", "x": [ 3417773.4362149998, 3417547.263665, 3417092.437845, 3416936.8934 ], "y": [ 5366754.669095, 5367024.245295, 5367814.710305001, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 181
Name: Line 181
Length: 0.54 km
R: 0.087 Ohm
X: 0.063 Ohm
", "type": "scatter", "x": [ 3417614.157325, 3417564.92815, 3417299.538835, 3417091.49669 ], "y": [ 5369041.862825001, 5369047.79688, 5369076.224020001, 5369163.8307300005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 182
Name: Line 182
Length: 0.355 km
R: 0.043 Ohm
X: 0.04 Ohm
", "type": "scatter", "x": [ 3417091.49669, 3417078.76051, 3417129.51467, 3417014.99309, 3417068.32117 ], "y": [ 5369163.8307300005, 5369173.43271, 5369247.865735, 5369338.73142, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 183
Name: Line 183
Length: 0.338 km
R: 0.041 Ohm
X: 0.038 Ohm
", "type": "scatter", "x": [ 3417392.81507, 3417221.706565, 3417068.32117 ], "y": [ 5369328.91016, 5369373.63276, 5369426.721965 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 184
Name: Line 184
Length: 0.44 km
R: 0.071 Ohm
X: 0.051 Ohm
", "type": "scatter", "x": [ 3417643.32197, 3417499.640205, 3417284.072805, 3417296.995665 ], "y": [ 5369572.441095, 5369556.183060001, 5369594.465005, 5369670.800840001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 185
Name: Line 185
Length: 1.095 km
R: 0.176 Ohm
X: 0.128 Ohm
", "type": "scatter", "x": [ 3417614.157325, 3417622.92544, 3417439.856105, 3417162.9211049997, 3416989.87706 ], "y": [ 5369041.862825001, 5368982.329445001, 5368544.894365001, 5368274.78753, 5368254.9978950005 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 186
Name: Line 186
Length: 0.346 km
R: 0.056 Ohm
X: 0.041 Ohm
", "type": "scatter", "x": [ 3417614.157325, 3417745.7426, 3417742.560455, 3417839.113615 ], "y": [ 5369041.862825001, 5369037.615870001, 5368932.327875, 5368879.194555 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 187
Name: Line 187
Length: 0.41 km
R: 0.066 Ohm
X: 0.048 Ohm
", "type": "scatter", "x": [ 3416989.87706, 3416985.50385, 3416950.80848, 3416951.519765, 3416936.8934 ], "y": [ 5368254.9978950005, 5368088.635430001, 5368017.79605, 5367910.646195, 5367855.33526 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 189
Name: Line 189
Length: 0.446 km
R: 0.072 Ohm
X: 0.052 Ohm
", "type": "scatter", "x": [ 3416691.72847, 3416676.63024, 3416869.326835, 3416889.015395 ], "y": [ 5369521.514525, 5369559.951065, 5369892.693910001, 5369897.529565 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 190
Name: Line 190
Length: 0.314 km
R: 0.051 Ohm
X: 0.037 Ohm
", "type": "scatter", "x": [ 3416889.015395, 3416885.9621099997, 3417034.2221, 3417062.86489 ], "y": [ 5369897.529565, 5369927.3250400005, 5370110.292235, 5370149.781450001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 191
Name: Line 191
Length: 0.152 km
R: 0.024 Ohm
X: 0.018 Ohm
", "type": "scatter", "x": [ 3417062.86489, 3417046.76693 ], "y": [ 5370149.781450001, 5370300.571885 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 192
Name: Line 192
Length: 0.397 km
R: 0.064 Ohm
X: 0.046 Ohm
", "type": "scatter", "x": [ 3417317.379745, 3417409.2479499998, 3417516.55994, 3417568.126245 ], "y": [ 5370438.243685001, 5370408.682515, 5370389.974015, 5370203.822020001 ] }, { "hoverinfo": "text", "legendgroup": "lines", "line": { "color": "rgb(128, 128, 128)", "width": 1 }, "mode": "lines", "name": "lines", "showlegend": false, "text": "Index: 193
Name: Line 193
Length: 1.006 km
R: 0.12 Ohm
X: 0.322 Ohm
", "type": "scatter", "x": [ 3408210.205095, 3408244.85202, 3408210.859365, 3408444.066435 ], "y": [ 5366929.533960001, 5367112.512095001, 5367414.9715100005, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "disconnected lines", "line": { "color": "rgb(128, 128, 128)", "dash": "dot", "width": 0.5 }, "mode": "lines", "name": "disconnected branches", "showlegend": true, "text": "Index: 66
Name: Line 66
Length: 0.446 km
R: 0.072 Ohm
X: 0.052 Ohm
", "type": "scatter", "x": [ 3412037.331555, 3412033.366715, 3412339.049355 ], "y": [ 5361518.461155, 5361510.275230001, 5361239.5318 ] }, { "hoverinfo": "text", "legendgroup": "disconnected lines", "line": { "color": "rgb(128, 128, 128)", "dash": "dot", "width": 0.5 }, "mode": "lines", "name": "disconnected branches", "showlegend": false, "text": "Index: 8
Name: Line 8
Length: 0.146 km
R: 0.023 Ohm
X: 0.017 Ohm
", "type": "scatter", "x": [ 3408045.89905, 3408024.463505, 3407984.897035 ], "y": [ 5357465.167160001, 5357494.355705, 5357597.62531 ] }, { "hoverinfo": "text", "legendgroup": "disconnected lines", "line": { "color": "rgb(128, 128, 128)", "dash": "dot", "width": 0.5 }, "mode": "lines", "name": "disconnected branches", "showlegend": false, "text": "Index: 23
Name: Line 23
Length: 1.188 km
R: 0.191 Ohm
X: 0.139 Ohm
", "type": "scatter", "x": [ 3417796.371315, 3418184.455, 3418745.212615 ], "y": [ 5364792.013845, 5365190.33528, 5365482.46575 ] }, { "hoverinfo": "text", "legendgroup": "disconnected lines", "line": { "color": "rgb(128, 128, 128)", "dash": "dot", "width": 0.5 }, "mode": "lines", "name": "disconnected branches", "showlegend": false, "text": "Index: 88
Name: Line 88
Length: 0.296 km
R: 0.048 Ohm
X: 0.035 Ohm
", "type": "scatter", "x": [ 3418717.898335, 3418710.79251, 3418770.10536 ], "y": [ 5362777.79097, 5362671.865585, 5362524.28598 ] }, { "hoverinfo": "text", "legendgroup": "disconnected lines", "line": { "color": "rgb(128, 128, 128)", "dash": "dot", "width": 0.5 }, "mode": "lines", "name": "disconnected branches", "showlegend": false, "text": "Index: 188
Name: Line 188
Length: 0.386 km
R: 0.062 Ohm
X: 0.045 Ohm
", "type": "scatter", "x": [ 3417068.32117, 3416691.72847 ], "y": [ 5369426.721965, 5369521.514525 ] }, { "hoverinfo": "text", "legendgroup": "disconnected lines", "line": { "color": "rgb(128, 128, 128)", "dash": "dot", "width": 0.5 }, "mode": "lines", "name": "disconnected branches", "showlegend": false, "text": "Index: 31
Name: Line 31
Length: 0.967 km
R: 0.156 Ohm
X: 0.113 Ohm
", "type": "scatter", "x": [ 3412523.282265, 3412756.53258 ], "y": [ 5367829.039055, 5368870.109585 ] }, { "hoverinfo": "text", "legendgroup": "lines", "marker": { "color": "rgb(128, 128, 128)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "text": [ "Index: 0
Name: Line 0
Length: 0.586 km
R: 0.094 Ohm
X: 0.069 Ohm
", "Index: 1
Name: Line 1
Length: 1.374 km
R: 0.221 Ohm
X: 0.161 Ohm
", "Index: 2
Name: Line 2
Length: 0.206 km
R: 0.033 Ohm
X: 0.024 Ohm
", "Index: 3
Name: Line 3
Length: 0.617 km
R: 0.099 Ohm
X: 0.072 Ohm
", "Index: 4
Name: Line 4
Length: 0.382 km
R: 0.061 Ohm
X: 0.045 Ohm
", "Index: 5
Name: Line 5
Length: 3.303 km
R: 0.532 Ohm
X: 0.386 Ohm
", "Index: 6
Name: Line 6
Length: 0.35 km
R: 0.056 Ohm
X: 0.041 Ohm
", "Index: 7
Name: Line 7
Length: 0.736 km
R: 0.118 Ohm
X: 0.086 Ohm
", "Index: 10
Name: Line 10
Length: 0.313 km
R: 0.05 Ohm
X: 0.037 Ohm
", "Index: 11
Name: Line 11
Length: 0.258 km
R: 0.042 Ohm
X: 0.03 Ohm
", "Index: 12
Name: Line 12
Length: 0.435 km
R: 0.07 Ohm
X: 0.051 Ohm
", "Index: 14
Name: Line 14
Length: 0.357 km
R: 0.058 Ohm
X: 0.042 Ohm
", "Index: 15
Name: Line 15
Length: 0.254 km
R: 0.041 Ohm
X: 0.03 Ohm
", "Index: 16
Name: Line 16
Length: 0.635 km
R: 0.102 Ohm
X: 0.074 Ohm
", "Index: 17
Name: Line 17
Length: 1.3 km
R: 0.209 Ohm
X: 0.152 Ohm
", "Index: 18
Name: Line 18
Length: 0.139 km
R: 0.022 Ohm
X: 0.016 Ohm
", "Index: 20
Name: Line 20
Length: 0.632 km
R: 0.102 Ohm
X: 0.074 Ohm
", "Index: 21
Name: Line 21
Length: 0.112 km
R: 0.018 Ohm
X: 0.013 Ohm
", "Index: 22
Name: Line 22
Length: 0.312 km
R: 0.05 Ohm
X: 0.036 Ohm
", "Index: 24
Name: Line 24
Length: 0.695 km
R: 0.112 Ohm
X: 0.081 Ohm
", "Index: 25
Name: Line 25
Length: 0.235 km
R: 0.038 Ohm
X: 0.028 Ohm
", "Index: 26
Name: Line 26
Length: 0.561 km
R: 0.09 Ohm
X: 0.066 Ohm
", "Index: 27
Name: Line 27
Length: 0.522 km
R: 0.084 Ohm
X: 0.061 Ohm
", "Index: 28
Name: Line 28
Length: 0.283 km
R: 0.034 Ohm
X: 0.032 Ohm
", "Index: 29
Name: Line 29
Length: 1.688 km
R: 0.272 Ohm
X: 0.197 Ohm
", "Index: 30
Name: Line 30
Length: 1.073 km
R: 0.173 Ohm
X: 0.125 Ohm
", "Index: 32
Name: Line 32
Length: 0.324 km
R: 0.052 Ohm
X: 0.038 Ohm
", "Index: 34
Name: Line 34
Length: 0.309 km
R: 0.05 Ohm
X: 0.036 Ohm
", "Index: 35
Name: Line 35
Length: 0.541 km
R: 0.087 Ohm
X: 0.063 Ohm
", "Index: 36
Name: Line 36
Length: 0.296 km
R: 0.036 Ohm
X: 0.033 Ohm
", "Index: 37
Name: Line 37
Length: 0.48 km
R: 0.059 Ohm
X: 0.054 Ohm
", "Index: 38
Name: Line 38
Length: 0.711 km
R: 0.084 Ohm
X: 0.228 Ohm
", "Index: 39
Name: Line 39
Length: 0.242 km
R: 0.039 Ohm
X: 0.028 Ohm
", "Index: 40
Name: Line 40
Length: 0.261 km
R: 0.042 Ohm
X: 0.031 Ohm
", "Index: 41
Name: Line 41
Length: 0.345 km
R: 0.055 Ohm
X: 0.04 Ohm
", "Index: 42
Name: Line 42
Length: 1.621 km
R: 0.261 Ohm
X: 0.19 Ohm
", "Index: 43
Name: Line 43
Length: 0.782 km
R: 0.126 Ohm
X: 0.091 Ohm
", "Index: 44
Name: Line 44
Length: 0.248 km
R: 0.04 Ohm
X: 0.029 Ohm
", "Index: 45
Name: Line 45
Length: 2.611 km
R: 0.42 Ohm
X: 0.305 Ohm
", "Index: 46
Name: Line 46
Length: 1.158 km
R: 0.186 Ohm
X: 0.136 Ohm
", "Index: 47
Name: Line 47
Length: 1.526 km
R: 0.246 Ohm
X: 0.179 Ohm
", "Index: 48
Name: Line 48
Length: 2.033 km
R: 0.327 Ohm
X: 0.238 Ohm
", "Index: 49
Name: Line 49
Length: 0.997 km
R: 0.161 Ohm
X: 0.117 Ohm
", "Index: 50
Name: Line 50
Length: 0.804 km
R: 0.129 Ohm
X: 0.094 Ohm
", "Index: 51
Name: Line 51
Length: 0.947 km
R: 0.153 Ohm
X: 0.111 Ohm
", "Index: 52
Name: Line 52
Length: 0.929 km
R: 0.11 Ohm
X: 0.297 Ohm
", "Index: 53
Name: Line 53
Length: 0.778 km
R: 0.092 Ohm
X: 0.249 Ohm
", "Index: 54
Name: Line 54
Length: 0.713 km
R: 0.087 Ohm
X: 0.08 Ohm
", "Index: 55
Name: Line 55
Length: 1.136 km
R: 0.183 Ohm
X: 0.133 Ohm
", "Index: 56
Name: Line 56
Length: 2.149 km
R: 0.346 Ohm
X: 0.251 Ohm
", "Index: 57
Name: Line 57
Length: 0.811 km
R: 0.131 Ohm
X: 0.095 Ohm
", "Index: 58
Name: Line 58
Length: 0.47 km
R: 0.076 Ohm
X: 0.055 Ohm
", "Index: 59
Name: Line 59
Length: 3.155 km
R: 0.508 Ohm
X: 0.369 Ohm
", "Index: 60
Name: Line 60
Length: 0.58 km
R: 0.093 Ohm
X: 0.068 Ohm
", "Index: 61
Name: Line 61
Length: 0.618 km
R: 0.1 Ohm
X: 0.072 Ohm
", "Index: 62
Name: Line 62
Length: 1.006 km
R: 0.12 Ohm
X: 0.322 Ohm
", "Index: 63
Name: Line 63
Length: 0.222 km
R: 0.036 Ohm
X: 0.026 Ohm
", "Index: 64
Name: Line 64
Length: 0.936 km
R: 0.151 Ohm
X: 0.11 Ohm
", "Index: 65
Name: Line 65
Length: 1.341 km
R: 0.216 Ohm
X: 0.157 Ohm
", "Index: 67
Name: Line 67
Length: 0.26 km
R: 0.042 Ohm
X: 0.03 Ohm
", "Index: 68
Name: Line 68
Length: 1.804 km
R: 0.29 Ohm
X: 0.211 Ohm
", "Index: 69
Name: Line 69
Length: 0.59 km
R: 0.095 Ohm
X: 0.069 Ohm
", "Index: 70
Name: Line 70
Length: 0.368 km
R: 0.059 Ohm
X: 0.043 Ohm
", "Index: 71
Name: Line 71
Length: 0.162 km
R: 0.026 Ohm
X: 0.019 Ohm
", "Index: 72
Name: Line 72
Length: 1.455 km
R: 0.234 Ohm
X: 0.17 Ohm
", "Index: 73
Name: Line 73
Length: 0.466 km
R: 0.075 Ohm
X: 0.054 Ohm
", "Index: 74
Name: Line 74
Length: 0.53 km
R: 0.085 Ohm
X: 0.062 Ohm
", "Index: 75
Name: Line 75
Length: 0.304 km
R: 0.049 Ohm
X: 0.036 Ohm
", "Index: 76
Name: Line 76
Length: 0.347 km
R: 0.056 Ohm
X: 0.041 Ohm
", "Index: 77
Name: Line 77
Length: 2.122 km
R: 0.342 Ohm
X: 0.248 Ohm
", "Index: 78
Name: Line 78
Length: 0.296 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 79
Name: Line 79
Length: 0.275 km
R: 0.044 Ohm
X: 0.032 Ohm
", "Index: 80
Name: Line 80
Length: 0.428 km
R: 0.069 Ohm
X: 0.05 Ohm
", "Index: 81
Name: Line 81
Length: 0.338 km
R: 0.054 Ohm
X: 0.039 Ohm
", "Index: 82
Name: Line 82
Length: 0.349 km
R: 0.056 Ohm
X: 0.041 Ohm
", "Index: 85
Name: Line 85
Length: 0.329 km
R: 0.053 Ohm
X: 0.038 Ohm
", "Index: 86
Name: Line 86
Length: 0.261 km
R: 0.042 Ohm
X: 0.031 Ohm
", "Index: 87
Name: Line 87
Length: 0.298 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 90
Name: Line 90
Length: 0.315 km
R: 0.051 Ohm
X: 0.037 Ohm
", "Index: 91
Name: Line 91
Length: 2.528 km
R: 0.407 Ohm
X: 0.296 Ohm
", "Index: 92
Name: Line 92
Length: 0.093 km
R: 0.015 Ohm
X: 0.011 Ohm
", "Index: 93
Name: Line 93
Length: 0.387 km
R: 0.062 Ohm
X: 0.045 Ohm
", "Index: 94
Name: Line 94
Length: 0.272 km
R: 0.044 Ohm
X: 0.032 Ohm
", "Index: 95
Name: Line 95
Length: 0.247 km
R: 0.04 Ohm
X: 0.029 Ohm
", "Index: 96
Name: Line 96
Length: 0.25 km
R: 0.04 Ohm
X: 0.029 Ohm
", "Index: 97
Name: Line 97
Length: 0.459 km
R: 0.074 Ohm
X: 0.054 Ohm
", "Index: 98
Name: Line 98
Length: 0.366 km
R: 0.059 Ohm
X: 0.043 Ohm
", "Index: 99
Name: Line 99
Length: 0.291 km
R: 0.047 Ohm
X: 0.034 Ohm
", "Index: 100
Name: Line 100
Length: 0.299 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 101
Name: Line 101
Length: 0.236 km
R: 0.038 Ohm
X: 0.028 Ohm
", "Index: 102
Name: Line 102
Length: 0.489 km
R: 0.079 Ohm
X: 0.057 Ohm
", "Index: 103
Name: Line 103
Length: 0.298 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 104
Name: Line 104
Length: 0.238 km
R: 0.038 Ohm
X: 0.028 Ohm
", "Index: 105
Name: Line 105
Length: 0.177 km
R: 0.029 Ohm
X: 0.021 Ohm
", "Index: 106
Name: Line 106
Length: 0.283 km
R: 0.046 Ohm
X: 0.033 Ohm
", "Index: 107
Name: Line 107
Length: 0.615 km
R: 0.099 Ohm
X: 0.072 Ohm
", "Index: 108
Name: Line 108
Length: 1.278 km
R: 0.206 Ohm
X: 0.149 Ohm
", "Index: 109
Name: Line 109
Length: 0.147 km
R: 0.024 Ohm
X: 0.017 Ohm
", "Index: 110
Name: Line 110
Length: 0.253 km
R: 0.041 Ohm
X: 0.03 Ohm
", "Index: 111
Name: Line 111
Length: 0.214 km
R: 0.034 Ohm
X: 0.025 Ohm
", "Index: 112
Name: Line 112
Length: 0.415 km
R: 0.067 Ohm
X: 0.049 Ohm
", "Index: 113
Name: Line 113
Length: 0.18 km
R: 0.029 Ohm
X: 0.021 Ohm
", "Index: 114
Name: Line 114
Length: 0.562 km
R: 0.09 Ohm
X: 0.066 Ohm
", "Index: 116
Name: Line 116
Length: 0.399 km
R: 0.064 Ohm
X: 0.047 Ohm
", "Index: 117
Name: Line 117
Length: 0.261 km
R: 0.042 Ohm
X: 0.031 Ohm
", "Index: 118
Name: Line 118
Length: 0.37 km
R: 0.06 Ohm
X: 0.043 Ohm
", "Index: 119
Name: Line 119
Length: 0.251 km
R: 0.04 Ohm
X: 0.029 Ohm
", "Index: 120
Name: Line 120
Length: 0.304 km
R: 0.049 Ohm
X: 0.036 Ohm
", "Index: 121
Name: Line 121
Length: 0.233 km
R: 0.037 Ohm
X: 0.027 Ohm
", "Index: 122
Name: Line 122
Length: 0.118 km
R: 0.019 Ohm
X: 0.014 Ohm
", "Index: 123
Name: Line 123
Length: 0.397 km
R: 0.064 Ohm
X: 0.046 Ohm
", "Index: 124
Name: Line 124
Length: 0.52 km
R: 0.084 Ohm
X: 0.061 Ohm
", "Index: 125
Name: Line 125
Length: 1.526 km
R: 0.246 Ohm
X: 0.179 Ohm
", "Index: 126
Name: Line 126
Length: 0.254 km
R: 0.041 Ohm
X: 0.03 Ohm
", "Index: 127
Name: Line 127
Length: 1.601 km
R: 0.19 Ohm
X: 0.512 Ohm
", "Index: 128
Name: Line 128
Length: 0.473 km
R: 0.076 Ohm
X: 0.055 Ohm
", "Index: 129
Name: Line 129
Length: 0.298 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 130
Name: Line 130
Length: 0.295 km
R: 0.047 Ohm
X: 0.034 Ohm
", "Index: 131
Name: Line 131
Length: 0.417 km
R: 0.067 Ohm
X: 0.049 Ohm
", "Index: 132
Name: Line 132
Length: 0.323 km
R: 0.052 Ohm
X: 0.038 Ohm
", "Index: 133
Name: Line 133
Length: 0.296 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 134
Name: Line 134
Length: 0.282 km
R: 0.045 Ohm
X: 0.033 Ohm
", "Index: 135
Name: Line 135
Length: 0.396 km
R: 0.064 Ohm
X: 0.046 Ohm
", "Index: 136
Name: Line 136
Length: 0.371 km
R: 0.06 Ohm
X: 0.043 Ohm
", "Index: 137
Name: Line 137
Length: 0.274 km
R: 0.044 Ohm
X: 0.032 Ohm
", "Index: 138
Name: Line 138
Length: 0.329 km
R: 0.053 Ohm
X: 0.038 Ohm
", "Index: 139
Name: Line 139
Length: 0.499 km
R: 0.08 Ohm
X: 0.058 Ohm
", "Index: 140
Name: Line 140
Length: 0.316 km
R: 0.051 Ohm
X: 0.037 Ohm
", "Index: 141
Name: Line 141
Length: 0.388 km
R: 0.062 Ohm
X: 0.045 Ohm
", "Index: 142
Name: Line 142
Length: 0.07 km
R: 0.011 Ohm
X: 0.008 Ohm
", "Index: 143
Name: Line 143
Length: 0.286 km
R: 0.046 Ohm
X: 0.033 Ohm
", "Index: 144
Name: Line 144
Length: 1.517 km
R: 0.244 Ohm
X: 0.178 Ohm
", "Index: 145
Name: Line 145
Length: 0.719 km
R: 0.116 Ohm
X: 0.084 Ohm
", "Index: 146
Name: Line 146
Length: 0.22 km
R: 0.035 Ohm
X: 0.026 Ohm
", "Index: 147
Name: Line 147
Length: 0.21 km
R: 0.034 Ohm
X: 0.025 Ohm
", "Index: 148
Name: Line 148
Length: 0.239 km
R: 0.039 Ohm
X: 0.028 Ohm
", "Index: 149
Name: Line 149
Length: 0.345 km
R: 0.055 Ohm
X: 0.04 Ohm
", "Index: 150
Name: Line 150
Length: 0.327 km
R: 0.053 Ohm
X: 0.038 Ohm
", "Index: 151
Name: Line 151
Length: 0.553 km
R: 0.068 Ohm
X: 0.062 Ohm
", "Index: 152
Name: Line 152
Length: 0.146 km
R: 0.024 Ohm
X: 0.017 Ohm
", "Index: 153
Name: Line 153
Length: 0.482 km
R: 0.078 Ohm
X: 0.056 Ohm
", "Index: 154
Name: Line 154
Length: 0.443 km
R: 0.071 Ohm
X: 0.052 Ohm
", "Index: 156
Name: Line 156
Length: 0.284 km
R: 0.046 Ohm
X: 0.033 Ohm
", "Index: 157
Name: Line 157
Length: 1.082 km
R: 0.128 Ohm
X: 0.346 Ohm
", "Index: 158
Name: Line 158
Length: 0.689 km
R: 0.082 Ohm
X: 0.221 Ohm
", "Index: 161
Name: Line 161
Length: 0.468 km
R: 0.057 Ohm
X: 0.052 Ohm
", "Index: 162
Name: Line 162
Length: 2.595 km
R: 0.308 Ohm
X: 0.83 Ohm
", "Index: 163
Name: Line 163
Length: 0.306 km
R: 0.049 Ohm
X: 0.036 Ohm
", "Index: 164
Name: Line 164
Length: 0.566 km
R: 0.091 Ohm
X: 0.066 Ohm
", "Index: 165
Name: Line 165
Length: 0.365 km
R: 0.043 Ohm
X: 0.117 Ohm
", "Index: 167
Name: Line 167
Length: 0.464 km
R: 0.075 Ohm
X: 0.054 Ohm
", "Index: 168
Name: Line 168
Length: 0.42 km
R: 0.068 Ohm
X: 0.049 Ohm
", "Index: 169
Name: Line 169
Length: 0.272 km
R: 0.044 Ohm
X: 0.032 Ohm
", "Index: 170
Name: Line 170
Length: 0.285 km
R: 0.046 Ohm
X: 0.033 Ohm
", "Index: 171
Name: Line 171
Length: 0.77 km
R: 0.124 Ohm
X: 0.09 Ohm
", "Index: 172
Name: Line 172
Length: 0.264 km
R: 0.032 Ohm
X: 0.03 Ohm
", "Index: 173
Name: Line 173
Length: 0.197 km
R: 0.024 Ohm
X: 0.022 Ohm
", "Index: 174
Name: Line 174
Length: 0.28 km
R: 0.045 Ohm
X: 0.033 Ohm
", "Index: 175
Name: Line 175
Length: 0.398 km
R: 0.049 Ohm
X: 0.045 Ohm
", "Index: 177
Name: Line 177
Length: 0.293 km
R: 0.047 Ohm
X: 0.034 Ohm
", "Index: 178
Name: Line 178
Length: 0.449 km
R: 0.072 Ohm
X: 0.052 Ohm
", "Index: 179
Name: Line 179
Length: 0.551 km
R: 0.089 Ohm
X: 0.064 Ohm
", "Index: 180
Name: Line 180
Length: 1.42 km
R: 0.229 Ohm
X: 0.166 Ohm
", "Index: 181
Name: Line 181
Length: 0.54 km
R: 0.087 Ohm
X: 0.063 Ohm
", "Index: 182
Name: Line 182
Length: 0.355 km
R: 0.043 Ohm
X: 0.04 Ohm
", "Index: 183
Name: Line 183
Length: 0.338 km
R: 0.041 Ohm
X: 0.038 Ohm
", "Index: 184
Name: Line 184
Length: 0.44 km
R: 0.071 Ohm
X: 0.051 Ohm
", "Index: 185
Name: Line 185
Length: 1.095 km
R: 0.176 Ohm
X: 0.128 Ohm
", "Index: 186
Name: Line 186
Length: 0.346 km
R: 0.056 Ohm
X: 0.041 Ohm
", "Index: 187
Name: Line 187
Length: 0.41 km
R: 0.066 Ohm
X: 0.048 Ohm
", "Index: 189
Name: Line 189
Length: 0.446 km
R: 0.072 Ohm
X: 0.052 Ohm
", "Index: 190
Name: Line 190
Length: 0.314 km
R: 0.051 Ohm
X: 0.037 Ohm
", "Index: 191
Name: Line 191
Length: 0.152 km
R: 0.024 Ohm
X: 0.018 Ohm
", "Index: 192
Name: Line 192
Length: 0.397 km
R: 0.064 Ohm
X: 0.046 Ohm
", "Index: 193
Name: Line 193
Length: 1.006 km
R: 0.12 Ohm
X: 0.322 Ohm
", "Index: 66
Name: Line 66
Length: 0.446 km
R: 0.072 Ohm
X: 0.052 Ohm
", "Index: 8
Name: Line 8
Length: 0.146 km
R: 0.023 Ohm
X: 0.017 Ohm
", "Index: 23
Name: Line 23
Length: 1.188 km
R: 0.191 Ohm
X: 0.139 Ohm
", "Index: 88
Name: Line 88
Length: 0.296 km
R: 0.048 Ohm
X: 0.035 Ohm
", "Index: 188
Name: Line 188
Length: 0.386 km
R: 0.062 Ohm
X: 0.045 Ohm
", "Index: 31
Name: Line 31
Length: 0.967 km
R: 0.156 Ohm
X: 0.113 Ohm
" ], "type": "scatter", "x": [ 3418295.8214499997, 3417376.6849950003, 3418253.788215, 3418300.477225, 3418548.168025, 3410934.9569125, 3409892.50809, 3409546.5547249997, 3408162.449325, 3407974.3986325003, 3407758.276675, 3407972.68108, 3412335.048935, 3412244.6991924997, 3408822.1379025, 3409043.2255349997, 3414135.644365, 3413884.536345, 3417807.2701225, 3417447.6201250004, 3418820.8026675, 3418639.6644975, 3412131.5851625, 3412152.4662975, 3412945.261205, 3412059.6967625003, 3412615.856815, 3411365.371095, 3411622.2848825, 3411742.341145, 3411642.764525, 3408862.9441174995, 3409099.2207474997, 3408884.7174525, 3412174.6292775, 3407801.4246974997, 3407949.82266, 3407641.8599699996, 3416140.7611525, 3409981.8434075, 3411015.71814, 3415166.0372775, 3416481.349825, 3411803.88305, 3414232.7912975, 3410768.2079425, 3409917.657075, 3411369.2402649997, 3408608.1511375, 3413734.78541, 3412433.3300075, 3413973.38707, 3414655.7789175, 3413592.3608775, 3413044.5971224997, 3408991.3580024997, 3410311.6465149997, 3410811.4970875, 3410773.562855, 3412028.4647500003, 3419862.7587249996, 3421232.7239650004, 3418985.9968275, 3418938.53399, 3418535.9106975, 3418936.2395775, 3419165.2134325, 3418883.3840699997, 3407875.107705, 3408127.9865025003, 3419798.258505, 3419681.2190300003, 3419489.29399, 3419692.54524, 3419364.6479925, 3417702.0024475, 3417759.4930475, 3418743.2652125, 3418440.7030924996, 3420078.1228475, 3418313.755015, 3418041.9023275003, 3418750.4702125, 3421246.0522074997, 3421371.1673025, 3421340.8402474998, 3407733.894305, 3407921.0681074997, 3419124.5818074998, 3418877.524055, 3419184.97763, 3419218.6526175, 3409379.8413349995, 3409476.1254525, 3409360.4599125003, 3409225.669545, 3408615.3319325, 3409451.5867675003, 3407751.9673800003, 3407863.3141900003, 3407748.26208, 3407794.7420675, 3407315.1853225, 3408288.3769175, 3408528.2194175, 3408481.4007275, 3407415.4143525, 3407947.7951625, 3407848.1760475, 3407377.3204475, 3407645.2147899996, 3407454.4430649998, 3407904.0612749998, 3407184.1173175, 3408464.9655725, 3408810.567375, 3409593.385465, 3408683.70955, 3408495.94682, 3408869.0672025, 3409590.9366175, 3409418.0534774996, 3408584.9013175, 3409346.9268425, 3409451.294465, 3409472.4636474997, 3413687.6583425, 3413908.73962, 3412220.6540674996, 3412240.421425, 3412205.500935, 3412926.616395, 3412755.211015, 3412455.332355, 3412555.66475, 3412431.9575025, 3412814.195095, 3413006.3293399997, 3411762.1889124997, 3412018.140735, 3412437.633145, 3412540.5132825, 3412508.2871875, 3418850.8049574997, 3418121.6245125, 3417658.7986175, 3418695.9678525003, 3411985.302605, 3412583.17154, 3419501.9599524997, 3411475.57436, 3411241.545245, 3410997.2436149996, 3417010.2385075, 3416967.0790775, 3417512.75764, 3417492.0881850002, 3417360.2182875, 3417564.2920525, 3416986.072485, 3417078.9481275, 3417390.3208250003, 3417319.850755, 3417432.2334925, 3417072.2538799997, 3417307.2608175, 3417391.856505, 3417301.3886049995, 3417744.1515275, 3416968.156165, 3416772.9785375, 3416960.092105, 3417054.81591, 3417462.903945, 3408227.8556925002, 3412186.2080349997, 3408004.68027, 3418464.8338075, 3418740.448935, 3416880.02482, 3412639.9074224997 ], "y": [ 5363949.0681675, 5363694.871030001, 5363560.254825001, 5363141.205530001, 5362811.9427350005, 5360989.1642325, 5359506.3892975, 5359438.53591, 5357568.873287501, 5357454.058035001, 5361571.6116700005, 5361775.2973325, 5361879.626970001, 5361702.8110525, 5363494.073182501, 5364144.154480001, 5363437.5343375, 5363196.1877500005, 5364570.463865001, 5364806.1712650005, 5364667.9731625, 5364767.5497525, 5366744.34877, 5366621.6540825, 5369549.053577499, 5370114.9084375, 5368925.9209125005, 5370689.8140675, 5370508.66339, 5367328.615532501, 5366949.443372501, 5365019.659262501, 5364701.3772275, 5364808.90979, 5367075.652162501, 5356421.7507875, 5355556.328132501, 5355553.662205, 5365120.91828, 5363898.6946375, 5363161.169175001, 5363532.275185, 5363897.2955775, 5362520.4498425, 5363300.72552, 5367271.648882501, 5367302.078020001, 5367411.178745001, 5362611.45362, 5365980.226365, 5367434.115175, 5370750.6369475, 5370027.6374075, 5370530.9838725, 5370491.1192525, 5367517.969675001, 5369766.6088975, 5370008.24061, 5370047.2660825, 5361679.7602025, 5362912.003027501, 5362588.876025001, 5365793.769397501, 5365953.933770001, 5366247.869905001, 5365272.84333, 5365643.2788925, 5365551.580952501, 5357816.076892501, 5358881.906900001, 5365621.6407575, 5365653.8028675, 5365924.0331075005, 5365461.3429575, 5365796.45858, 5364260.32502, 5364466.161587501, 5363019.4857325, 5364286.3726725, 5364802.29265, 5364584.564212501, 5364485.48304, 5364504.48675, 5363144.604025001, 5363043.3955925, 5362750.6853600005, 5355361.5408075005, 5356984.258445, 5362699.01706, 5362435.583280001, 5362331.89372, 5362559.0076175, 5358799.0367775, 5358949.7359025, 5358589.368177501, 5358432.508485001, 5358196.1373225, 5359079.2631575, 5357087.0178225, 5357291.746065, 5357475.660235001, 5357165.852565, 5357599.1750475, 5361734.54465, 5361710.874205001, 5361824.708275, 5361842.097755, 5361946.650640001, 5361157.473095, 5361689.5713, 5361245.9237275, 5361524.3347075, 5360100.370592501, 5361785.765562501, 5366170.204565001, 5365632.453455001, 5364334.289802501, 5364517.445, 5364611.002827501, 5364245.91958, 5364611.0491775, 5363971.99834, 5364774.1674475, 5364659.5833825, 5364244.13933, 5364472.9273850005, 5363030.24368, 5362989.174145, 5367118.138995, 5361952.902437501, 5362101.968080001, 5362253.407595, 5361558.089232501, 5361223.680000001, 5368969.75065, 5368876.182515001, 5368984.378225001, 5369081.9302375, 5366550.2075849995, 5366411.942645, 5366926.8759425, 5366683.037210001, 5366370.309392501, 5368973.908500001, 5369215.930372501, 5369312.247287501, 5369469.098467501, 5370486.904382501, 5370460.4774525, 5369351.38893, 5370152.9900050005, 5370644.517650001, 5370492.6529825, 5370412.19217, 5370873.980625, 5369976.2789549995, 5370101.94495, 5370088.898295, 5369760.5306400005, 5371258.986620001, 5371022.3065875005, 5370663.7818675, 5367419.4778, 5369062.01045, 5369293.2985775005, 5369351.27146, 5369575.3240325, 5368409.8409475, 5368984.971872501, 5368053.215740001, 5369726.3224875005, 5370018.8086375, 5370225.1766675, 5370399.328265, 5367263.741802501, 5361374.903515, 5357545.9905075, 5365336.400515, 5362598.0757825, 5369474.118245, 5368349.57432 ] }, { "hoverinfo": "text", "legendgroup": "2W transformers", "line": { "color": "rgb(0, 128, 0)", "width": 5 }, "mode": "lines", "name": "2W transformers", "showlegend": true, "text": "Index: 114
Name: HV/MV Transformer 0
V_n HV: 110.0 kV
V_n LV: 20.0 kV
Tap pos.: -2
", "type": "scatter", "x": [ 3419748.613735, 3419748.613735, 3419748.613735 ], "y": [ 5369365.755840001, 5369365.755840001, 5369365.755840001 ] }, { "hoverinfo": "text", "legendgroup": "2W transformers", "line": { "color": "rgb(0, 128, 0)", "width": 5 }, "mode": "lines", "name": "2W transformers", "showlegend": false, "text": "Index: 142
Name: HV/MV Transformer 1
V_n HV: 110.0 kV
V_n LV: 20.0 kV
Tap pos.: -3
", "type": "scatter", "x": [ 3408444.066435, 3408444.066435, 3408444.066435 ], "y": [ 5367639.480235, 5367639.480235, 5367639.480235 ] }, { "hoverinfo": "text", "legendgroup": "2W transformers", "marker": { "color": "rgb(0, 128, 0)", "size": 1, "symbol": "circle" }, "mode": "markers", "name": "edge_center", "showlegend": false, "text": [ "Index: 114
Name: HV/MV Transformer 0
V_n HV: 110.0 kV
V_n LV: 20.0 kV
Tap pos.: -2
", "Index: 142
Name: HV/MV Transformer 1
V_n HV: 110.0 kV
V_n LV: 20.0 kV
Tap pos.: -3
" ], "type": "scatter", "x": [ 3419748.613735, 3408444.066435 ], "y": [ 5369365.755840001, 5367639.480235 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(255, 255, 0)", "size": 20, "symbol": "square" }, "mode": "markers", "name": "external grid", "text": [ "Index: 0
Name: External Grid 0
V_m: 1.0 p.u.
V_a: 0.0 °
", "Index: 1
Name: External Grid 1
V_m: 1.0 p.u.
V_a: 0.0 °
" ], "type": "scatter", "x": [ 3419748.613735, 3408444.066435 ], "y": [ 5369365.755840001, 5367639.480235 ] }, { "hoverinfo": "text", "marker": { "color": "rgb(0, 0, 255)", "size": 0.25, "symbol": "circle" }, "mode": "markers", "name": "buses", "text": [ "Index: 0
Name: Bus 0
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.122 MW
", "Index: 1
Name: Bus 1
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.092 MW
", "Index: 2
Name: Bus 2
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 3
Name: Bus 3
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 4
Name: Bus 4
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.092 MW
", "Index: 5
Name: Bus 5
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 6
Name: Bus 6
V_n: 20.0 kV
Load: 0.500 MW
", "Index: 7
Name: Bus 7
V_n: 20.0 kV
", "Index: 8
Name: Bus 8
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.137 MW
", "Index: 29
Name: Bus 9
V_n: 20.0 kV
Static generation: 0.400 MW
", "Index: 30
Name: Bus 10
V_n: 20.0 kV
", "Index: 31
Name: Bus 11
V_n: 20.0 kV
Static generation: 0.800 MW
", "Index: 32
Name: Bus 12
V_n: 20.0 kV
Static generation: 0.200 MW
", "Index: 33
Name: Bus 13
V_n: 20.0 kV
Static generation: 0.856 MW
", "Index: 34
Name: Bus 14
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 35
Name: Bus 15
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.155 MW
", "Index: 36
Name: Bus 16
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 37
Name: Bus 17
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 38
Name: Bus 18
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.049 MW
", "Index: 39
Name: Bus 19
V_n: 20.0 kV
", "Index: 40
Name: Bus 20
V_n: 20.0 kV
Static generation: 0.160 MW
", "Index: 41
Name: Bus 21
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.140 MW
", "Index: 42
Name: Bus 22
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 43
Name: Bus 23
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 44
Name: Bus 24
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.295 MW
", "Index: 45
Name: Bus 25
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.093 MW
", "Index: 46
Name: Bus 26
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 47
Name: Bus 27
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.140 MW
", "Index: 48
Name: Bus 28
V_n: 20.0 kV
Load: 0.500 MW
", "Index: 49
Name: Bus 29
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.093 MW
", "Index: 50
Name: Bus 30
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 51
Name: Bus 31
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 52
Name: Bus 32
V_n: 20.0 kV
Load: 0.500 MW
", "Index: 53
Name: Bus 33
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 54
Name: Bus 34
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.137 MW
", "Index: 55
Name: Bus 35
V_n: 20.0 kV
Load: 0.500 MW
", "Index: 56
Name: Bus 36
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.295 MW
", "Index: 57
Name: Bus 37
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 58
Name: Bus 38
V_n: 110.0 kV
", "Index: 64
Name: Bus 39
V_n: 20.0 kV
", "Index: 65
Name: Bus 40
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.295 MW
", "Index: 71
Name: Bus 41
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.155 MW
", "Index: 72
Name: Bus 42
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 73
Name: Bus 43
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 74
Name: Bus 44
V_n: 20.0 kV
", "Index: 75
Name: Bus 45
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 76
Name: Bus 46
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 77
Name: Bus 47
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.155 MW
", "Index: 78
Name: Bus 48
V_n: 20.0 kV
", "Index: 79
Name: Bus 49
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 80
Name: Bus 50
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 81
Name: Bus 51
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 82
Name: Bus 52
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 83
Name: Bus 53
V_n: 20.0 kV
Static generation: 0.315 MW
", "Index: 84
Name: Bus 54
V_n: 20.0 kV
Static generation: 0.500 MW
", "Index: 85
Name: Bus 55
V_n: 20.0 kV
Static generation: 0.300 MW
", "Index: 86
Name: Bus 56
V_n: 20.0 kV
", "Index: 94
Name: Bus 57
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.108 MW
", "Index: 95
Name: Bus 58
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.108 MW
", "Index: 98
Name: Bus 59
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 100
Name: Bus 60
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.108 MW
", "Index: 101
Name: Bus 61
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 102
Name: Bus 62
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.118 MW
", "Index: 103
Name: Bus 63
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 104
Name: Bus 64
V_n: 20.0 kV
", "Index: 106
Name: Bus 65
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.295 MW
", "Index: 107
Name: Bus 66
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.049 MW
", "Index: 108
Name: Bus 67
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 109
Name: Bus 68
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.049 MW
", "Index: 110
Name: Bus 69
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 111
Name: Bus 70
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 116
Name: Bus 71
V_n: 20.0 kV
", "Index: 117
Name: Bus 72
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.140 MW
", "Index: 118
Name: Bus 73
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 119
Name: Bus 74
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 120
Name: Bus 75
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.093 MW
", "Index: 126
Name: Bus 76
V_n: 20.0 kV
", "Index: 129
Name: Bus 77
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.095 MW
", "Index: 131
Name: Bus 78
V_n: 20.0 kV
", "Index: 132
Name: Bus 79
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 133
Name: Bus 80
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 134
Name: Bus 81
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 136
Name: Bus 82
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 137
Name: Bus 83
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 138
Name: Bus 84
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 140
Name: Bus 85
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.122 MW
", "Index: 141
Name: Bus 86
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 142
Name: Bus 87
V_n: 20.0 kV
", "Index: 143
Name: Bus 88
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.155 MW
", "Index: 144
Name: Bus 89
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 145
Name: Bus 90
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 146
Name: Bus 91
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.233 MW
", "Index: 147
Name: Bus 92
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.137 MW
", "Index: 148
Name: Bus 93
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.093 MW
", "Index: 149
Name: Bus 94
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 150
Name: Bus 95
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.093 MW
", "Index: 153
Name: Bus 96
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 155
Name: Bus 97
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 157
Name: Bus 98
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 159
Name: Bus 99
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 161
Name: Bus 100
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 162
Name: Bus 101
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.108 MW
", "Index: 167
Name: Bus 102
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.109 MW
", "Index: 168
Name: Bus 103
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.109 MW
", "Index: 169
Name: Bus 104
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.109 MW
", "Index: 170
Name: Bus 105
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.118 MW
", "Index: 171
Name: Bus 106
V_n: 20.0 kV
", "Index: 172
Name: Bus 107
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.214 MW
", "Index: 173
Name: Bus 108
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 174
Name: Bus 109
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.118 MW
", "Index: 176
Name: Bus 110
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 178
Name: Bus 111
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 181
Name: Bus 112
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 184
Name: Bus 113
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 186
Name: Bus 114
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 188
Name: Bus 115
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 189
Name: Bus 116
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 190
Name: Bus 117
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 192
Name: Bus 118
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 194
Name: Bus 119
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.039 MW
", "Index: 195
Name: Bus 120
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.039 MW
", "Index: 196
Name: Bus 121
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 197
Name: Bus 122
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 198
Name: Bus 123
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 199
Name: Bus 124
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 200
Name: Bus 125
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 201
Name: Bus 126
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.108 MW
", "Index: 205
Name: Bus 127
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.118 MW
", "Index: 207
Name: Bus 128
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.118 MW
", "Index: 210
Name: Bus 129
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 213
Name: Bus 130
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.108 MW
", "Index: 215
Name: Bus 131
V_n: 20.0 kV
Load: 0.500 MW
", "Index: 216
Name: Bus 132
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.069 MW
", "Index: 219
Name: Bus 133
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.100 MW
", "Index: 221
Name: Bus 134
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.060 MW
", "Index: 223
Name: Bus 135
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.150 MW
", "Index: 224
Name: Bus 136
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.150 MW
", "Index: 227
Name: Bus 137
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.100 MW
", "Index: 229
Name: Bus 138
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.060 MW
", "Index: 231
Name: Bus 139
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.060 MW
", "Index: 235
Name: Bus 140
V_n: 20.0 kV
Load: 0.500 MW
", "Index: 236
Name: Bus 141
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.160 MW
", "Index: 237
Name: Bus 142
V_n: 20.0 kV
Static generation: 0.150 MW
", "Index: 238
Name: Bus 143
V_n: 20.0 kV
", "Index: 239
Name: Bus 144
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.090 MW
", "Index: 240
Name: Bus 145
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.122 MW
", "Index: 241
Name: Bus 146
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.076 MW
", "Index: 242
Name: Bus 147
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.122 MW
", "Index: 243
Name: Bus 148
V_n: 20.0 kV
", "Index: 244
Name: Bus 149
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.137 MW
", "Index: 245
Name: Bus 150
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.198 MW
", "Index: 246
Name: Bus 151
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 247
Name: Bus 152
V_n: 20.0 kV
", "Index: 248
Name: Bus 153
V_n: 20.0 kV
Static generation: 0.295 MW
", "Index: 253
Name: Bus 154
V_n: 20.0 kV
Static generation: 0.355 MW
", "Index: 269
Name: Bus 155
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.309 MW
", "Index: 271
Name: Bus 156
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.109 MW
", "Index: 273
Name: Bus 157
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.095 MW
", "Index: 275
Name: Bus 158
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 281
Name: Bus 159
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 285
Name: Bus 160
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 286
Name: Bus 161
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.054 MW
", "Index: 287
Name: Bus 162
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 288
Name: Bus 163
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 289
Name: Bus 164
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.191 MW
", "Index: 290
Name: Bus 165
V_n: 20.0 kV
Load: 0.630 MW
Static generation: 0.198 MW
", "Index: 298
Name: Bus 166
V_n: 20.0 kV
Static generation: 0.300 MW
", "Index: 301
Name: Bus 167
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.054 MW
", "Index: 303
Name: Bus 168
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 304
Name: Bus 169
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 305
Name: Bus 170
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 312
Name: Bus 171
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 313
Name: Bus 172
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 314
Name: Bus 173
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 315
Name: Bus 174
V_n: 20.0 kV
Load: 0.400 MW
Static generation: 0.068 MW
", "Index: 316
Name: Bus 175
V_n: 20.0 kV
Load: 0.250 MW
Static generation: 0.041 MW
", "Index: 317
Name: Bus 176
V_n: 20.0 kV
", "Index: 318
Name: Bus 177
V_n: 110.0 kV
", "Index: 319
Name: Bus 178
V_n: 20.0 kV
" ], "type": "scatter", "x": [ 3408665.349175, 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141, 3408210.205095, 3408719.72605, 3408975.913755, 3410296.66458, 3411216.526165, 3412523.282265, 3413353.181945, 3414619.659505, 3413854.89557, 3417068.32117, 3412335.82098, 3416989.87706, 3420936.666405, 3419748.613735, 3417044.332345, 3416936.8934, 3411249.917565, 3417839.113615, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3410287.52413, 3417062.86489, 3410365.877105, 3411701.231155, 3417046.76693, 3412171.07318, 3412037.331555, 3417317.379745, 3411094.5293799997, 3411891.829765, 3419748.613735, 3412644.303915, 3412494.665505, 3418411.783625, 3411785.34044, 3417849.758145, 3411973.54194, 3411622.542935, 3413992.76188, 3417091.49669, 3417392.81507, 3412984.086275, 3417643.32197, 3417614.157325, 3413126.367695, 3417773.4362149998, 3410821.62822, 3407983.78155, 3419397.84279, 3419357.7620449997, 3419277.01657, 3419979.565655, 3419616.951355, 3412068.438205, 3419697.711465, 3412575.0779, 3412613.5358949997, 3412542.38331, 3419678.205055, 3412183.33188, 3418359.45578, 3412343.37775, 3414019.75533, 3413865.67305, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245, 3409538.64957, 3407984.897035, 3412268.81795, 3418745.212615, 3412143.304465, 3419021.5555249997, 3414311.22654, 3419221.18234, 3413481.2855599998, 3412220.238145, 3412851.145155, 3418890.004785, 3417019.61853, 3412082.45804, 3417250.970735, 3416952.52644, 3412339.049355, 3417439.513935, 3412453.990615, 3417043.53881, 3408131.461275, 3407976.02058, 3407642.913365, 3408223.972925, 3421413.450085, 3421459.12736, 3408045.89905, 3407935.6436, 3409798.60001, 3413898.4617749997, 3409096.600125, 3412438.404275, 3421058.997755, 3421313.47574, 3409369.512385, 3408951.664265, 3407627.22878, 3407706.186985, 3407068.74552, 3407771.006305, 3412509.49375, 3412756.53258, 3411352.7399999998, 3418844.726965, 3417796.371315, 3412259.1209299997, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3418636.99365, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417611.24743, 3417854.33292, 3418753.533525, 3418265.46984, 3418770.10536, 3419250.55144, 3418943.6674349997, 3419057.457715, 3419234.664765, 3418987.826405, 3418717.898335, 3414374.640155, 3418242.10659, 3418335.48461, 3408772.0309, 3408416.22914, 3409133.776065, 3409465.918195, 3409402.47713, 3409404.38822, 3407887.282875, 3415957.4344, 3411641.501945, 3408547.67568, 3412089.223465, 3407772.74985, 3407427.18329, 3410109.835535, 3407580.5643599997, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3411731.63789, 3408983.211045, 3410393.1329, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407626.841255, 3417098.868935, 3408444.066435, 3408444.066435 ], "y": [ 5364414.94864, 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881, 5366929.533960001, 5365410.875170001, 5364211.5701750005, 5367207.696925, 5367341.3704200005, 5367829.039055, 5370522.3722, 5365662.20595, 5370532.17406, 5369426.721965, 5368857.966840001, 5368254.9978950005, 5362804.52194, 5369365.755840001, 5363686.7694500005, 5367855.33526, 5370149.9372000005, 5368879.194555, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5369692.02639, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370300.571885, 5370502.51661, 5361518.461155, 5370438.243685001, 5370489.677610001, 5370473.070780001, 5369365.755840001, 5369017.6826450005, 5368924.077845001, 5369014.851915, 5367394.89804, 5369289.93087, 5366489.345235, 5366769.909935, 5370905.836490001, 5369163.8307300005, 5369328.91016, 5368951.073805001, 5369572.441095, 5369041.862825001, 5369150.284555, 5366754.669095, 5370490.62743, 5359666.521380001, 5369283.55578, 5365951.351740001, 5365730.16249, 5365699.86742, 5365543.414095, 5366340.79855, 5365915.13698, 5366790.77472, 5366446.5986, 5366267.2019650005, 5365307.31304, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363006.85271, 5363143.39408, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001, 5367396.459115, 5357597.62531, 5361965.8234250005, 5365482.46575, 5362222.8465100005, 5365620.6961550005, 5363573.696045, 5365385.339415001, 5362851.352340001, 5361942.450270001, 5361808.458255, 5365889.114250001, 5371396.63716, 5361762.5657, 5370854.007660001, 5371121.336080001, 5361239.5318, 5370076.235715, 5361394.883040001, 5370568.944580001, 5357026.600335, 5355254.867855, 5355408.41098, 5355362.004125, 5362571.397205001, 5362910.782760001, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363247.510285, 5364094.958985001, 5361795.338565, 5363197.1299600005, 5363113.38267, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5357185.01204, 5357563.082055001, 5357944.49746, 5370211.403535, 5368870.109585, 5370544.256, 5364736.559470001, 5364792.013845, 5366668.92399, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5364405.856085001, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364442.002145001, 5364474.723965, 5363104.6379350005, 5363455.22988, 5362524.28598, 5362788.69955, 5362367.0363300005, 5362622.245215001, 5362484.08542, 5366019.591035, 5362777.79097, 5362902.157225001, 5363665.279770001, 5362827.18118, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364631.06477, 5364375.353395, 5364135.048685, 5361864.4739850005, 5364162.393145001, 5362715.89218, 5362893.18738, 5367029.39345, 5361211.91952, 5361721.47309, 5359383.313385, 5361398.412885, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5367155.67967, 5364768.844140001, 5363605.245315, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5355652.590995001, 5364820.328685001, 5367639.480235, 5367639.480235 ] }, { "hoverinfo": "skip", "marker": { "color": "green", "size": [ 30, 0 ], "sizemode": "area", "symbol": "circle-open" }, "mode": "markers+text", "showlegend": false, "text": [ "scale: 0.15 MW", "" ], "textfont": { "color": "DarkSlateGrey", "family": "Helvetica", "size": 14 }, "textposition": "top center", "type": "scatter", "x": [ 3424337.2037279997, 3427215.2800959996 ], "y": [ 5371396.63716, 5371396.63716 ] }, { "hoverinfo": "text", "marker": { "color": "green", "size": [ 24.43, 18.3225, 15.26875, 15.26875, 18.3225, 15.26875, 27.48375, 80, 160, 40, 171.2, 23.565339584, 31.025862059999998, 23.565339584, 46.538793090000006, 9.828125, 32, 27.923275854, 38.293676824, 46.538793090000006, 58.91334896, 18.615517236000002, 61.859016408, 27.923275854, 18.615517236000002, 23.565339584, 38.293676824, 23.565339584, 27.48375, 58.91334896, 38.293676824, 58.91334896, 31.025862059999998, 23.565339584, 46.538793090000006, 23.565339584, 23.565339584, 31.025862059999998, 38.293676824, 46.538793090000006, 46.538793090000006, 23.565339584, 63, 100, 60, 21.621875, 21.621875, 13.759374999999999, 21.621875, 38.293676824, 23.5875, 23.565339584, 58.91334896, 9.828125, 38.293676824, 9.828125, 61.859016408, 23.565339584, 27.923275854, 46.538793090000006, 46.538793090000006, 18.615517236000002, 19.025373136000002, 13.759374999999999, 15.26875, 13.759374999999999, 38.293676824, 13.759374999999999, 23.565339584, 24.43, 15.26875, 31.025862059999998, 15.26875, 46.538793090000006, 46.538793090000006, 27.48375, 18.615517236000002, 15.26875, 18.615517236000002, 13.58955224, 8.153731343999999, 13.58955224, 13.58955224, 13.759374999999999, 21.621875, 21.743283584, 21.743283584, 21.743283584, 23.565339584, 42.7525, 13.759374999999999, 23.5875, 8.153731343999999, 13.58955224, 13.58955224, 8.153731343999999, 8.153731343999999, 13.58955224, 61.859016408, 61.859016408, 61.859016408, 7.8625, 7.8625, 61.859016408, 13.58955224, 13.58955224, 13.58955224, 8.153731343999999, 21.621875, 23.5875, 23.5875, 13.759374999999999, 21.621875, 13.759374999999999, 20.043010759999998, 12.025806456, 30.064516140000002, 30.064516140000002, 20.043010759999998, 12.025806456, 12.025806456, 32.068817216, 30, 18.038709684, 24.43, 15.26875, 24.43, 27.48375, 39.69875, 8.153731343999999, 59, 71, 61.859016408, 21.743283584, 19.025373136000002, 8.153731343999999, 13.58955224, 8.153731343999999, 10.871641792, 13.58955224, 8.153731343999999, 38.293676824, 39.69875, 60, 10.871641792, 8.153731343999999, 8.153731343999999, 8.153731343999999, 13.58955224, 13.58955224, 13.58955224, 13.58955224, 8.153731343999999 ], "sizemode": "area", "symbol": "circle-open" }, "meta": { "column_to_plot": "p_mw", "marker_scaling": 200, "show_scale_legend": true }, "mode": "markers", "name": "sgen", "text": [ "sgen 0.12 MW", "sgen 0.09 MW", "sgen 0.08 MW", "sgen 0.08 MW", "sgen 0.09 MW", "sgen 0.08 MW", "sgen 0.14 MW", "sgen 0.40 MW", "sgen 0.80 MW", "sgen 0.20 MW", "sgen 0.86 MW", "sgen 0.12 MW", "sgen 0.16 MW", "sgen 0.12 MW", "sgen 0.23 MW", "sgen 0.05 MW", "sgen 0.16 MW", "sgen 0.14 MW", "sgen 0.19 MW", "sgen 0.23 MW", "sgen 0.29 MW", "sgen 0.09 MW", "sgen 0.31 MW", "sgen 0.14 MW", "sgen 0.09 MW", "sgen 0.12 MW", "sgen 0.19 MW", "sgen 0.12 MW", "sgen 0.14 MW", "sgen 0.29 MW", "sgen 0.19 MW", "sgen 0.29 MW", "sgen 0.16 MW", "sgen 0.12 MW", "sgen 0.23 MW", "sgen 0.12 MW", "sgen 0.12 MW", "sgen 0.16 MW", "sgen 0.19 MW", "sgen 0.23 MW", "sgen 0.23 MW", "sgen 0.12 MW", "sgen 0.32 MW", "sgen 0.50 MW", "sgen 0.30 MW", "sgen 0.11 MW", "sgen 0.11 MW", "sgen 0.07 MW", "sgen 0.11 MW", "sgen 0.19 MW", "sgen 0.12 MW", "sgen 0.12 MW", "sgen 0.29 MW", "sgen 0.05 MW", "sgen 0.19 MW", "sgen 0.05 MW", "sgen 0.31 MW", "sgen 0.12 MW", "sgen 0.14 MW", "sgen 0.23 MW", "sgen 0.23 MW", "sgen 0.09 MW", "sgen 0.10 MW", "sgen 0.07 MW", "sgen 0.08 MW", "sgen 0.07 MW", "sgen 0.19 MW", "sgen 0.07 MW", "sgen 0.12 MW", "sgen 0.12 MW", "sgen 0.08 MW", "sgen 0.16 MW", "sgen 0.08 MW", "sgen 0.23 MW", "sgen 0.23 MW", "sgen 0.14 MW", "sgen 0.09 MW", "sgen 0.08 MW", "sgen 0.09 MW", "sgen 0.07 MW", "sgen 0.04 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.11 MW", "sgen 0.11 MW", "sgen 0.11 MW", "sgen 0.11 MW", "sgen 0.12 MW", "sgen 0.21 MW", "sgen 0.07 MW", "sgen 0.12 MW", "sgen 0.04 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.04 MW", "sgen 0.04 MW", "sgen 0.07 MW", "sgen 0.31 MW", "sgen 0.31 MW", "sgen 0.31 MW", "sgen 0.04 MW", "sgen 0.04 MW", "sgen 0.31 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.04 MW", "sgen 0.11 MW", "sgen 0.12 MW", "sgen 0.12 MW", "sgen 0.07 MW", "sgen 0.11 MW", "sgen 0.07 MW", "sgen 0.10 MW", "sgen 0.06 MW", "sgen 0.15 MW", "sgen 0.15 MW", "sgen 0.10 MW", "sgen 0.06 MW", "sgen 0.06 MW", "sgen 0.16 MW", "sgen 0.15 MW", "sgen 0.09 MW", "sgen 0.12 MW", "sgen 0.08 MW", "sgen 0.12 MW", "sgen 0.14 MW", "sgen 0.20 MW", "sgen 0.04 MW", "sgen 0.29 MW", "sgen 0.35 MW", "sgen 0.31 MW", "sgen 0.11 MW", "sgen 0.10 MW", "sgen 0.04 MW", "sgen 0.07 MW", "sgen 0.04 MW", "sgen 0.05 MW", "sgen 0.07 MW", "sgen 0.04 MW", "sgen 0.19 MW", "sgen 0.20 MW", "sgen 0.30 MW", "sgen 0.05 MW", "sgen 0.04 MW", "sgen 0.04 MW", "sgen 0.04 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.07 MW", "sgen 0.04 MW" ], "type": "scatter", "x": [ 3408665.349175, 3409669.096215, 3409701.5281849997, 3409395.5326549998, 3408730.1735, 3408849.00141, 3408975.913755, 3410296.66458, 3412523.282265, 3413353.181945, 3414619.659505, 3413854.89557, 3417068.32117, 3412335.82098, 3416989.87706, 3420936.666405, 3417044.332345, 3416936.8934, 3411249.917565, 3417839.113615, 3411303.625725, 3416691.72847, 3412736.0123, 3416889.015395, 3417062.86489, 3410365.877105, 3411701.231155, 3412171.07318, 3412037.331555, 3411094.5293799997, 3411891.829765, 3412494.665505, 3418411.783625, 3411785.34044, 3417849.758145, 3411622.542935, 3413992.76188, 3417091.49669, 3412984.086275, 3417643.32197, 3417614.157325, 3413126.367695, 3417773.4362149998, 3410821.62822, 3407983.78155, 3419357.7620449997, 3419277.01657, 3419979.565655, 3419616.951355, 3412068.438205, 3419697.711465, 3412575.0779, 3412542.38331, 3419678.205055, 3412183.33188, 3418359.45578, 3412343.37775, 3414019.75533, 3417498.904005, 3417262.3221, 3417296.995665, 3417568.126245, 3407984.897035, 3418745.212615, 3412143.304465, 3419021.5555249997, 3414311.22654, 3419221.18234, 3413481.2855599998, 3412220.238145, 3412851.145155, 3417019.61853, 3412082.45804, 3417250.970735, 3416952.52644, 3412339.049355, 3417439.513935, 3412453.990615, 3417043.53881, 3408131.461275, 3407976.02058, 3407642.913365, 3408223.972925, 3421413.450085, 3421459.12736, 3408045.89905, 3407935.6436, 3409798.60001, 3413898.4617749997, 3412438.404275, 3421058.997755, 3421313.47574, 3409369.512385, 3408951.664265, 3407627.22878, 3407706.186985, 3407068.74552, 3407771.006305, 3412509.49375, 3412756.53258, 3411352.7399999998, 3418844.726965, 3417796.371315, 3412259.1209299997, 3408278.9995999997, 3407878.25476, 3407845.09925, 3407845.30055, 3418636.99365, 3418229.471735, 3418380.179585, 3417786.66388, 3418743.61835, 3417854.33292, 3418753.533525, 3418265.46984, 3418770.10536, 3419250.55144, 3418943.6674349997, 3419057.457715, 3419234.664765, 3418717.898335, 3414374.640155, 3418335.48461, 3408772.0309, 3408416.22914, 3409133.776065, 3409402.47713, 3409404.38822, 3407887.282875, 3411641.501945, 3408547.67568, 3412089.223465, 3407772.74985, 3407427.18329, 3410109.835535, 3407580.5643599997, 3409328.087865, 3409493.301295, 3409357.96508, 3409426.878715, 3411731.63789, 3408983.211045, 3410393.1329, 3408402.1696, 3408567.84631, 3408347.63624, 3407938.434695, 3407327.457605, 3407070.63602, 3408075.000255, 3407490.786255, 3407626.841255 ], "y": [ 5364414.94864, 5364282.613545001, 5364523.170815, 5363867.96846, 5364581.697500001, 5365837.96881, 5364211.5701750005, 5367207.696925, 5367829.039055, 5370522.3722, 5365662.20595, 5370532.17406, 5369426.721965, 5368857.966840001, 5368254.9978950005, 5362804.52194, 5363686.7694500005, 5367855.33526, 5370149.9372000005, 5368879.194555, 5370800.261425001, 5369521.514525, 5370459.866305, 5369897.529565, 5370149.781450001, 5369898.0554, 5370156.0428100005, 5370502.51661, 5361518.461155, 5370489.677610001, 5370473.070780001, 5368924.077845001, 5369014.851915, 5367394.89804, 5369289.93087, 5366769.909935, 5370905.836490001, 5369163.8307300005, 5368951.073805001, 5369572.441095, 5369041.862825001, 5369150.284555, 5366754.669095, 5370490.62743, 5359666.521380001, 5365951.351740001, 5365730.16249, 5365699.86742, 5365543.414095, 5366340.79855, 5365915.13698, 5366790.77472, 5366267.2019650005, 5365307.31304, 5367288.615625001, 5364276.74375, 5367039.191295001, 5363006.85271, 5369889.409085, 5369983.370025001, 5369670.800840001, 5370203.822020001, 5357597.62531, 5365482.46575, 5362222.8465100005, 5365620.6961550005, 5363573.696045, 5365385.339415001, 5362851.352340001, 5361942.450270001, 5361808.458255, 5371396.63716, 5361762.5657, 5370854.007660001, 5371121.336080001, 5361239.5318, 5370076.235715, 5361394.883040001, 5370568.944580001, 5357026.600335, 5355254.867855, 5355408.41098, 5355362.004125, 5362571.397205001, 5362910.782760001, 5357465.167160001, 5361604.281020001, 5359531.258485001, 5363247.510285, 5361795.338565, 5363197.1299600005, 5363113.38267, 5358366.672750001, 5358719.695230001, 5357634.122470001, 5357185.01204, 5357563.082055001, 5357944.49746, 5370211.403535, 5368870.109585, 5370544.256, 5364736.559470001, 5364792.013845, 5366668.92399, 5357672.579415, 5357165.621435001, 5357375.47743, 5356981.466445001, 5364405.856085001, 5364496.242115, 5364636.724845001, 5364197.382300001, 5364579.237955, 5364474.723965, 5363104.6379350005, 5363455.22988, 5362524.28598, 5362788.69955, 5362367.0363300005, 5362622.245215001, 5362484.08542, 5362777.79097, 5362902.157225001, 5362827.18118, 5364750.662205, 5364704.938425001, 5364636.208415001, 5364375.353395, 5364135.048685, 5361864.4739850005, 5362715.89218, 5362893.18738, 5367029.39345, 5361211.91952, 5361721.47309, 5359383.313385, 5361398.412885, 5358673.150195001, 5359029.028630001, 5359237.7134650005, 5358887.852505, 5367155.67967, 5364768.844140001, 5363605.245315, 5361672.63748, 5361784.734655, 5361962.0757, 5361129.737385, 5361657.66951, 5361833.994235001, 5361897.82828, 5361940.785785001, 5355652.590995001 ] } ], "layout": { "autosize": true, "height": 560.8527099722987, "hovermode": "closest", "margin": { "b": 5, "l": 5, "r": 5, "t": 5 }, "showlegend": true, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "font": { "size": 16 } }, "width": 700, "xaxis": { "showgrid": false, "showticklabels": false, "zeroline": false }, "yaxis": { "showgrid": false, "showticklabels": false, "zeroline": false } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "net.sgen.scaling = 1\n", "marker_trace = pplotly.create_weighted_marker_trace(net, \"sgen\", column_to_plot=\"p_mw\", marker_scaling=200, color=\"green\", patch_type=\"circle-open\")\n", "_ = pplotly.simple_plotly(net, bus_size=0.25, additional_traces=[marker_trace])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "More tutorials about interactive plots using plotly:\n", "* [built-in interactive plots](https://github.com/e2nIEE/pandapower/blob/develop/tutorials/plotly_built-in.ipynb)\n", "* [interactive plots on maps](https://github.com/e2nIEE/pandapower/blob/develop/tutorials/plotly_maps.ipynb)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.9" } }, "nbformat": 4, "nbformat_minor": 2 }