{ "cells": [ { "cell_type": "code", "execution_count": 154, "metadata": {}, "outputs": [], "source": [ "import plotly.express as px\n", "import plotly.graph_objects as go\n", "import pandas as pd\n", "\n", "pd.options.plotting.backend = \"plotly\"\n", "from urllib.request import urlopen\n", "import json\n", "import numpy as np\n", "import geopandas" ] }, { "cell_type": "code", "execution_count": 155, "metadata": {}, "outputs": [ { "data": { "application/mercury+json": { "allow_download": true, "code_uid": "App.0.40.25.6-rand71ee0885", "continuous_update": true, "description": "Zeige den Weg der Störe.", "full_screen": true, "model_id": "mercury-app", "notify": "{}", "output": "app", "schedule": "", "show_code": false, "show_prompt": false, "show_sidebar": true, "static_notebook": false, "stop_on_error": false, "title": "Störe", "widget": "App" }, "text/html": [ "

Mercury Application

This output won't appear in the web app." ], "text/plain": [ "mercury.App" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import mercury as mr\n", "\n", "# checkbox to control code visibility\n", "#show_code = mr.Checkbox(label=\"Show code\", value=False)\n", "# App object to set `show_code` attribute\n", "app = mr.App(title=\"Störe\", description=\"Zeige den Weg der Störe.\", show_code=False)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "def adjust_coordinates(row):\n", " row.lat += np.random.normal(0, 1e-4)\n", " row.lon += np.random.normal(0, 1e-4)\n", " return row\n", "\n", "def load_data():\n", " df_receiver = pd.read_csv(\"../receiver.csv\", encoding=\"latin-1\", delimiter=\";\")\n", "\n", " df_fishes = pd.read_excel(\"../20230310_Receiver_Polen.xlsx\")\n", " df_stoer_ids = pd.read_excel(\"../20230310_Receiver_Polen.xlsx\",\n", " sheet_name = \"eingesetzte Akustik-Tags\")\n", "\n", " df_fishes_vemco = pd.read_excel(\"../Daten Vemco Receiver.xlsx\", decimal=',').copy()\n", " #df_stoer_ids_vemco = pd.read_excel(\"Daten Vemco Receiver.xlsx\",)\n", " #sheet_name = \"eingesetzte Akustik-Tags\")\n", " df_fishes_vemco = df_fishes_vemco.drop(columns=[\"Longitude\", \"Latitude\"])\n", "\n", " df_receiver_vemco = pd.read_csv(\"../Sturgeons.txt\",\n", " delimiter=\",\").copy()\n", "\n", " df_fishes_vemco_m = pd.merge(left=df_fishes_vemco, right=df_receiver_vemco, how=\"left\", on=\"Receiver\", suffixes=(\"\", \"_y\"))\n", "\n", " receiver = df_receiver.copy()\n", " receiver_vemco = df_receiver_vemco.copy()\n", "\n", " receiver_formatted = receiver_vemco.rename(columns={\n", " \"Receiver\" : \"receiver_sn\",\n", " \"Latitude\": \"lat\",\n", " \"Longitude\": \"lon\",\n", " \"Station.name\" : \"station_name\"})[[\"receiver_sn\",\n", " \"lat\", \"lon\",\n", " \"station_name\"]]\n", " all_receivers = pd.concat([receiver, receiver_formatted])\n", "\n", " fishes = df_fishes.copy()\n", " fishes = fishes.loc[fishes[\" ID\"].isin(df_stoer_ids[\"ID\"])]\n", " fishes = fishes.rename(columns={\" Receiver\":\"receiver_sn\"})\n", " fishes = pd.merge(fishes, all_receivers[[\"lon\", \"lat\", \"receiver_sn\"]],\n", " on=\"receiver_sn\", how=\"left\")\n", "\n", "\n", " df_fishes_vemco_form = df_fishes_vemco_m.drop(columns=\"ID\")\n", " df_fishes_vemco_form = df_fishes_vemco_form.rename(columns={\"Date.and.Time.nocor\": \"Date and Time (UTC)\",\n", " \"Longitude\" : \"lon\",\n", " \"Latitude\": \"lat\",\n", " \"Transmitter\": \" ID\",\n", " \"Receiver\" : \"receiver_sn\"\n", " })\n", "\n", " all_fishes = pd.concat([fishes, df_fishes_vemco_form])\n", "\n", "\n", " all_fishes = all_fishes.drop_duplicates([\" ID\", \"receiver_sn\"]).reset_index().drop(columns=\"index\")\n", " all_fishes.index = list(all_fishes.index)\n", "\n", "\n", "\n", " all_fishes = all_fishes.apply(adjust_coordinates, axis=1)\n", "\n", " gdf_fishes = geopandas.GeoDataFrame(\n", " all_fishes, geometry=geopandas.points_from_xy(\n", " all_fishes.lon, all_fishes.lat), crs = 4326)\n", "\n", " receiver_vemco = df_receiver_vemco.copy()\n", "\n", " df_wm = gdf_fishes.to_crs(epsg=3857)\n", "\n", " gdf_receiver = geopandas.GeoDataFrame(\n", " all_receivers,\n", " geometry=geopandas.points_from_xy(all_receivers.lon, all_receivers.lat),\n", " crs = 4326)\n", "\n", " gdf_receiver['coords'] = gdf_receiver.to_crs(epsg=3857)['geometry'].apply(\n", " lambda x: x.representative_point().coords[:])\n", "\n", " gdf_receiver['coords'] = [coords[0] for coords in gdf_receiver['coords']]\n", "\n", " return gdf_receiver, df_wm" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "gdf_receiver, df_wm = load_data()" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "unique_ids = [str(element) for element in df_wm[\" ID\"].unique().tolist()]" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "application/mercury+json": { "choices": [ "6702", "6710", "6712", "6685", "6664", "6672", "6692", "6691", "6695", "6705", "6654", "6698", "6667", "6655", "6680", "6699", "6706", "6658", "6666", "6674", "6689", "6683", "6682", "6661", "6676", "6659", "6688", "6673", "6678", "6707", "6693", "6694" ], "code_uid": "MultiSelect.0.40.16.2-rand354143a5", "disabled": false, "hidden": false, "label": "Wähle die Störe aus anhand Ihrer ID", "model_id": "733a1791dbe84170b1be7ea90cfb8927", "url_key": "", "value": [], "widget": "MultiSelect" }, "application/vnd.jupyter.widget-view+json": { "model_id": "733a1791dbe84170b1be7ea90cfb8927", "version_major": 2, "version_minor": 0 }, "text/plain": [ "mercury.MultiSelect" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# add select widget\n", "selected = mr.MultiSelect(label=\"Wähle die Störe aus anhand Ihrer ID\",\n", " choices=unique_ids,\n", " value=unique_ids\n", " )" ] }, { "cell_type": "code", "execution_count": 77, "metadata": {}, "outputs": [], "source": [ "a = pd.to_datetime(df_wm.iloc[:45][\"Date and Time (UTC)\"])\n", "b = pd.to_datetime(df_wm.iloc[:45][\"Date and Time (UTC)\"])" ] }, { "cell_type": "code", "execution_count": 78, "metadata": {}, "outputs": [], "source": [ "a = pd.to_datetime(df_wm.iloc[:45][\"Date and Time (UTC)\"]).dt.strftime(\"%Y-%m-%d %H:%M:%S\")\n", "b = pd.to_datetime(df_wm.iloc[45:][\"Date and Time (UTC)\"]).dt.strftime(\"%Y-%m-%d %H:%M:%S\")" ] }, { "cell_type": "code", "execution_count": 79, "metadata": {}, "outputs": [], "source": [ "df_wm[\"Date\"] = pd.to_datetime(pd.concat([a,b]))" ] }, { "cell_type": "code", "execution_count": 80, "metadata": {}, "outputs": [], "source": [ "# df_one_fish = df_wm.loc[df_wm[\" ID\"] == 6689]\n", "if len(selected.value) < 1:\n", " selected_value = df_wm[\" ID\"].unique()[0]\n", " df_one_fish = df_wm.loc[df_wm[\" ID\"] == selected_value ].sort_values(\"Date\")\n", "else:\n", " df_one_fish = df_wm.loc[df_wm[\" ID\"].astype(str).isin(selected.value)].sort_values(\"Date\")" ] }, { "cell_type": "code", "execution_count": 147, "metadata": {}, "outputs": [], "source": [ "dfs = []\n", "for ID in df_one_fish[\" ID\"].values.tolist():\n", " _df = df_one_fish.loc[df_one_fish[\" ID\"] == ID].sort_values(by=\"Date\")\n", " _df[\"Date\"] = _df[\"Date\"].dt.round(\"1d\")\n", " idx = pd.date_range( _df.iloc[0][\"Date\"].strftime(\"%m-%d-%Y\"), df_one_fish.iloc[-1][\"Date\"].strftime(\"%m-%d-%Y\"), freq=\"d\")\n", " _df = pd.DataFrame(idx, columns=[\"Date\"]).set_index(\"Date\").merge(_df, how=\"outer\", on=\"Date\")\n", "\n", " _df = _df.set_index(\"Date\")\n", "\n", " _df[\"lat\"] = _df[[\"lat\"]].interpolate(method=\"time\")\n", " _df[\"lon\"] = _df[[\"lon\"]].interpolate(method=\"time\")\n", " _df[\" ID\"] = ID\n", " dfs.append(_df)\n", "\n", "dfs = pd.concat(dfs)" ] }, { "cell_type": "code", "execution_count": 148, "metadata": {}, "outputs": [], "source": [ "dfs = dfs.rename(columns={\" ID\": \"ID\"})\n", "dfs = dfs.sort_index()\n", "\n", "dfs[\"lat\"] = dfs[[\"lat\"]].interpolate(method=\"time\")\n", "dfs[\"lon\"] = dfs[[\"lon\"]].interpolate(method=\"time\")\n", "dfs = dfs.loc[dfs[\"lon\"].notna()]\n", "dfs = dfs.reset_index().rename(columns={\"index\": \"Date\"})\n" ] }, { "cell_type": "code", "execution_count": 151, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "%{hovertext}

Date=2022-11-28 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6702, 6682, 6688, 6661, 6694, 6689, 6689, 6689, 6659, 6682, 6682, 6654, 6654, 6654, 6676, 6654, 6707, 6694, 6706, 6693, 6689, 6658, 6654, 6661, 6654, 6683, 6654, 6654, 6676, 6673, 6673, 6678, 6674, 6689, 6654, 6694, 6689, 6702, 6658, 6694, 6666, 6689, 6689, 6706, 6689 ], "ids": [ 6661, 6702, 6682, 6688, 6661, 6694, 6689, 6689, 6689, 6659, 6682, 6682, 6654, 6654, 6654, 6676, 6654, 6707, 6694, 6706, 6693, 6689, 6658, 6654, 6661, 6654, 6683, 6654, 6654, 6676, 6673, 6673, 6678, 6674, 6689, 6654, 6694, 6689, 6702, 6658, 6694, 6666, 6689, 6689, 6706, 6689 ], "lat": [ 54.020849005752474, 53.997697694765996, 53.52971923996491, 53.80909221822267, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.80896520272324, 53.52971923996491, 53.52971923996491, 53.808965097380884, 53.808965097380884, 53.808965097380884, 54.020847759299066, 53.808965097380884, 53.80902089070886, 53.845303866200666, 53.80915072481978, 54.22725596601593, 53.864471803645856, 53.5296490438886, 53.808965097380884, 54.020849005752474, 53.808965097380884, 53.80901818337243, 53.808965097380884, 53.808965097380884, 54.020847759299066, 53.80890241146502, 53.80890241146502, 53.83465312047732, 53.80903972625709, 53.864471803645856, 53.808965097380884, 53.845303866200666, 53.864471803645856, 53.997697694765996, 53.5296490438886, 53.845303866200666, 53.809076375885944, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.714986882444464, 14.630780570299253, 14.339735499061648, 14.728603318193455, 13.824118967817144, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.339689073546207, 14.630780570299253, 14.630780570299253, 14.339594025663027, 14.339594025663027, 14.339594025663027, 14.728650838545583, 14.339594025663027, 14.339754867144269, 13.824118967817144, 14.339825653017522, 13.7785198325034, 13.825501744421523, 14.630604108154332, 14.339594025663027, 14.728603318193455, 14.339594025663027, 14.33973774800166, 14.339594025663027, 14.339594025663027, 14.728650838545583, 14.339950759070799, 14.339950759070799, 14.618480742664287, 14.339912750386873, 13.825501744421523, 14.339594025663027, 13.824118967817144, 13.825501744421523, 14.714986882444464, 14.630604108154332, 13.824118967817144, 14.339652967059697, 13.825501744421523, 13.825501744421523, 14.339825653017522, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "frames": [ { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-11-28 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6702, 6682, 6688, 6661, 6694, 6689, 6689, 6689, 6659, 6682, 6682, 6654, 6654, 6654, 6676, 6654, 6707, 6694, 6706, 6693, 6689, 6658, 6654, 6661, 6654, 6683, 6654, 6654, 6676, 6673, 6673, 6678, 6674, 6689, 6654, 6694, 6689, 6702, 6658, 6694, 6666, 6689, 6689, 6706, 6689 ], "ids": [ 6661, 6702, 6682, 6688, 6661, 6694, 6689, 6689, 6689, 6659, 6682, 6682, 6654, 6654, 6654, 6676, 6654, 6707, 6694, 6706, 6693, 6689, 6658, 6654, 6661, 6654, 6683, 6654, 6654, 6676, 6673, 6673, 6678, 6674, 6689, 6654, 6694, 6689, 6702, 6658, 6694, 6666, 6689, 6689, 6706, 6689 ], "lat": [ 54.020849005752474, 53.997697694765996, 53.52971923996491, 53.80909221822267, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.80896520272324, 53.52971923996491, 53.52971923996491, 53.808965097380884, 53.808965097380884, 53.808965097380884, 54.020847759299066, 53.808965097380884, 53.80902089070886, 53.845303866200666, 53.80915072481978, 54.22725596601593, 53.864471803645856, 53.5296490438886, 53.808965097380884, 54.020849005752474, 53.808965097380884, 53.80901818337243, 53.808965097380884, 53.808965097380884, 54.020847759299066, 53.80890241146502, 53.80890241146502, 53.83465312047732, 53.80903972625709, 53.864471803645856, 53.808965097380884, 53.845303866200666, 53.864471803645856, 53.997697694765996, 53.5296490438886, 53.845303866200666, 53.809076375885944, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.714986882444464, 14.630780570299253, 14.339735499061648, 14.728603318193455, 13.824118967817144, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.339689073546207, 14.630780570299253, 14.630780570299253, 14.339594025663027, 14.339594025663027, 14.339594025663027, 14.728650838545583, 14.339594025663027, 14.339754867144269, 13.824118967817144, 14.339825653017522, 13.7785198325034, 13.825501744421523, 14.630604108154332, 14.339594025663027, 14.728603318193455, 14.339594025663027, 14.33973774800166, 14.339594025663027, 14.339594025663027, 14.728650838545583, 14.339950759070799, 14.339950759070799, 14.618480742664287, 14.339912750386873, 13.825501744421523, 14.339594025663027, 13.824118967817144, 13.825501744421523, 14.714986882444464, 14.630604108154332, 13.824118967817144, 14.339652967059697, 13.825501744421523, 13.825501744421523, 14.339825653017522, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-11-28 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-11-29 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6654, 6666, 6658, 6689, 6682, 6678, 6706, 6654, 6654, 6694, 6654, 6694, 6673, 6676, 6658, 6706, 6654, 6694, 6673, 6676, 6689, 6661, 6702, 6683, 6689, 6659, 6693, 6689, 6689, 6689, 6702, 6654, 6689, 6682, 6689, 6689, 6707, 6682, 6674, 6694, 6654, 6654, 6661, 6661, 6688 ], "ids": [ 6654, 6654, 6666, 6658, 6689, 6682, 6678, 6706, 6654, 6654, 6694, 6654, 6694, 6673, 6676, 6658, 6706, 6654, 6694, 6673, 6676, 6689, 6661, 6702, 6683, 6689, 6659, 6693, 6689, 6689, 6689, 6702, 6654, 6689, 6682, 6689, 6689, 6707, 6682, 6674, 6694, 6654, 6654, 6661, 6661, 6688 ], "lat": [ 53.8096568424983, 53.8096568424983, 53.809076375885944, 53.5296490438886, 53.864471803645856, 53.52971923996491, 53.83465312047732, 53.80915072481978, 53.8096568424983, 53.8096568424983, 53.845303866200666, 53.8096568424983, 53.845303866200666, 53.80890241146502, 54.020847759299066, 53.5296490438886, 53.80915072481978, 53.8096568424983, 53.845303866200666, 53.80890241146502, 54.020847759299066, 53.864471803645856, 54.020849005752474, 53.99605095630726, 53.80901818337243, 53.864471803645856, 53.80896520272324, 54.22725596601593, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.99605095630726, 53.8096568424983, 53.864471803645856, 53.52971923996491, 53.864471803645856, 53.864471803645856, 53.80902089070886, 53.52971923996491, 53.80903972625709, 53.845303866200666, 53.8096568424983, 53.8096568424983, 54.020849005752474, 54.020849005752474, 53.80909221822267 ], "legendgroup": "", "lon": [ 14.347130377605795, 14.347130377605795, 14.339652967059697, 14.630604108154332, 13.825501744421523, 14.630780570299253, 14.618480742664287, 14.339825653017522, 14.347130377605795, 14.347130377605795, 13.824118967817144, 14.347130377605795, 13.824118967817144, 14.339950759070799, 14.728650838545583, 14.630604108154332, 14.339825653017522, 14.347130377605795, 13.824118967817144, 14.339950759070799, 14.728650838545583, 13.825501744421523, 14.728603318193455, 14.714010215315808, 14.33973774800166, 13.825501744421523, 14.339689073546207, 13.7785198325034, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.714010215315808, 14.347130377605795, 13.825501744421523, 14.630780570299253, 13.825501744421523, 13.825501744421523, 14.339754867144269, 14.630780570299253, 14.339912750386873, 13.824118967817144, 14.347130377605795, 14.347130377605795, 14.728603318193455, 14.728603318193455, 14.339735499061648 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-11-29 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-11-30 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6654, 6693, 6694, 6654, 6689, 6689, 6673, 6682, 6654, 6676, 6674, 6689, 6658, 6654, 6689, 6661, 6683, 6689, 6682, 6689, 6682, 6678, 6702, 6689, 6694, 6689, 6689, 6654, 6654, 6673, 6694, 6661, 6706, 6706, 6676, 6658, 6661, 6694, 6654, 6654, 6659, 6707, 6702, 6666, 6688 ], "ids": [ 6654, 6654, 6693, 6694, 6654, 6689, 6689, 6673, 6682, 6654, 6676, 6674, 6689, 6658, 6654, 6689, 6661, 6683, 6689, 6682, 6689, 6682, 6678, 6702, 6689, 6694, 6689, 6689, 6654, 6654, 6673, 6694, 6661, 6706, 6706, 6676, 6658, 6661, 6694, 6654, 6654, 6659, 6707, 6702, 6666, 6688 ], "lat": [ 53.81034858761571, 53.81034858761571, 54.22725596601593, 53.845303866200666, 53.81034858761571, 53.864471803645856, 53.864471803645856, 53.80890241146502, 53.52971923996491, 53.81034858761571, 54.020847759299066, 53.80903972625709, 53.864471803645856, 53.5296490438886, 53.81034858761571, 53.864471803645856, 54.020849005752474, 53.80901818337243, 53.864471803645856, 53.52971923996491, 53.864471803645856, 53.52971923996491, 53.83465312047732, 53.99440421784851, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.81034858761571, 53.81034858761571, 53.80890241146502, 53.845303866200666, 54.020849005752474, 53.80915072481978, 53.80915072481978, 54.020847759299066, 53.5296490438886, 54.020849005752474, 53.845303866200666, 53.81034858761571, 53.81034858761571, 53.80896520272324, 53.80902089070886, 53.99440421784851, 53.809076375885944, 53.80909221822267 ], "legendgroup": "", "lon": [ 14.354666729548564, 14.354666729548564, 13.7785198325034, 13.824118967817144, 14.354666729548564, 13.825501744421523, 13.825501744421523, 14.339950759070799, 14.630780570299253, 14.354666729548564, 14.728650838545583, 14.339912750386873, 13.825501744421523, 14.630604108154332, 14.354666729548564, 13.825501744421523, 14.728603318193455, 14.33973774800166, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.630780570299253, 14.618480742664287, 14.713033548187152, 13.825501744421523, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.354666729548564, 14.354666729548564, 14.339950759070799, 13.824118967817144, 14.728603318193455, 14.339825653017522, 14.339825653017522, 14.728650838545583, 14.630604108154332, 14.728603318193455, 13.824118967817144, 14.354666729548564, 14.354666729548564, 14.339689073546207, 14.339754867144269, 14.713033548187152, 14.339652967059697, 14.339735499061648 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-11-30 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-01 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6666, 6654, 6658, 6706, 6689, 6678, 6689, 6689, 6689, 6673, 6689, 6689, 6689, 6707, 6694, 6658, 6706, 6694, 6694, 6673, 6674, 6654, 6661, 6654, 6676, 6682, 6654, 6689, 6682, 6659, 6654, 6654, 6688, 6676, 6661, 6654, 6693, 6682, 6654, 6661, 6694, 6702, 6654, 6683, 6689, 6702 ], "ids": [ 6666, 6654, 6658, 6706, 6689, 6678, 6689, 6689, 6689, 6673, 6689, 6689, 6689, 6707, 6694, 6658, 6706, 6694, 6694, 6673, 6674, 6654, 6661, 6654, 6676, 6682, 6654, 6689, 6682, 6659, 6654, 6654, 6688, 6676, 6661, 6654, 6693, 6682, 6654, 6661, 6694, 6702, 6654, 6683, 6689, 6702 ], "lat": [ 53.809076375885944, 53.81104033273312, 53.5296490438886, 53.80915072481978, 53.864471803645856, 53.83465312047732, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.80902089070886, 53.845303866200666, 53.5296490438886, 53.80915072481978, 53.845303866200666, 53.845303866200666, 53.80890241146502, 53.80903972625709, 53.81104033273312, 54.020849005752474, 53.81104033273312, 54.020847759299066, 53.52971923996491, 53.81104033273312, 53.864471803645856, 53.52971923996491, 53.80896520272324, 53.81104033273312, 53.81104033273312, 53.80909221822267, 54.020847759299066, 54.020849005752474, 53.81104033273312, 54.22725596601593, 53.52971923996491, 53.81104033273312, 54.020849005752474, 53.845303866200666, 53.99275747938977, 53.81104033273312, 53.80901818337243, 53.864471803645856, 53.99275747938977 ], "legendgroup": "", "lon": [ 14.339652967059697, 14.362203081491332, 14.630604108154332, 14.339825653017522, 13.825501744421523, 14.618480742664287, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.339950759070799, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.339754867144269, 13.824118967817144, 14.630604108154332, 14.339825653017522, 13.824118967817144, 13.824118967817144, 14.339950759070799, 14.339912750386873, 14.362203081491332, 14.728603318193455, 14.362203081491332, 14.728650838545583, 14.630780570299253, 14.362203081491332, 13.825501744421523, 14.630780570299253, 14.339689073546207, 14.362203081491332, 14.362203081491332, 14.339735499061648, 14.728650838545583, 14.728603318193455, 14.362203081491332, 13.7785198325034, 14.630780570299253, 14.362203081491332, 14.728603318193455, 13.824118967817144, 14.712056881058494, 14.362203081491332, 14.33973774800166, 13.825501744421523, 14.712056881058494 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-01 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-02 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6689, 6654, 6654, 6688, 6676, 6654, 6658, 6661, 6706, 6654, 6702, 6694, 6706, 6689, 6666, 6682, 6682, 6689, 6661, 6694, 6689, 6694, 6658, 6659, 6654, 6674, 6689, 6689, 6694, 6683, 6654, 6689, 6689, 6676, 6682, 6693, 6654, 6654, 6678, 6673, 6673, 6707, 6702, 6654, 6661 ], "ids": [ 6689, 6689, 6654, 6654, 6688, 6676, 6654, 6658, 6661, 6706, 6654, 6702, 6694, 6706, 6689, 6666, 6682, 6682, 6689, 6661, 6694, 6689, 6694, 6658, 6659, 6654, 6674, 6689, 6689, 6694, 6683, 6654, 6689, 6689, 6676, 6682, 6693, 6654, 6654, 6678, 6673, 6673, 6707, 6702, 6654, 6661 ], "lat": [ 53.864471803645856, 53.864471803645856, 53.811732077850536, 53.811732077850536, 53.80909221822267, 54.020847759299066, 53.811732077850536, 53.5296490438886, 54.020849005752474, 53.80915072481978, 53.811732077850536, 53.99111074093103, 53.845303866200666, 53.80915072481978, 53.864471803645856, 53.809076375885944, 53.52971923996491, 53.52971923996491, 53.864471803645856, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.845303866200666, 53.5296490438886, 53.80896520272324, 53.811732077850536, 53.80903972625709, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.80901818337243, 53.811732077850536, 53.864471803645856, 53.864471803645856, 54.020847759299066, 53.52971923996491, 54.22725596601593, 53.811732077850536, 53.811732077850536, 53.83465312047732, 53.80890241146502, 53.80890241146502, 53.80902089070886, 53.99111074093103, 53.811732077850536, 54.020849005752474 ], "legendgroup": "", "lon": [ 13.825501744421523, 13.825501744421523, 14.3697394334341, 14.3697394334341, 14.339735499061648, 14.728650838545583, 14.3697394334341, 14.630604108154332, 14.728603318193455, 14.339825653017522, 14.3697394334341, 14.711080213929838, 13.824118967817144, 14.339825653017522, 13.825501744421523, 14.339652967059697, 14.630780570299253, 14.630780570299253, 13.825501744421523, 14.728603318193455, 13.824118967817144, 13.825501744421523, 13.824118967817144, 14.630604108154332, 14.339689073546207, 14.3697394334341, 14.339912750386873, 13.825501744421523, 13.825501744421523, 13.824118967817144, 14.33973774800166, 14.3697394334341, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.630780570299253, 13.7785198325034, 14.3697394334341, 14.3697394334341, 14.618480742664287, 14.339950759070799, 14.339950759070799, 14.339754867144269, 14.711080213929838, 14.3697394334341, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-02 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-03 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6689, 6683, 6678, 6654, 6654, 6693, 6676, 6689, 6689, 6707, 6661, 6661, 6694, 6682, 6658, 6658, 6694, 6661, 6666, 6682, 6654, 6702, 6654, 6654, 6689, 6654, 6674, 6688, 6689, 6689, 6694, 6673, 6654, 6659, 6654, 6689, 6702, 6673, 6694, 6689, 6689, 6682, 6676, 6706, 6706 ], "ids": [ 6654, 6689, 6683, 6678, 6654, 6654, 6693, 6676, 6689, 6689, 6707, 6661, 6661, 6694, 6682, 6658, 6658, 6694, 6661, 6666, 6682, 6654, 6702, 6654, 6654, 6689, 6654, 6674, 6688, 6689, 6689, 6694, 6673, 6654, 6659, 6654, 6689, 6702, 6673, 6694, 6689, 6689, 6682, 6676, 6706, 6706 ], "lat": [ 53.81242382296794, 53.864471803645856, 53.80901818337243, 53.83465312047732, 53.81242382296794, 53.81242382296794, 54.22725596601593, 54.020847759299066, 53.864471803645856, 53.864471803645856, 53.80902089070886, 54.020849005752474, 54.020849005752474, 53.845303866200666, 53.52971923996491, 53.5296490438886, 53.5296490438886, 53.845303866200666, 54.020849005752474, 53.809076375885944, 53.52971923996491, 53.81242382296794, 53.98946400247229, 53.81242382296794, 53.81242382296794, 53.864471803645856, 53.81242382296794, 53.80903972625709, 53.80909221822267, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.80890241146502, 53.81242382296794, 53.80896520272324, 53.81242382296794, 53.864471803645856, 53.98946400247229, 53.80890241146502, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.52971923996491, 54.020847759299066, 53.80915072481978, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.37727578537687, 13.825501744421523, 14.33973774800166, 14.618480742664287, 14.37727578537687, 14.37727578537687, 13.7785198325034, 14.728650838545583, 13.825501744421523, 13.825501744421523, 14.339754867144269, 14.728603318193455, 14.728603318193455, 13.824118967817144, 14.630780570299253, 14.630604108154332, 14.630604108154332, 13.824118967817144, 14.728603318193455, 14.339652967059697, 14.630780570299253, 14.37727578537687, 14.710103546801182, 14.37727578537687, 14.37727578537687, 13.825501744421523, 14.37727578537687, 14.339912750386873, 14.339735499061648, 13.825501744421523, 13.825501744421523, 13.824118967817144, 14.339950759070799, 14.37727578537687, 14.339689073546207, 14.37727578537687, 13.825501744421523, 14.710103546801182, 14.339950759070799, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.728650838545583, 14.339825653017522, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-03 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-04 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6661, 6674, 6683, 6654, 6654, 6673, 6658, 6694, 6694, 6661, 6689, 6694, 6702, 6702, 6706, 6706, 6707, 6682, 6654, 6654, 6689, 6676, 6682, 6689, 6673, 6693, 6659, 6689, 6654, 6689, 6654, 6676, 6689, 6678, 6661, 6689, 6689, 6688, 6689, 6658, 6654, 6694, 6666, 6682, 6654 ], "ids": [ 6654, 6661, 6674, 6683, 6654, 6654, 6673, 6658, 6694, 6694, 6661, 6689, 6694, 6702, 6702, 6706, 6706, 6707, 6682, 6654, 6654, 6689, 6676, 6682, 6689, 6673, 6693, 6659, 6689, 6654, 6689, 6654, 6676, 6689, 6678, 6661, 6689, 6689, 6688, 6689, 6658, 6654, 6694, 6666, 6682, 6654 ], "lat": [ 53.81311556808536, 54.020849005752474, 53.80903972625709, 53.80901818337243, 53.81311556808536, 53.81311556808536, 53.80890241146502, 53.5296490438886, 53.845303866200666, 53.845303866200666, 54.020849005752474, 53.864471803645856, 53.845303866200666, 53.98781726401354, 53.98781726401354, 53.80915072481978, 53.80915072481978, 53.80902089070886, 53.52971923996491, 53.81311556808536, 53.81311556808536, 53.864471803645856, 54.020847759299066, 53.52971923996491, 53.864471803645856, 53.80890241146502, 54.22725596601593, 53.80896520272324, 53.864471803645856, 53.81311556808536, 53.864471803645856, 53.81311556808536, 54.020847759299066, 53.864471803645856, 53.83465312047732, 54.020849005752474, 53.864471803645856, 53.864471803645856, 53.80909221822267, 53.864471803645856, 53.5296490438886, 53.81311556808536, 53.845303866200666, 53.809076375885944, 53.52971923996491, 53.81311556808536 ], "legendgroup": "", "lon": [ 14.384812137319638, 14.728603318193455, 14.339912750386873, 14.33973774800166, 14.384812137319638, 14.384812137319638, 14.339950759070799, 14.630604108154332, 13.824118967817144, 13.824118967817144, 14.728603318193455, 13.825501744421523, 13.824118967817144, 14.709126879672526, 14.709126879672526, 14.339825653017522, 14.339825653017522, 14.339754867144269, 14.630780570299253, 14.384812137319638, 14.384812137319638, 13.825501744421523, 14.728650838545583, 14.630780570299253, 13.825501744421523, 14.339950759070799, 13.7785198325034, 14.339689073546207, 13.825501744421523, 14.384812137319638, 13.825501744421523, 14.384812137319638, 14.728650838545583, 13.825501744421523, 14.618480742664287, 14.728603318193455, 13.825501744421523, 13.825501744421523, 14.339735499061648, 13.825501744421523, 14.630604108154332, 14.384812137319638, 13.824118967817144, 14.339652967059697, 14.630780570299253, 14.384812137319638 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-04 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-05 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6689, 6673, 6689, 6654, 6654, 6689, 6689, 6654, 6707, 6689, 6689, 6678, 6654, 6658, 6689, 6658, 6706, 6666, 6706, 6673, 6694, 6682, 6694, 6683, 6654, 6654, 6661, 6676, 6702, 6689, 6689, 6661, 6661, 6659, 6654, 6702, 6694, 6682, 6693, 6674, 6688, 6682, 6654, 6676, 6694 ], "ids": [ 6654, 6689, 6673, 6689, 6654, 6654, 6689, 6689, 6654, 6707, 6689, 6689, 6678, 6654, 6658, 6689, 6658, 6706, 6666, 6706, 6673, 6694, 6682, 6694, 6683, 6654, 6654, 6661, 6676, 6702, 6689, 6689, 6661, 6661, 6659, 6654, 6702, 6694, 6682, 6693, 6674, 6688, 6682, 6654, 6676, 6694 ], "lat": [ 53.81380731320277, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.81380731320277, 53.81380731320277, 53.864471803645856, 53.864471803645856, 53.81380731320277, 53.80902089070886, 53.864471803645856, 53.864471803645856, 53.83465312047732, 53.81380731320277, 53.5296490438886, 53.864471803645856, 53.5296490438886, 53.80915072481978, 53.809076375885944, 53.80915072481978, 53.80890241146502, 53.845303866200666, 53.52971923996491, 53.845303866200666, 53.80901818337243, 53.81380731320277, 53.81380731320277, 54.020849005752474, 54.020847759299066, 53.9861705255548, 53.864471803645856, 53.864471803645856, 54.020849005752474, 54.020849005752474, 53.80896520272324, 53.81380731320277, 53.9861705255548, 53.845303866200666, 53.52971923996491, 54.22725596601593, 53.80903972625709, 53.80909221822267, 53.52971923996491, 53.81380731320277, 54.020847759299066, 53.845303866200666 ], "legendgroup": "", "lon": [ 14.392348489262407, 13.825501744421523, 14.339950759070799, 13.825501744421523, 14.392348489262407, 14.392348489262407, 13.825501744421523, 13.825501744421523, 14.392348489262407, 14.339754867144269, 13.825501744421523, 13.825501744421523, 14.618480742664287, 14.392348489262407, 14.630604108154332, 13.825501744421523, 14.630604108154332, 14.339825653017522, 14.339652967059697, 14.339825653017522, 14.339950759070799, 13.824118967817144, 14.630780570299253, 13.824118967817144, 14.33973774800166, 14.392348489262407, 14.392348489262407, 14.728603318193455, 14.728650838545583, 14.708150212543869, 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.728603318193455, 14.339689073546207, 14.392348489262407, 14.708150212543869, 13.824118967817144, 14.630780570299253, 13.7785198325034, 14.339912750386873, 14.339735499061648, 14.630780570299253, 14.392348489262407, 14.728650838545583, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-05 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-06 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6673, 6682, 6678, 6661, 6689, 6654, 6676, 6654, 6693, 6689, 6689, 6689, 6676, 6654, 6689, 6673, 6659, 6654, 6689, 6688, 6654, 6689, 6694, 6658, 6682, 6706, 6674, 6702, 6654, 6689, 6694, 6689, 6706, 6654, 6683, 6666, 6702, 6654, 6654, 6658, 6694, 6661, 6707, 6694, 6682, 6661 ], "ids": [ 6673, 6682, 6678, 6661, 6689, 6654, 6676, 6654, 6693, 6689, 6689, 6689, 6676, 6654, 6689, 6673, 6659, 6654, 6689, 6688, 6654, 6689, 6694, 6658, 6682, 6706, 6674, 6702, 6654, 6689, 6694, 6689, 6706, 6654, 6683, 6666, 6702, 6654, 6654, 6658, 6694, 6661, 6707, 6694, 6682, 6661 ], "lat": [ 53.80890241146502, 53.52971923996491, 53.83465312047732, 54.020849005752474, 53.864471803645856, 53.81449905832018, 54.020847759299066, 53.81449905832018, 54.22725596601593, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.020847759299066, 53.81449905832018, 53.864471803645856, 53.80890241146502, 53.80896520272324, 53.81449905832018, 53.864471803645856, 53.80909221822267, 53.81449905832018, 53.864471803645856, 53.845303866200666, 53.5296490438886, 53.52971923996491, 53.80915072481978, 53.80903972625709, 53.98452378709606, 53.81449905832018, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.80915072481978, 53.81449905832018, 53.80901818337243, 53.809076375885944, 53.98452378709606, 53.81449905832018, 53.81449905832018, 53.5296490438886, 53.845303866200666, 54.020849005752474, 53.80902089070886, 53.845303866200666, 53.52971923996491, 54.020849005752474 ], "legendgroup": "", "lon": [ 14.339950759070799, 14.630780570299253, 14.618480742664287, 14.728603318193455, 13.825501744421523, 14.399884841205175, 14.728650838545583, 14.399884841205175, 13.7785198325034, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.399884841205175, 13.825501744421523, 14.339950759070799, 14.339689073546207, 14.399884841205175, 13.825501744421523, 14.339735499061648, 14.399884841205175, 13.825501744421523, 13.824118967817144, 14.630604108154332, 14.630780570299253, 14.339825653017522, 14.339912750386873, 14.707173545415213, 14.399884841205175, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.339825653017522, 14.399884841205175, 14.33973774800166, 14.339652967059697, 14.707173545415213, 14.399884841205175, 14.399884841205175, 14.630604108154332, 13.824118967817144, 14.728603318193455, 14.339754867144269, 13.824118967817144, 14.630780570299253, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-06 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-07 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6673, 6676, 6689, 6682, 6682, 6682, 6654, 6688, 6702, 6673, 6661, 6674, 6658, 6659, 6654, 6706, 6654, 6689, 6676, 6683, 6689, 6661, 6702, 6661, 6689, 6654, 6654, 6654, 6689, 6678, 6689, 6666, 6689, 6694, 6694, 6694, 6689, 6658, 6694, 6689, 6706, 6654, 6654, 6654, 6693, 6707 ], "ids": [ 6673, 6676, 6689, 6682, 6682, 6682, 6654, 6688, 6702, 6673, 6661, 6674, 6658, 6659, 6654, 6706, 6654, 6689, 6676, 6683, 6689, 6661, 6702, 6661, 6689, 6654, 6654, 6654, 6689, 6678, 6689, 6666, 6689, 6694, 6694, 6694, 6689, 6658, 6694, 6689, 6706, 6654, 6654, 6654, 6693, 6707 ], "lat": [ 53.80890241146502, 54.020847759299066, 53.864471803645856, 53.52971923996491, 53.52971923996491, 53.52971923996491, 53.815190803437595, 53.80909221822267, 53.98287704863731, 53.80890241146502, 54.020849005752474, 53.80903972625709, 53.5296490438886, 53.80896520272324, 53.815190803437595, 53.80915072481978, 53.815190803437595, 53.864471803645856, 54.020847759299066, 53.80901818337243, 53.864471803645856, 54.020849005752474, 53.98287704863731, 54.020849005752474, 53.864471803645856, 53.815190803437595, 53.815190803437595, 53.815190803437595, 53.864471803645856, 53.83465312047732, 53.864471803645856, 53.809076375885944, 53.864471803645856, 53.845303866200666, 53.845303866200666, 53.845303866200666, 53.864471803645856, 53.5296490438886, 53.845303866200666, 53.864471803645856, 53.80915072481978, 53.815190803437595, 53.815190803437595, 53.815190803437595, 54.22725596601593, 53.80902089070886 ], "legendgroup": "", "lon": [ 14.339950759070799, 14.728650838545583, 13.825501744421523, 14.630780570299253, 14.630780570299253, 14.630780570299253, 14.407421193147943, 14.339735499061648, 14.706196878286557, 14.339950759070799, 14.728603318193455, 14.339912750386873, 14.630604108154332, 14.339689073546207, 14.407421193147943, 14.339825653017522, 14.407421193147943, 13.825501744421523, 14.728650838545583, 14.33973774800166, 13.825501744421523, 14.728603318193455, 14.706196878286557, 14.728603318193455, 13.825501744421523, 14.407421193147943, 14.407421193147943, 14.407421193147943, 13.825501744421523, 14.618480742664287, 13.825501744421523, 14.339652967059697, 13.825501744421523, 13.824118967817144, 13.824118967817144, 13.824118967817144, 13.825501744421523, 14.630604108154332, 13.824118967817144, 13.825501744421523, 14.339825653017522, 14.407421193147943, 14.407421193147943, 14.407421193147943, 13.7785198325034, 14.339754867144269 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-07 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-08 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6682, 6707, 6682, 6661, 6702, 6689, 6694, 6676, 6654, 6689, 6682, 6689, 6694, 6661, 6694, 6689, 6706, 6654, 6706, 6654, 6673, 6674, 6654, 6694, 6654, 6658, 6689, 6683, 6666, 6702, 6661, 6658, 6689, 6678, 6654, 6654, 6688, 6676, 6689, 6673, 6689, 6689, 6693, 6659, 6654, 6654 ], "ids": [ 6682, 6707, 6682, 6661, 6702, 6689, 6694, 6676, 6654, 6689, 6682, 6689, 6694, 6661, 6694, 6689, 6706, 6654, 6706, 6654, 6673, 6674, 6654, 6694, 6654, 6658, 6689, 6683, 6666, 6702, 6661, 6658, 6689, 6678, 6654, 6654, 6688, 6676, 6689, 6673, 6689, 6689, 6693, 6659, 6654, 6654 ], "lat": [ 53.52971923996491, 53.80902089070886, 53.52971923996491, 54.020849005752474, 53.981230310178574, 53.864471803645856, 53.845303866200666, 54.020847759299066, 53.81588254855501, 53.864471803645856, 53.52971923996491, 53.864471803645856, 53.845303866200666, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.80915072481978, 53.81588254855501, 53.80915072481978, 53.81588254855501, 53.80890241146502, 53.80903972625709, 53.81588254855501, 53.845303866200666, 53.81588254855501, 53.5296490438886, 53.864471803645856, 53.80901818337243, 53.809076375885944, 53.981230310178574, 54.020849005752474, 53.5296490438886, 53.864471803645856, 53.83465312047732, 53.81588254855501, 53.81588254855501, 53.80909221822267, 54.020847759299066, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.864471803645856, 54.22725596601593, 53.80896520272324, 53.81588254855501, 53.81588254855501 ], "legendgroup": "", "lon": [ 14.630780570299253, 14.339754867144269, 14.630780570299253, 14.728603318193455, 14.7052202111579, 13.825501744421523, 13.824118967817144, 14.728650838545583, 14.414957545090711, 13.825501744421523, 14.630780570299253, 13.825501744421523, 13.824118967817144, 14.728603318193455, 13.824118967817144, 13.825501744421523, 14.339825653017522, 14.414957545090711, 14.339825653017522, 14.414957545090711, 14.339950759070799, 14.339912750386873, 14.414957545090711, 13.824118967817144, 14.414957545090711, 14.630604108154332, 13.825501744421523, 14.33973774800166, 14.339652967059697, 14.7052202111579, 14.728603318193455, 14.630604108154332, 13.825501744421523, 14.618480742664287, 14.414957545090711, 14.414957545090711, 14.339735499061648, 14.728650838545583, 13.825501744421523, 14.339950759070799, 13.825501744421523, 13.825501744421523, 13.7785198325034, 14.339689073546207, 14.414957545090711, 14.414957545090711 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-08 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-09 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6683, 6707, 6658, 6678, 6689, 6654, 6682, 6702, 6661, 6654, 6659, 6694, 6654, 6689, 6682, 6688, 6694, 6673, 6658, 6689, 6694, 6689, 6661, 6666, 6694, 6689, 6706, 6693, 6654, 6682, 6702, 6654, 6654, 6689, 6689, 6676, 6676, 6706, 6654, 6674, 6673, 6661, 6689, 6654, 6654 ], "ids": [ 6689, 6683, 6707, 6658, 6678, 6689, 6654, 6682, 6702, 6661, 6654, 6659, 6694, 6654, 6689, 6682, 6688, 6694, 6673, 6658, 6689, 6694, 6689, 6661, 6666, 6694, 6689, 6706, 6693, 6654, 6682, 6702, 6654, 6654, 6689, 6689, 6676, 6676, 6706, 6654, 6674, 6673, 6661, 6689, 6654, 6654 ], "lat": [ 53.864471803645856, 53.80901818337243, 53.80902089070886, 53.5296490438886, 53.83465312047732, 53.864471803645856, 53.81657429367242, 53.52971923996491, 53.97958357171983, 54.020849005752474, 53.81657429367242, 53.80896520272324, 53.845303866200666, 53.81657429367242, 53.864471803645856, 53.52971923996491, 53.80909221822267, 53.845303866200666, 53.80890241146502, 53.5296490438886, 53.864471803645856, 53.845303866200666, 53.864471803645856, 54.020849005752474, 53.809076375885944, 53.845303866200666, 53.864471803645856, 53.80915072481978, 54.22725596601593, 53.81657429367242, 53.52971923996491, 53.97958357171983, 53.81657429367242, 53.81657429367242, 53.864471803645856, 53.864471803645856, 54.020847759299066, 54.020847759299066, 53.80915072481978, 53.81657429367242, 53.80903972625709, 53.80890241146502, 54.020849005752474, 53.864471803645856, 53.81657429367242, 53.81657429367242 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.33973774800166, 14.339754867144269, 14.630604108154332, 14.618480742664287, 13.825501744421523, 14.42249389703348, 14.630780570299253, 14.704243544029243, 14.728603318193455, 14.42249389703348, 14.339689073546207, 13.824118967817144, 14.42249389703348, 13.825501744421523, 14.630780570299253, 14.339735499061648, 13.824118967817144, 14.339950759070799, 14.630604108154332, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.728603318193455, 14.339652967059697, 13.824118967817144, 13.825501744421523, 14.339825653017522, 13.7785198325034, 14.42249389703348, 14.630780570299253, 14.704243544029243, 14.42249389703348, 14.42249389703348, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.728650838545583, 14.339825653017522, 14.42249389703348, 14.339912750386873, 14.339950759070799, 14.728603318193455, 13.825501744421523, 14.42249389703348, 14.42249389703348 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-09 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-10 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6706, 6702, 6683, 6694, 6658, 6689, 6688, 6702, 6673, 6674, 6673, 6654, 6689, 6654, 6654, 6654, 6654, 6689, 6654, 6694, 6689, 6676, 6682, 6654, 6676, 6707, 6706, 6678, 6693, 6682, 6661, 6661, 6689, 6654, 6654, 6694, 6689, 6661, 6658, 6666, 6659, 6689, 6689, 6694, 6682 ], "ids": [ 6689, 6706, 6702, 6683, 6694, 6658, 6689, 6688, 6702, 6673, 6674, 6673, 6654, 6689, 6654, 6654, 6654, 6654, 6689, 6654, 6694, 6689, 6676, 6682, 6654, 6676, 6707, 6706, 6678, 6693, 6682, 6661, 6661, 6689, 6654, 6654, 6694, 6689, 6661, 6658, 6666, 6659, 6689, 6689, 6694, 6682 ], "lat": [ 53.864471803645856, 53.80915072481978, 53.97793683326109, 53.80901818337243, 53.845303866200666, 53.5296490438886, 53.864471803645856, 53.80909221822267, 53.97793683326109, 53.80890241146502, 53.80903972625709, 53.80890241146502, 53.81726603878983, 53.864471803645856, 53.81726603878983, 53.81726603878983, 53.81726603878983, 53.81726603878983, 53.864471803645856, 53.81726603878983, 53.845303866200666, 53.864471803645856, 54.020847759299066, 53.52971923996491, 53.81726603878983, 54.020847759299066, 53.80902089070886, 53.80915072481978, 53.83465312047732, 54.22725596601593, 53.52971923996491, 54.020849005752474, 54.020849005752474, 53.864471803645856, 53.81726603878983, 53.81726603878983, 53.845303866200666, 53.864471803645856, 54.020849005752474, 53.5296490438886, 53.809076375885944, 53.80896520272324, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.52971923996491 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.339825653017522, 14.703266876900587, 14.33973774800166, 13.824118967817144, 14.630604108154332, 13.825501744421523, 14.339735499061648, 14.703266876900587, 14.339950759070799, 14.339912750386873, 14.339950759070799, 14.430030248976248, 13.825501744421523, 14.430030248976248, 14.430030248976248, 14.430030248976248, 14.430030248976248, 13.825501744421523, 14.430030248976248, 13.824118967817144, 13.825501744421523, 14.728650838545583, 14.630780570299253, 14.430030248976248, 14.728650838545583, 14.339754867144269, 14.339825653017522, 14.618480742664287, 13.7785198325034, 14.630780570299253, 14.728603318193455, 14.728603318193455, 13.825501744421523, 14.430030248976248, 14.430030248976248, 13.824118967817144, 13.825501744421523, 14.728603318193455, 14.630604108154332, 14.339652967059697, 14.339689073546207, 13.825501744421523, 13.825501744421523, 13.824118967817144, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-10 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-11 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6694, 6682, 6654, 6693, 6702, 6654, 6654, 6676, 6654, 6706, 6674, 6688, 6683, 6694, 6694, 6659, 6661, 6694, 6689, 6661, 6682, 6689, 6676, 6702, 6682, 6661, 6673, 6706, 6689, 6689, 6654, 6666, 6689, 6707, 6654, 6689, 6654, 6673, 6658, 6689, 6689, 6654, 6658, 6689, 6678 ], "ids": [ 6654, 6694, 6682, 6654, 6693, 6702, 6654, 6654, 6676, 6654, 6706, 6674, 6688, 6683, 6694, 6694, 6659, 6661, 6694, 6689, 6661, 6682, 6689, 6676, 6702, 6682, 6661, 6673, 6706, 6689, 6689, 6654, 6666, 6689, 6707, 6654, 6689, 6654, 6673, 6658, 6689, 6689, 6654, 6658, 6689, 6678 ], "lat": [ 53.81795778390725, 53.845303866200666, 53.52971923996491, 53.81795778390725, 54.22725596601593, 53.976290094802344, 53.81795778390725, 53.81795778390725, 54.020847759299066, 53.81795778390725, 53.80915072481978, 53.80903972625709, 53.80909221822267, 53.80901818337243, 53.845303866200666, 53.845303866200666, 53.80896520272324, 54.020849005752474, 53.845303866200666, 53.864471803645856, 54.020849005752474, 53.52971923996491, 53.864471803645856, 54.020847759299066, 53.976290094802344, 53.52971923996491, 54.020849005752474, 53.80890241146502, 53.80915072481978, 53.864471803645856, 53.864471803645856, 53.81795778390725, 53.809076375885944, 53.864471803645856, 53.80902089070886, 53.81795778390725, 53.864471803645856, 53.81795778390725, 53.80890241146502, 53.5296490438886, 53.864471803645856, 53.864471803645856, 53.81795778390725, 53.5296490438886, 53.864471803645856, 53.83465312047732 ], "legendgroup": "", "lon": [ 14.437566600919016, 13.824118967817144, 14.630780570299253, 14.437566600919016, 13.7785198325034, 14.702290209771931, 14.437566600919016, 14.437566600919016, 14.728650838545583, 14.437566600919016, 14.339825653017522, 14.339912750386873, 14.339735499061648, 14.33973774800166, 13.824118967817144, 13.824118967817144, 14.339689073546207, 14.728603318193455, 13.824118967817144, 13.825501744421523, 14.728603318193455, 14.630780570299253, 13.825501744421523, 14.728650838545583, 14.702290209771931, 14.630780570299253, 14.728603318193455, 14.339950759070799, 14.339825653017522, 13.825501744421523, 13.825501744421523, 14.437566600919016, 14.339652967059697, 13.825501744421523, 14.339754867144269, 14.437566600919016, 13.825501744421523, 14.437566600919016, 14.339950759070799, 14.630604108154332, 13.825501744421523, 13.825501744421523, 14.437566600919016, 14.630604108154332, 13.825501744421523, 14.618480742664287 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-11 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-12 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6694, 6676, 6694, 6673, 6666, 6702, 6658, 6689, 6678, 6654, 6654, 6654, 6676, 6693, 6689, 6689, 6689, 6682, 6689, 6683, 6694, 6689, 6654, 6689, 6707, 6682, 6654, 6654, 6706, 6689, 6661, 6702, 6673, 6688, 6682, 6706, 6654, 6654, 6694, 6689, 6659, 6654, 6658, 6661, 6674, 6661 ], "ids": [ 6694, 6676, 6694, 6673, 6666, 6702, 6658, 6689, 6678, 6654, 6654, 6654, 6676, 6693, 6689, 6689, 6689, 6682, 6689, 6683, 6694, 6689, 6654, 6689, 6707, 6682, 6654, 6654, 6706, 6689, 6661, 6702, 6673, 6688, 6682, 6706, 6654, 6654, 6694, 6689, 6659, 6654, 6658, 6661, 6674, 6661 ], "lat": [ 53.845303866200666, 54.020847759299066, 53.845303866200666, 53.80890241146502, 53.809076375885944, 53.974643356343606, 53.5296490438886, 53.864471803645856, 53.83465312047732, 53.818649529024654, 53.818649529024654, 53.818649529024654, 54.020847759299066, 54.22725596601593, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.864471803645856, 53.80901818337243, 53.845303866200666, 53.864471803645856, 53.818649529024654, 53.864471803645856, 53.80902089070886, 53.52971923996491, 53.818649529024654, 53.818649529024654, 53.80915072481978, 53.864471803645856, 54.020849005752474, 53.974643356343606, 53.80890241146502, 53.80909221822267, 53.52971923996491, 53.80915072481978, 53.818649529024654, 53.818649529024654, 53.845303866200666, 53.864471803645856, 53.80896520272324, 53.818649529024654, 53.5296490438886, 54.020849005752474, 53.80903972625709, 54.020849005752474 ], "legendgroup": "", "lon": [ 13.824118967817144, 14.728650838545583, 13.824118967817144, 14.339950759070799, 14.339652967059697, 14.701313542643275, 14.630604108154332, 13.825501744421523, 14.618480742664287, 14.445102952861786, 14.445102952861786, 14.445102952861786, 14.728650838545583, 13.7785198325034, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.33973774800166, 13.824118967817144, 13.825501744421523, 14.445102952861786, 13.825501744421523, 14.339754867144269, 14.630780570299253, 14.445102952861786, 14.445102952861786, 14.339825653017522, 13.825501744421523, 14.728603318193455, 14.701313542643275, 14.339950759070799, 14.339735499061648, 14.630780570299253, 14.339825653017522, 14.445102952861786, 14.445102952861786, 13.824118967817144, 13.825501744421523, 14.339689073546207, 14.445102952861786, 14.630604108154332, 14.728603318193455, 14.339912750386873, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-12 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-13 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6683, 6682, 6661, 6689, 6694, 6689, 6694, 6676, 6666, 6661, 6693, 6682, 6661, 6694, 6658, 6707, 6689, 6706, 6694, 6689, 6706, 6658, 6689, 6654, 6674, 6659, 6654, 6654, 6673, 6688, 6702, 6654, 6689, 6654, 6673, 6689, 6689, 6689, 6678, 6654, 6654, 6676, 6702, 6654, 6654, 6682 ], "ids": [ 6683, 6682, 6661, 6689, 6694, 6689, 6694, 6676, 6666, 6661, 6693, 6682, 6661, 6694, 6658, 6707, 6689, 6706, 6694, 6689, 6706, 6658, 6689, 6654, 6674, 6659, 6654, 6654, 6673, 6688, 6702, 6654, 6689, 6654, 6673, 6689, 6689, 6689, 6678, 6654, 6654, 6676, 6702, 6654, 6654, 6682 ], "lat": [ 53.80901818337243, 53.52971923996491, 54.020849005752474, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.845303866200666, 54.020847759299066, 53.809076375885944, 54.020849005752474, 54.22725596601593, 53.52971923996491, 54.020849005752474, 53.845303866200666, 53.5296490438886, 53.80902089070886, 53.864471803645856, 53.80915072481978, 53.845303866200666, 53.864471803645856, 53.80915072481978, 53.5296490438886, 53.864471803645856, 53.81934127414207, 53.80903972625709, 53.80896520272324, 53.81934127414207, 53.81934127414207, 53.80890241146502, 53.80909221822267, 53.97299661788486, 53.81934127414207, 53.864471803645856, 53.81934127414207, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.83465312047732, 53.81934127414207, 53.81934127414207, 54.020847759299066, 53.97299661788486, 53.81934127414207, 53.81934127414207, 53.52971923996491 ], "legendgroup": "", "lon": [ 14.33973774800166, 14.630780570299253, 14.728603318193455, 13.825501744421523, 13.824118967817144, 13.825501744421523, 13.824118967817144, 14.728650838545583, 14.339652967059697, 14.728603318193455, 13.7785198325034, 14.630780570299253, 14.728603318193455, 13.824118967817144, 14.630604108154332, 14.339754867144269, 13.825501744421523, 14.339825653017522, 13.824118967817144, 13.825501744421523, 14.339825653017522, 14.630604108154332, 13.825501744421523, 14.452639304804554, 14.339912750386873, 14.339689073546207, 14.452639304804554, 14.452639304804554, 14.339950759070799, 14.339735499061648, 14.700336875514617, 14.452639304804554, 13.825501744421523, 14.452639304804554, 14.339950759070799, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.618480742664287, 14.452639304804554, 14.452639304804554, 14.728650838545583, 14.700336875514617, 14.452639304804554, 14.452639304804554, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-13 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-14 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6688, 6689, 6682, 6661, 6673, 6694, 6654, 6654, 6689, 6689, 6694, 6654, 6689, 6661, 6659, 6699, 6654, 6693, 6689, 6676, 6689, 6676, 6689, 6654, 6707, 6682, 6682, 6702, 6694, 6666, 6654, 6694, 6689, 6654, 6678, 6654, 6689, 6702, 6673, 6706, 6658, 6674, 6661, 6658, 6683, 6654, 6706 ], "ids": [ 6688, 6689, 6682, 6661, 6673, 6694, 6654, 6654, 6689, 6689, 6694, 6654, 6689, 6661, 6659, 6699, 6654, 6693, 6689, 6676, 6689, 6676, 6689, 6654, 6707, 6682, 6682, 6702, 6694, 6666, 6654, 6694, 6689, 6654, 6678, 6654, 6689, 6702, 6673, 6706, 6658, 6674, 6661, 6658, 6683, 6654, 6706 ], "lat": [ 53.80909221822267, 53.864471803645856, 53.52971923996491, 54.020849005752474, 53.80890241146502, 53.845303866200666, 53.82003301925948, 53.82003301925948, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.82003301925948, 53.864471803645856, 54.020849005752474, 53.80896520272324, 53.80892746585745, 53.82003301925948, 54.22725596601593, 53.864471803645856, 54.020847759299066, 53.864471803645856, 54.020847759299066, 53.864471803645856, 53.82003301925948, 53.80902089070886, 53.52971923996491, 53.52971923996491, 53.97134987942612, 53.845303866200666, 53.809076375885944, 53.82003301925948, 53.845303866200666, 53.864471803645856, 53.82003301925948, 53.83465312047732, 53.82003301925948, 53.864471803645856, 53.97134987942612, 53.80890241146502, 53.80915072481978, 53.5296490438886, 53.80903972625709, 54.020849005752474, 53.5296490438886, 53.80901818337243, 53.82003301925948, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.339735499061648, 13.825501744421523, 14.630780570299253, 14.728603318193455, 14.339950759070799, 13.824118967817144, 14.460175656747323, 14.460175656747323, 13.825501744421523, 13.825501744421523, 13.824118967817144, 14.460175656747323, 13.825501744421523, 14.728603318193455, 14.339689073546207, 14.339827351797773, 14.460175656747323, 13.7785198325034, 13.825501744421523, 14.728650838545583, 13.825501744421523, 14.728650838545583, 13.825501744421523, 14.460175656747323, 14.339754867144269, 14.630780570299253, 14.630780570299253, 14.699360208385961, 13.824118967817144, 14.339652967059697, 14.460175656747323, 13.824118967817144, 13.825501744421523, 14.460175656747323, 14.618480742664287, 14.460175656747323, 13.825501744421523, 14.699360208385961, 14.339950759070799, 14.339825653017522, 14.630604108154332, 14.339912750386873, 14.728603318193455, 14.630604108154332, 14.33973774800166, 14.460175656747323, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-14 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-15 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6661, 6689, 6654, 6673, 6654, 6658, 6706, 6654, 6654, 6683, 6689, 6694, 6682, 6654, 6706, 6682, 6689, 6655, 6659, 6674, 6654, 6694, 6688, 6658, 6673, 6689, 6676, 6654, 6702, 6689, 6654, 6693, 6699, 6689, 6689, 6661, 6654, 6661, 6678, 6666, 6707, 6676, 6694, 6694, 6655, 6702, 6682, 6689 ], "ids": [ 6689, 6661, 6689, 6654, 6673, 6654, 6658, 6706, 6654, 6654, 6683, 6689, 6694, 6682, 6654, 6706, 6682, 6689, 6655, 6659, 6674, 6654, 6694, 6688, 6658, 6673, 6689, 6676, 6654, 6702, 6689, 6654, 6693, 6699, 6689, 6689, 6661, 6654, 6661, 6678, 6666, 6707, 6676, 6694, 6694, 6655, 6702, 6682, 6689 ], "lat": [ 53.864471803645856, 54.020849005752474, 53.864471803645856, 53.82072476437689, 53.80890241146502, 53.82072476437689, 53.5296490438886, 53.80915072481978, 53.82072476437689, 53.82072476437689, 53.80901818337243, 53.864471803645856, 53.845303866200666, 53.52971923996491, 53.82072476437689, 53.80915072481978, 53.52971923996491, 53.864471803645856, 53.87273929926711, 53.80896520272324, 53.80903972625709, 53.82072476437689, 53.845303866200666, 53.80909221822267, 53.5296490438886, 53.80890241146502, 53.864471803645856, 54.020847759299066, 53.82072476437689, 53.969703140967376, 53.864471803645856, 53.82072476437689, 54.22725596601593, 53.80892746585745, 53.864471803645856, 53.864471803645856, 54.020849005752474, 53.82072476437689, 54.020849005752474, 53.83465312047732, 53.809076375885944, 53.80902089070886, 54.020847759299066, 53.845303866200666, 53.845303866200666, 53.87273929926711, 53.969703140967376, 53.52971923996491, 53.864471803645856 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.728603318193455, 13.825501744421523, 14.467712008690091, 14.339950759070799, 14.467712008690091, 14.630604108154332, 14.339825653017522, 14.467712008690091, 14.467712008690091, 14.33973774800166, 13.825501744421523, 13.824118967817144, 14.630780570299253, 14.467712008690091, 14.339825653017522, 14.630780570299253, 13.825501744421523, 14.322595203157771, 14.339689073546207, 14.339912750386873, 14.467712008690091, 13.824118967817144, 14.339735499061648, 14.630604108154332, 14.339950759070799, 13.825501744421523, 14.728650838545583, 14.467712008690091, 14.698383541257305, 13.825501744421523, 14.467712008690091, 13.7785198325034, 14.339827351797773, 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.467712008690091, 14.728603318193455, 14.618480742664287, 14.339652967059697, 14.339754867144269, 14.728650838545583, 13.824118967817144, 13.824118967817144, 14.322595203157771, 14.698383541257305, 14.630780570299253, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-15 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-16 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6676, 6689, 6666, 6654, 6673, 6689, 6702, 6654, 6678, 6661, 6689, 6654, 6707, 6655, 6659, 6674, 6658, 6655, 6689, 6661, 6694, 6706, 6654, 6694, 6694, 6682, 6706, 6699, 6683, 6688, 6702, 6689, 6654, 6689, 6693, 6654, 6658, 6654, 6694, 6689, 6673, 6654, 6689, 6682, 6682, 6654, 6661, 6689, 6676 ], "ids": [ 6676, 6689, 6666, 6654, 6673, 6689, 6702, 6654, 6678, 6661, 6689, 6654, 6707, 6655, 6659, 6674, 6658, 6655, 6689, 6661, 6694, 6706, 6654, 6694, 6694, 6682, 6706, 6699, 6683, 6688, 6702, 6689, 6654, 6689, 6693, 6654, 6658, 6654, 6694, 6689, 6673, 6654, 6689, 6682, 6682, 6654, 6661, 6689, 6676 ], "lat": [ 54.020847759299066, 53.864471803645856, 53.809076375885944, 53.821416509494306, 53.80890241146502, 53.864471803645856, 53.96805640250863, 53.821416509494306, 53.83465312047732, 54.020849005752474, 53.864471803645856, 53.821416509494306, 53.80902089070886, 53.8514674807464, 53.80896520272324, 53.80903972625709, 53.5296490438886, 53.8514674807464, 53.864471803645856, 54.020849005752474, 53.845303866200666, 53.80915072481978, 53.821416509494306, 53.845303866200666, 53.845303866200666, 53.52971923996491, 53.80915072481978, 53.80892746585745, 53.80901818337243, 53.80909221822267, 53.96805640250863, 53.864471803645856, 53.821416509494306, 53.864471803645856, 54.22725596601593, 53.821416509494306, 53.5296490438886, 53.821416509494306, 53.845303866200666, 53.864471803645856, 53.80890241146502, 53.821416509494306, 53.864471803645856, 53.52971923996491, 53.52971923996491, 53.821416509494306, 54.020849005752474, 53.864471803645856, 54.020847759299066 ], "legendgroup": "", "lon": [ 14.728650838545583, 13.825501744421523, 14.339652967059697, 14.47524836063286, 14.339950759070799, 13.825501744421523, 14.69740687412865, 14.47524836063286, 14.618480742664287, 14.728603318193455, 13.825501744421523, 14.47524836063286, 14.339754867144269, 14.32832523985501, 14.339689073546207, 14.339912750386873, 14.630604108154332, 14.32832523985501, 13.825501744421523, 14.728603318193455, 13.824118967817144, 14.339825653017522, 14.47524836063286, 13.824118967817144, 13.824118967817144, 14.630780570299253, 14.339825653017522, 14.339827351797773, 14.33973774800166, 14.339735499061648, 14.69740687412865, 13.825501744421523, 14.47524836063286, 13.825501744421523, 13.7785198325034, 14.47524836063286, 14.630604108154332, 14.47524836063286, 13.824118967817144, 13.825501744421523, 14.339950759070799, 14.47524836063286, 13.825501744421523, 14.630780570299253, 14.630780570299253, 14.47524836063286, 14.728603318193455, 13.825501744421523, 14.728650838545583 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-16 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-17 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6688, 6706, 6689, 6658, 6699, 6655, 6654, 6689, 6689, 6694, 6655, 6661, 6682, 6682, 6678, 6658, 6707, 6661, 6689, 6666, 6694, 6676, 6689, 6694, 6693, 6694, 6674, 6659, 6654, 6673, 6702, 6689, 6673, 6706, 6689, 6689, 6682, 6654, 6702, 6683, 6689, 6654, 6680, 6676, 6654, 6654, 6654, 6654, 6654, 6661 ], "ids": [ 6688, 6706, 6689, 6658, 6699, 6655, 6654, 6689, 6689, 6694, 6655, 6661, 6682, 6682, 6678, 6658, 6707, 6661, 6689, 6666, 6694, 6676, 6689, 6694, 6693, 6694, 6674, 6659, 6654, 6673, 6702, 6689, 6673, 6706, 6689, 6689, 6682, 6654, 6702, 6683, 6689, 6654, 6680, 6676, 6654, 6654, 6654, 6654, 6654, 6661 ], "lat": [ 53.80909221822267, 53.80915072481978, 53.864471803645856, 53.5296490438886, 53.80892746585745, 53.8301956622257, 53.82210825461172, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.8301956622257, 54.020849005752474, 53.52971923996491, 53.52971923996491, 53.83465312047732, 53.5296490438886, 53.80902089070886, 54.020849005752474, 53.864471803645856, 53.809076375885944, 53.845303866200666, 54.020847759299066, 53.864471803645856, 53.845303866200666, 54.22725596601593, 53.845303866200666, 53.80903972625709, 53.80896520272324, 53.82210825461172, 53.80890241146502, 53.96640966404989, 53.864471803645856, 53.80890241146502, 53.80915072481978, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.82210825461172, 53.96640966404989, 53.80901818337243, 53.864471803645856, 53.82210825461172, 54.020746549558325, 54.020847759299066, 53.82210825461172, 53.82210825461172, 53.82210825461172, 53.82210825461172, 53.82210825461172, 54.020849005752474 ], "legendgroup": "", "lon": [ 14.339735499061648, 14.339825653017522, 13.825501744421523, 14.630604108154332, 14.339827351797773, 14.33405527655225, 14.482784712575627, 13.825501744421523, 13.825501744421523, 13.824118967817144, 14.33405527655225, 14.728603318193455, 14.630780570299253, 14.630780570299253, 14.618480742664287, 14.630604108154332, 14.339754867144269, 14.728603318193455, 13.825501744421523, 14.339652967059697, 13.824118967817144, 14.728650838545583, 13.825501744421523, 13.824118967817144, 13.7785198325034, 13.824118967817144, 14.339912750386873, 14.339689073546207, 14.482784712575627, 14.339950759070799, 14.696430206999992, 13.825501744421523, 14.339950759070799, 14.339825653017522, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.482784712575627, 14.696430206999992, 14.33973774800166, 13.825501744421523, 14.482784712575627, 14.728456965919694, 14.728650838545583, 14.482784712575627, 14.482784712575627, 14.482784712575627, 14.482784712575627, 14.482784712575627, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-17 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-18 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6678, 6654, 6658, 6654, 6666, 6682, 6699, 6689, 6676, 6654, 6654, 6688, 6654, 6706, 6702, 6693, 6654, 6680, 6694, 6659, 6706, 6654, 6658, 6694, 6689, 6707, 6682, 6676, 6689, 6689, 6655, 6694, 6689, 6673, 6689, 6674, 6689, 6673, 6694, 6661, 6654, 6661, 6654, 6689, 6655, 6683, 6702, 6682, 6661 ], "ids": [ 6689, 6678, 6654, 6658, 6654, 6666, 6682, 6699, 6689, 6676, 6654, 6654, 6688, 6654, 6706, 6702, 6693, 6654, 6680, 6694, 6659, 6706, 6654, 6658, 6694, 6689, 6707, 6682, 6676, 6689, 6689, 6655, 6694, 6689, 6673, 6689, 6674, 6689, 6673, 6694, 6661, 6654, 6661, 6654, 6689, 6655, 6683, 6702, 6682, 6661 ], "lat": [ 53.864471803645856, 53.83465312047732, 53.822799999729135, 53.5296490438886, 53.822799999729135, 53.809076375885944, 53.52971923996491, 53.80892746585745, 53.864471803645856, 54.020847759299066, 53.822799999729135, 53.822799999729135, 53.80909221822267, 53.822799999729135, 53.80915072481978, 53.964762925591145, 54.22725596601593, 53.822799999729135, 54.020746549558325, 53.845303866200666, 53.80896520272324, 53.80915072481978, 53.822799999729135, 53.5296490438886, 53.845303866200666, 53.864471803645856, 53.80902089070886, 53.52971923996491, 54.020847759299066, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.845303866200666, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.80903972625709, 53.864471803645856, 53.80890241146502, 53.845303866200666, 54.020849005752474, 53.822799999729135, 54.020849005752474, 53.822799999729135, 53.864471803645856, 53.80892384370499, 53.80901818337243, 53.964762925591145, 53.52971923996491, 54.020849005752474 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.618480742664287, 14.490321064518396, 14.630604108154332, 14.490321064518396, 14.339652967059697, 14.630780570299253, 14.339827351797773, 13.825501744421523, 14.728650838545583, 14.490321064518396, 14.490321064518396, 14.339735499061648, 14.490321064518396, 14.339825653017522, 14.695453539871336, 13.7785198325034, 14.490321064518396, 14.728456965919694, 13.824118967817144, 14.339689073546207, 14.339825653017522, 14.490321064518396, 14.630604108154332, 13.824118967817144, 13.825501744421523, 14.339754867144269, 14.630780570299253, 14.728650838545583, 13.825501744421523, 13.825501744421523, 14.33978531324949, 13.824118967817144, 13.825501744421523, 14.339950759070799, 13.825501744421523, 14.339912750386873, 13.825501744421523, 14.339950759070799, 13.824118967817144, 14.728603318193455, 14.490321064518396, 14.728603318193455, 14.490321064518396, 13.825501744421523, 14.33978531324949, 14.33973774800166, 14.695453539871336, 14.630780570299253, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-18 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-19 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6661, 6658, 6689, 6682, 6682, 6689, 6678, 6689, 6689, 6676, 6654, 6666, 6689, 6655, 6661, 6682, 6694, 6689, 6673, 6654, 6689, 6689, 6683, 6673, 6655, 6693, 6707, 6694, 6654, 6694, 6659, 6706, 6654, 6658, 6654, 6706, 6654, 6654, 6654, 6680, 6676, 6694, 6689, 6674, 6699, 6702, 6661, 6702, 6688 ], "ids": [ 6654, 6661, 6658, 6689, 6682, 6682, 6689, 6678, 6689, 6689, 6676, 6654, 6666, 6689, 6655, 6661, 6682, 6694, 6689, 6673, 6654, 6689, 6689, 6683, 6673, 6655, 6693, 6707, 6694, 6654, 6694, 6659, 6706, 6654, 6658, 6654, 6706, 6654, 6654, 6654, 6680, 6676, 6694, 6689, 6674, 6699, 6702, 6661, 6702, 6688 ], "lat": [ 53.82349174484654, 54.020849005752474, 53.5296490438886, 53.864471803645856, 53.52971923996491, 53.52971923996491, 53.864471803645856, 53.83465312047732, 53.864471803645856, 53.864471803645856, 54.020847759299066, 53.82349174484654, 53.809076375885944, 53.864471803645856, 53.80892384370499, 54.020849005752474, 53.52971923996491, 53.845303866200666, 53.864471803645856, 53.80890241146502, 53.82349174484654, 53.864471803645856, 53.864471803645856, 53.80901818337243, 53.80890241146502, 53.80892384370499, 54.22725596601593, 53.80902089070886, 53.845303866200666, 53.82349174484654, 53.845303866200666, 53.80896520272324, 53.80915072481978, 53.82349174484654, 53.5296490438886, 53.82349174484654, 53.80915072481978, 53.82349174484654, 53.82349174484654, 53.82349174484654, 54.020746549558325, 54.020847759299066, 53.845303866200666, 53.864471803645856, 53.80903972625709, 53.80892746585745, 53.96311618713241, 54.020849005752474, 53.96311618713241, 53.80909221822267 ], "legendgroup": "", "lon": [ 14.497857416461164, 14.728603318193455, 14.630604108154332, 13.825501744421523, 14.630780570299253, 14.630780570299253, 13.825501744421523, 14.618480742664287, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.497857416461164, 14.339652967059697, 13.825501744421523, 14.33978531324949, 14.728603318193455, 14.630780570299253, 13.824118967817144, 13.825501744421523, 14.339950759070799, 14.497857416461164, 13.825501744421523, 13.825501744421523, 14.33973774800166, 14.339950759070799, 14.33978531324949, 13.7785198325034, 14.339754867144269, 13.824118967817144, 14.497857416461164, 13.824118967817144, 14.339689073546207, 14.339825653017522, 14.497857416461164, 14.630604108154332, 14.497857416461164, 14.339825653017522, 14.497857416461164, 14.497857416461164, 14.497857416461164, 14.728456965919694, 14.728650838545583, 13.824118967817144, 13.825501744421523, 14.339912750386873, 14.339827351797773, 14.69447687274268, 14.728603318193455, 14.69447687274268, 14.339735499061648 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-19 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-20 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6694, 6694, 6659, 6680, 6706, 6694, 6682, 6689, 6694, 6661, 6658, 6689, 6661, 6689, 6689, 6682, 6654, 6689, 6676, 6707, 6655, 6673, 6673, 6654, 6699, 6654, 6702, 6676, 6666, 6654, 6654, 6658, 6654, 6661, 6654, 6702, 6678, 6654, 6688, 6689, 6689, 6689, 6654, 6683, 6693, 6674, 6689, 6706, 6655, 6682 ], "ids": [ 6694, 6694, 6659, 6680, 6706, 6694, 6682, 6689, 6694, 6661, 6658, 6689, 6661, 6689, 6689, 6682, 6654, 6689, 6676, 6707, 6655, 6673, 6673, 6654, 6699, 6654, 6702, 6676, 6666, 6654, 6654, 6658, 6654, 6661, 6654, 6702, 6678, 6654, 6688, 6689, 6689, 6689, 6654, 6683, 6693, 6674, 6689, 6706, 6655, 6682 ], "lat": [ 53.845303866200666, 53.845303866200666, 53.80896520272324, 54.020746549558325, 53.80915072481978, 53.845303866200666, 53.52971923996491, 53.864471803645856, 53.845303866200666, 54.020849005752474, 53.5296490438886, 53.864471803645856, 54.020849005752474, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.82418348996396, 53.864471803645856, 54.020847759299066, 53.80902089070886, 53.80892384370499, 53.80890241146502, 53.80890241146502, 53.82418348996396, 53.80892746585745, 53.82418348996396, 53.96146944867366, 54.020847759299066, 53.809076375885944, 53.82418348996396, 53.82418348996396, 53.5296490438886, 53.82418348996396, 54.020849005752474, 53.82418348996396, 53.96146944867366, 53.83465312047732, 53.82418348996396, 53.80909221822267, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.82418348996396, 53.80901818337243, 54.22725596601593, 53.80903972625709, 53.864471803645856, 53.80915072481978, 53.80892384370499, 53.52971923996491 ], "legendgroup": "", "lon": [ 13.824118967817144, 13.824118967817144, 14.339689073546207, 14.728456965919694, 14.339825653017522, 13.824118967817144, 14.630780570299253, 13.825501744421523, 13.824118967817144, 14.728603318193455, 14.630604108154332, 13.825501744421523, 14.728603318193455, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.505393768403932, 13.825501744421523, 14.728650838545583, 14.339754867144269, 14.33978531324949, 14.339950759070799, 14.339950759070799, 14.505393768403932, 14.339827351797773, 14.505393768403932, 14.693500205614022, 14.728650838545583, 14.339652967059697, 14.505393768403932, 14.505393768403932, 14.630604108154332, 14.505393768403932, 14.728603318193455, 14.505393768403932, 14.693500205614022, 14.618480742664287, 14.505393768403932, 14.339735499061648, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.505393768403932, 14.33973774800166, 13.7785198325034, 14.339912750386873, 13.825501744421523, 14.339825653017522, 14.33978531324949, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-20 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-21 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6706, 6674, 6676, 6654, 6658, 6702, 6706, 6661, 6682, 6673, 6654, 6654, 6654, 6689, 6702, 6683, 6654, 6682, 6689, 6689, 6689, 6689, 6661, 6661, 6689, 6689, 6658, 6682, 6694, 6654, 6676, 6707, 6673, 6689, 6689, 6666, 6678, 6655, 6694, 6659, 6655, 6694, 6688, 6699, 6654, 6694, 6693, 6654, 6680, 6654 ], "ids": [ 6706, 6674, 6676, 6654, 6658, 6702, 6706, 6661, 6682, 6673, 6654, 6654, 6654, 6689, 6702, 6683, 6654, 6682, 6689, 6689, 6689, 6689, 6661, 6661, 6689, 6689, 6658, 6682, 6694, 6654, 6676, 6707, 6673, 6689, 6689, 6666, 6678, 6655, 6694, 6659, 6655, 6694, 6688, 6699, 6654, 6694, 6693, 6654, 6680, 6654 ], "lat": [ 53.80915072481978, 53.80903972625709, 54.020847759299066, 53.82487523508137, 53.5296490438886, 53.95982271021492, 53.80915072481978, 54.020849005752474, 53.52971923996491, 53.80890241146502, 53.82487523508137, 53.82487523508137, 53.82487523508137, 53.864471803645856, 53.95982271021492, 53.80901818337243, 53.82487523508137, 53.52971923996491, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.020849005752474, 54.020849005752474, 53.864471803645856, 53.864471803645856, 53.5296490438886, 53.52971923996491, 53.845303866200666, 53.82487523508137, 54.020847759299066, 53.80902089070886, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.809076375885944, 53.83465312047732, 53.80892384370499, 53.845303866200666, 53.80896520272324, 53.80892384370499, 53.845303866200666, 53.80909221822267, 53.80892746585745, 53.82487523508137, 53.845303866200666, 54.22725596601593, 53.82487523508137, 54.020746549558325, 53.82487523508137 ], "legendgroup": "", "lon": [ 14.339825653017522, 14.339912750386873, 14.728650838545583, 14.5129301203467, 14.630604108154332, 14.692523538485366, 14.339825653017522, 14.728603318193455, 14.630780570299253, 14.339950759070799, 14.5129301203467, 14.5129301203467, 14.5129301203467, 13.825501744421523, 14.692523538485366, 14.33973774800166, 14.5129301203467, 14.630780570299253, 13.825501744421523, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.728603318193455, 13.825501744421523, 13.825501744421523, 14.630604108154332, 14.630780570299253, 13.824118967817144, 14.5129301203467, 14.728650838545583, 14.339754867144269, 14.339950759070799, 13.825501744421523, 13.825501744421523, 14.339652967059697, 14.618480742664287, 14.33978531324949, 13.824118967817144, 14.339689073546207, 14.33978531324949, 13.824118967817144, 14.339735499061648, 14.339827351797773, 14.5129301203467, 13.824118967817144, 13.7785198325034, 14.5129301203467, 14.728456965919694, 14.5129301203467 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-21 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-22 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6702, 6658, 6702, 6666, 6654, 6682, 6689, 6655, 6654, 6689, 6654, 6683, 6654, 6661, 6654, 6676, 6658, 6694, 6654, 6678, 6682, 6694, 6689, 6707, 6689, 6661, 6673, 6693, 6655, 6689, 6689, 6654, 6706, 6689, 6694, 6699, 6688, 6673, 6654, 6689, 6706, 6659, 6661, 6654, 6694, 6674, 6676, 6682, 6680 ], "ids": [ 6689, 6702, 6658, 6702, 6666, 6654, 6682, 6689, 6655, 6654, 6689, 6654, 6683, 6654, 6661, 6654, 6676, 6658, 6694, 6654, 6678, 6682, 6694, 6689, 6707, 6689, 6661, 6673, 6693, 6655, 6689, 6689, 6654, 6706, 6689, 6694, 6699, 6688, 6673, 6654, 6689, 6706, 6659, 6661, 6654, 6694, 6674, 6676, 6682, 6680 ], "lat": [ 53.864471803645856, 53.95817597175618, 53.5296490438886, 53.95817597175618, 53.809076375885944, 53.82556698019878, 53.52971923996491, 53.864471803645856, 53.80892384370499, 53.82556698019878, 53.864471803645856, 53.82556698019878, 53.80901818337243, 53.82556698019878, 54.020849005752474, 53.82556698019878, 54.020847759299066, 53.5296490438886, 53.845303866200666, 53.82556698019878, 53.83465312047732, 53.52971923996491, 53.845303866200666, 53.864471803645856, 53.80902089070886, 53.864471803645856, 54.020849005752474, 53.80890241146502, 54.22725596601593, 53.80892384370499, 53.864471803645856, 53.864471803645856, 53.82556698019878, 53.80915072481978, 53.864471803645856, 53.845303866200666, 53.80892746585745, 53.80909221822267, 53.80890241146502, 53.82556698019878, 53.864471803645856, 53.80915072481978, 53.80896520272324, 54.020849005752474, 53.82556698019878, 53.845303866200666, 53.80903972625709, 54.020847759299066, 53.52971923996491, 54.020746549558325 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.69154687135671, 14.630604108154332, 14.69154687135671, 14.339652967059697, 14.52046647228947, 14.630780570299253, 13.825501744421523, 14.33978531324949, 14.52046647228947, 13.825501744421523, 14.52046647228947, 14.33973774800166, 14.52046647228947, 14.728603318193455, 14.52046647228947, 14.728650838545583, 14.630604108154332, 13.824118967817144, 14.52046647228947, 14.618480742664287, 14.630780570299253, 13.824118967817144, 13.825501744421523, 14.339754867144269, 13.825501744421523, 14.728603318193455, 14.339950759070799, 13.7785198325034, 14.33978531324949, 13.825501744421523, 13.825501744421523, 14.52046647228947, 14.339825653017522, 13.825501744421523, 13.824118967817144, 14.339827351797773, 14.339735499061648, 14.339950759070799, 14.52046647228947, 13.825501744421523, 14.339825653017522, 14.339689073546207, 14.728603318193455, 14.52046647228947, 13.824118967817144, 14.339912750386873, 14.728650838545583, 14.630780570299253, 14.728456965919694 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-22 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-23 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6654, 6683, 6707, 6689, 6673, 6661, 6682, 6694, 6689, 6674, 6655, 6689, 6682, 6673, 6689, 6682, 6654, 6676, 6693, 6654, 6694, 6689, 6702, 6658, 6676, 6694, 6689, 6702, 6666, 6654, 6654, 6659, 6654, 6694, 6654, 6706, 6688, 6655, 6680, 6706, 6689, 6654, 6678, 6689, 6658, 6699, 6661, 6661, 6689 ], "ids": [ 6654, 6654, 6683, 6707, 6689, 6673, 6661, 6682, 6694, 6689, 6674, 6655, 6689, 6682, 6673, 6689, 6682, 6654, 6676, 6693, 6654, 6694, 6689, 6702, 6658, 6676, 6694, 6689, 6702, 6666, 6654, 6654, 6659, 6654, 6694, 6654, 6706, 6688, 6655, 6680, 6706, 6689, 6654, 6678, 6689, 6658, 6699, 6661, 6661, 6689 ], "lat": [ 53.826258725316194, 53.826258725316194, 53.80901818337243, 53.80902089070886, 53.864471803645856, 53.80890241146502, 54.020849005752474, 53.52971923996491, 53.845303866200666, 53.864471803645856, 53.80903972625709, 53.80892384370499, 53.864471803645856, 53.52971923996491, 53.80890241146502, 53.864471803645856, 53.52971923996491, 53.826258725316194, 54.020847759299066, 54.22725596601593, 53.826258725316194, 53.845303866200666, 53.864471803645856, 53.95652923329744, 53.5296490438886, 54.020847759299066, 53.845303866200666, 53.864471803645856, 53.95652923329744, 53.809076375885944, 53.826258725316194, 53.826258725316194, 53.80896520272324, 53.826258725316194, 53.845303866200666, 53.826258725316194, 53.80915072481978, 53.80909221822267, 53.80892384370499, 54.020746549558325, 53.80915072481978, 53.864471803645856, 53.826258725316194, 53.83465312047732, 53.864471803645856, 53.5296490438886, 53.80892746585745, 54.020849005752474, 54.020849005752474, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.528002824232239, 14.528002824232239, 14.33973774800166, 14.339754867144269, 13.825501744421523, 14.339950759070799, 14.728603318193455, 14.630780570299253, 13.824118967817144, 13.825501744421523, 14.339912750386873, 14.33978531324949, 13.825501744421523, 14.630780570299253, 14.339950759070799, 13.825501744421523, 14.630780570299253, 14.528002824232239, 14.728650838545583, 13.7785198325034, 14.528002824232239, 13.824118967817144, 13.825501744421523, 14.690570204228054, 14.630604108154332, 14.728650838545583, 13.824118967817144, 13.825501744421523, 14.690570204228054, 14.339652967059697, 14.528002824232239, 14.528002824232239, 14.339689073546207, 14.528002824232239, 13.824118967817144, 14.528002824232239, 14.339825653017522, 14.339735499061648, 14.33978531324949, 14.728456965919694, 14.339825653017522, 13.825501744421523, 14.528002824232239, 14.618480742664287, 13.825501744421523, 14.630604108154332, 14.339827351797773, 14.728603318193455, 14.728603318193455, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-23 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-24 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6694, 6655, 6689, 6689, 6673, 6655, 6654, 6683, 6654, 6673, 6654, 6699, 6706, 6688, 6676, 6654, 6702, 6702, 6689, 6666, 6654, 6654, 6658, 6689, 6689, 6661, 6682, 6693, 6689, 6654, 6654, 6661, 6678, 6674, 6659, 6680, 6706, 6682, 6661, 6694, 6694, 6689, 6654, 6707, 6694, 6676, 6689, 6658, 6689, 6682 ], "ids": [ 6694, 6655, 6689, 6689, 6673, 6655, 6654, 6683, 6654, 6673, 6654, 6699, 6706, 6688, 6676, 6654, 6702, 6702, 6689, 6666, 6654, 6654, 6658, 6689, 6689, 6661, 6682, 6693, 6689, 6654, 6654, 6661, 6678, 6674, 6659, 6680, 6706, 6682, 6661, 6694, 6694, 6689, 6654, 6707, 6694, 6676, 6689, 6658, 6689, 6682 ], "lat": [ 53.845303866200666, 53.80892384370499, 53.864471803645856, 53.864471803645856, 53.80890241146502, 53.80892384370499, 53.82695047043361, 53.80901818337243, 53.82695047043361, 53.80890241146502, 53.82695047043361, 53.80892746585745, 53.80915072481978, 53.80909221822267, 54.020847759299066, 53.82695047043361, 53.95488249483869, 53.95488249483869, 53.864471803645856, 53.809076375885944, 53.82695047043361, 53.82695047043361, 53.5296490438886, 53.864471803645856, 53.864471803645856, 54.020849005752474, 53.52971923996491, 54.22725596601593, 53.864471803645856, 53.82695047043361, 53.82695047043361, 54.020849005752474, 53.83465312047732, 53.80903972625709, 53.80896520272324, 54.020746549558325, 53.80915072481978, 53.52971923996491, 54.020849005752474, 53.845303866200666, 53.845303866200666, 53.864471803645856, 53.82695047043361, 53.80902089070886, 53.845303866200666, 54.020847759299066, 53.864471803645856, 53.5296490438886, 53.864471803645856, 53.52971923996491 ], "legendgroup": "", "lon": [ 13.824118967817144, 14.33978531324949, 13.825501744421523, 13.825501744421523, 14.339950759070799, 14.33978531324949, 14.535539176175007, 14.33973774800166, 14.535539176175007, 14.339950759070799, 14.535539176175007, 14.339827351797773, 14.339825653017522, 14.339735499061648, 14.728650838545583, 14.535539176175007, 14.689593537099396, 14.689593537099396, 13.825501744421523, 14.339652967059697, 14.535539176175007, 14.535539176175007, 14.630604108154332, 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.630780570299253, 13.7785198325034, 13.825501744421523, 14.535539176175007, 14.535539176175007, 14.728603318193455, 14.618480742664287, 14.339912750386873, 14.339689073546207, 14.728456965919694, 14.339825653017522, 14.630780570299253, 14.728603318193455, 13.824118967817144, 13.824118967817144, 13.825501744421523, 14.535539176175007, 14.339754867144269, 13.824118967817144, 14.728650838545583, 13.825501744421523, 14.630604108154332, 13.825501744421523, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-24 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-25 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6683, 6654, 6689, 6694, 6702, 6682, 6666, 6654, 6658, 6661, 6674, 6689, 6678, 6654, 6654, 6689, 6680, 6694, 6689, 6707, 6693, 6676, 6689, 6654, 6655, 6689, 6702, 6654, 6694, 6689, 6661, 6689, 6655, 6654, 6659, 6699, 6682, 6689, 6706, 6673, 6706, 6661, 6658, 6676, 6673, 6682, 6654, 6694, 6688 ], "ids": [ 6654, 6683, 6654, 6689, 6694, 6702, 6682, 6666, 6654, 6658, 6661, 6674, 6689, 6678, 6654, 6654, 6689, 6680, 6694, 6689, 6707, 6693, 6676, 6689, 6654, 6655, 6689, 6702, 6654, 6694, 6689, 6661, 6689, 6655, 6654, 6659, 6699, 6682, 6689, 6706, 6673, 6706, 6661, 6658, 6676, 6673, 6682, 6654, 6694, 6688 ], "lat": [ 53.827642215551016, 53.80901818337243, 53.827642215551016, 53.864471803645856, 53.845303866200666, 53.953235756379954, 53.52971923996491, 53.809076375885944, 53.827642215551016, 53.5296490438886, 54.020849005752474, 53.80903972625709, 53.864471803645856, 53.83465312047732, 53.827642215551016, 53.827642215551016, 53.864471803645856, 54.020746549558325, 53.845303866200666, 53.864471803645856, 53.80902089070886, 54.22725596601593, 54.020847759299066, 53.864471803645856, 53.827642215551016, 53.80892384370499, 53.864471803645856, 53.953235756379954, 53.827642215551016, 53.845303866200666, 53.864471803645856, 54.020849005752474, 53.864471803645856, 53.80892384370499, 53.827642215551016, 53.80896520272324, 53.80892746585745, 53.52971923996491, 53.864471803645856, 53.80915072481978, 53.80890241146502, 53.80915072481978, 54.020849005752474, 53.5296490438886, 54.020847759299066, 53.80890241146502, 53.52971923996491, 53.827642215551016, 53.845303866200666, 53.80909221822267 ], "legendgroup": "", "lon": [ 14.543075528117775, 14.33973774800166, 14.543075528117775, 13.825501744421523, 13.824118967817144, 14.68861686997074, 14.630780570299253, 14.339652967059697, 14.543075528117775, 14.630604108154332, 14.728603318193455, 14.339912750386873, 13.825501744421523, 14.618480742664287, 14.543075528117775, 14.543075528117775, 13.825501744421523, 14.728456965919694, 13.824118967817144, 13.825501744421523, 14.339754867144269, 13.7785198325034, 14.728650838545583, 13.825501744421523, 14.543075528117775, 14.33978531324949, 13.825501744421523, 14.68861686997074, 14.543075528117775, 13.824118967817144, 13.825501744421523, 14.728603318193455, 13.825501744421523, 14.33978531324949, 14.543075528117775, 14.339689073546207, 14.339827351797773, 14.630780570299253, 13.825501744421523, 14.339825653017522, 14.339950759070799, 14.339825653017522, 14.728603318193455, 14.630604108154332, 14.728650838545583, 14.339950759070799, 14.630780570299253, 14.543075528117775, 13.824118967817144, 14.339735499061648 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-25 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-26 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6659, 6658, 6688, 6694, 6707, 6654, 6654, 6674, 6689, 6654, 6702, 6654, 6694, 6654, 6699, 6676, 6658, 6682, 6702, 6666, 6706, 6654, 6673, 6661, 6654, 6706, 6654, 6689, 6689, 6678, 6661, 6655, 6689, 6680, 6683, 6673, 6694, 6682, 6694, 6654, 6689, 6661, 6689, 6693, 6676, 6689, 6689, 6689, 6655, 6682 ], "ids": [ 6659, 6658, 6688, 6694, 6707, 6654, 6654, 6674, 6689, 6654, 6702, 6654, 6694, 6654, 6699, 6676, 6658, 6682, 6702, 6666, 6706, 6654, 6673, 6661, 6654, 6706, 6654, 6689, 6689, 6678, 6661, 6655, 6689, 6680, 6683, 6673, 6694, 6682, 6694, 6654, 6689, 6661, 6689, 6693, 6676, 6689, 6689, 6689, 6655, 6682 ], "lat": [ 53.80896520272324, 53.5296490438886, 53.80909221822267, 53.845303866200666, 53.80902089070886, 53.82833396066843, 53.82833396066843, 53.80903972625709, 53.864471803645856, 53.82833396066843, 53.95158901792121, 53.82833396066843, 53.845303866200666, 53.82833396066843, 53.80892746585745, 54.020847759299066, 53.5296490438886, 53.52971923996491, 53.95158901792121, 53.809076375885944, 53.80915072481978, 53.82833396066843, 53.80890241146502, 54.020849005752474, 53.82833396066843, 53.80915072481978, 53.82833396066843, 53.864471803645856, 53.864471803645856, 53.83465312047732, 54.020849005752474, 53.80892384370499, 53.864471803645856, 54.020746549558325, 53.80901818337243, 53.80890241146502, 53.845303866200666, 53.52971923996491, 53.845303866200666, 53.82833396066843, 53.864471803645856, 54.020849005752474, 53.864471803645856, 54.22725596601593, 54.020847759299066, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.52971923996491 ], "legendgroup": "", "lon": [ 14.339689073546207, 14.630604108154332, 14.339735499061648, 13.824118967817144, 14.339754867144269, 14.550611880060544, 14.550611880060544, 14.339912750386873, 13.825501744421523, 14.550611880060544, 14.687640202842084, 14.550611880060544, 13.824118967817144, 14.550611880060544, 14.339827351797773, 14.728650838545583, 14.630604108154332, 14.630780570299253, 14.687640202842084, 14.339652967059697, 14.339825653017522, 14.550611880060544, 14.339950759070799, 14.728603318193455, 14.550611880060544, 14.339825653017522, 14.550611880060544, 13.825501744421523, 13.825501744421523, 14.618480742664287, 14.728603318193455, 14.33978531324949, 13.825501744421523, 14.728456965919694, 14.33973774800166, 14.339950759070799, 13.824118967817144, 14.630780570299253, 13.824118967817144, 14.550611880060544, 13.825501744421523, 14.728603318193455, 13.825501744421523, 13.7785198325034, 14.728650838545583, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.33978531324949, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-26 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-27 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6661, 6673, 6658, 6682, 6654, 6688, 6689, 6676, 6661, 6654, 6683, 6658, 6706, 6673, 6702, 6654, 6655, 6666, 6694, 6674, 6689, 6654, 6694, 6689, 6654, 6689, 6706, 6682, 6659, 6689, 6676, 6680, 6707, 6693, 6689, 6689, 6654, 6689, 6694, 6661, 6682, 6702, 6699, 6678, 6655, 6694, 6654, 6689, 6654 ], "ids": [ 6654, 6661, 6673, 6658, 6682, 6654, 6688, 6689, 6676, 6661, 6654, 6683, 6658, 6706, 6673, 6702, 6654, 6655, 6666, 6694, 6674, 6689, 6654, 6694, 6689, 6654, 6689, 6706, 6682, 6659, 6689, 6676, 6680, 6707, 6693, 6689, 6689, 6654, 6689, 6694, 6661, 6682, 6702, 6699, 6678, 6655, 6694, 6654, 6689, 6654 ], "lat": [ 53.829025705785845, 54.020849005752474, 53.80890241146502, 53.5296490438886, 53.52971923996491, 53.829025705785845, 53.80909221822267, 53.864471803645856, 54.020847759299066, 54.020849005752474, 53.829025705785845, 53.80901818337243, 53.5296490438886, 53.80915072481978, 53.80890241146502, 53.94994227946246, 53.829025705785845, 53.80892384370499, 53.809076375885944, 53.845303866200666, 53.80903972625709, 53.864471803645856, 53.829025705785845, 53.845303866200666, 53.864471803645856, 53.829025705785845, 53.864471803645856, 53.80915072481978, 53.52971923996491, 53.80896520272324, 53.864471803645856, 54.020847759299066, 54.020746549558325, 53.80902089070886, 54.22725596601593, 53.864471803645856, 53.864471803645856, 53.829025705785845, 53.864471803645856, 53.845303866200666, 54.020849005752474, 53.52971923996491, 53.94994227946246, 53.80892746585745, 53.83465312047732, 53.80892384370499, 53.845303866200666, 53.829025705785845, 53.864471803645856, 53.829025705785845 ], "legendgroup": "", "lon": [ 14.558148232003312, 14.728603318193455, 14.339950759070799, 14.630604108154332, 14.630780570299253, 14.558148232003312, 14.339735499061648, 13.825501744421523, 14.728650838545583, 14.728603318193455, 14.558148232003312, 14.33973774800166, 14.630604108154332, 14.339825653017522, 14.339950759070799, 14.686663535713429, 14.558148232003312, 14.33978531324949, 14.339652967059697, 13.824118967817144, 14.339912750386873, 13.825501744421523, 14.558148232003312, 13.824118967817144, 13.825501744421523, 14.558148232003312, 13.825501744421523, 14.339825653017522, 14.630780570299253, 14.339689073546207, 13.825501744421523, 14.728650838545583, 14.728456965919694, 14.339754867144269, 13.7785198325034, 13.825501744421523, 13.825501744421523, 14.558148232003312, 13.825501744421523, 13.824118967817144, 14.728603318193455, 14.630780570299253, 14.686663535713429, 14.339827351797773, 14.618480742664287, 14.33978531324949, 13.824118967817144, 14.558148232003312, 13.825501744421523, 14.558148232003312 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-27 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-28 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6676, 6654, 6654, 6706, 6682, 6674, 6706, 6689, 6689, 6673, 6694, 6673, 6655, 6699, 6659, 6658, 6680, 6702, 6688, 6689, 6661, 6689, 6654, 6682, 6682, 6689, 6655, 6678, 6661, 6702, 6658, 6694, 6693, 6654, 6689, 6689, 6689, 6676, 6654, 6654, 6707, 6654, 6689, 6661, 6694, 6694, 6654, 6666, 6654, 6683 ], "ids": [ 6676, 6654, 6654, 6706, 6682, 6674, 6706, 6689, 6689, 6673, 6694, 6673, 6655, 6699, 6659, 6658, 6680, 6702, 6688, 6689, 6661, 6689, 6654, 6682, 6682, 6689, 6655, 6678, 6661, 6702, 6658, 6694, 6693, 6654, 6689, 6689, 6689, 6676, 6654, 6654, 6707, 6654, 6689, 6661, 6694, 6694, 6654, 6666, 6654, 6683 ], "lat": [ 54.020847759299066, 53.82971745090325, 53.82971745090325, 53.80915072481978, 53.52971923996491, 53.80903972625709, 53.80915072481978, 53.864471803645856, 53.864471803645856, 53.80890241146502, 53.845303866200666, 53.80890241146502, 53.80892384370499, 53.80892746585745, 53.80896520272324, 53.5296490438886, 54.020746549558325, 53.94829554100372, 53.80909221822267, 53.864471803645856, 54.020849005752474, 53.864471803645856, 53.82971745090325, 53.52971923996491, 53.52971923996491, 53.864471803645856, 53.80892384370499, 53.83465312047732, 54.020849005752474, 53.94829554100372, 53.5296490438886, 53.845303866200666, 54.22725596601593, 53.82971745090325, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.020847759299066, 53.82971745090325, 53.82971745090325, 53.80902089070886, 53.82971745090325, 53.864471803645856, 54.020849005752474, 53.845303866200666, 53.845303866200666, 53.82971745090325, 53.809076375885944, 53.82971745090325, 53.80901818337243 ], "legendgroup": "", "lon": [ 14.728650838545583, 14.56568458394608, 14.56568458394608, 14.339825653017522, 14.630780570299253, 14.339912750386873, 14.339825653017522, 13.825501744421523, 13.825501744421523, 14.339950759070799, 13.824118967817144, 14.339950759070799, 14.33978531324949, 14.339827351797773, 14.339689073546207, 14.630604108154332, 14.728456965919694, 14.68568686858477, 14.339735499061648, 13.825501744421523, 14.728603318193455, 13.825501744421523, 14.56568458394608, 14.630780570299253, 14.630780570299253, 13.825501744421523, 14.33978531324949, 14.618480742664287, 14.728603318193455, 14.68568686858477, 14.630604108154332, 13.824118967817144, 13.7785198325034, 14.56568458394608, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.56568458394608, 14.56568458394608, 14.339754867144269, 14.56568458394608, 13.825501744421523, 14.728603318193455, 13.824118967817144, 13.824118967817144, 14.56568458394608, 14.339652967059697, 14.56568458394608, 14.33973774800166 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-28 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-29 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6682, 6676, 6689, 6702, 6689, 6655, 6664, 6659, 6689, 6655, 6661, 6694, 6654, 6680, 6654, 6689, 6654, 6689, 6654, 6654, 6707, 6674, 6699, 6689, 6689, 6678, 6661, 6683, 6654, 6688, 6702, 6658, 6664, 6694, 6666, 6673, 6667, 6694, 6654, 6654, 6689, 6694, 6706, 6676, 6664, 6673, 6682, 6706, 6693, 6682, 6654, 6658, 6689 ], "ids": [ 6661, 6682, 6676, 6689, 6702, 6689, 6655, 6664, 6659, 6689, 6655, 6661, 6694, 6654, 6680, 6654, 6689, 6654, 6689, 6654, 6654, 6707, 6674, 6699, 6689, 6689, 6678, 6661, 6683, 6654, 6688, 6702, 6658, 6664, 6694, 6666, 6673, 6667, 6694, 6654, 6654, 6689, 6694, 6706, 6676, 6664, 6673, 6682, 6706, 6693, 6682, 6654, 6658, 6689 ], "lat": [ 54.020849005752474, 53.52971923996491, 54.020847759299066, 53.864471803645856, 53.94664880254498, 53.864471803645856, 53.80892384370499, 53.80912468658252, 53.80896520272324, 53.864471803645856, 53.80892384370499, 54.020849005752474, 53.845303866200666, 53.83040919602067, 54.020746549558325, 53.83040919602067, 53.864471803645856, 53.83040919602067, 53.864471803645856, 53.83040919602067, 53.83040919602067, 53.80902089070886, 53.80903972625709, 53.80892746585745, 53.864471803645856, 53.864471803645856, 53.83465312047732, 54.020849005752474, 53.80901818337243, 53.83040919602067, 53.80909221822267, 53.94664880254498, 53.5296490438886, 53.80912468658252, 53.845303866200666, 53.809076375885944, 53.80890241146502, 54.02096962344496, 53.845303866200666, 53.83040919602067, 53.83040919602067, 53.864471803645856, 53.845303866200666, 53.80915072481978, 54.020847759299066, 53.80912468658252, 53.80890241146502, 53.52971923996491, 53.80915072481978, 54.22725596601593, 53.52971923996491, 53.83040919602067, 53.5296490438886, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.630780570299253, 14.728650838545583, 13.825501744421523, 14.684710201456115, 13.825501744421523, 14.33978531324949, 14.33982055741741, 14.339689073546207, 13.825501744421523, 14.33978531324949, 14.728603318193455, 13.824118967817144, 14.573220935888848, 14.728456965919694, 14.573220935888848, 13.825501744421523, 14.573220935888848, 13.825501744421523, 14.573220935888848, 14.573220935888848, 14.339754867144269, 14.339912750386873, 14.339827351797773, 13.825501744421523, 13.825501744421523, 14.618480742664287, 14.728603318193455, 14.33973774800166, 14.573220935888848, 14.339735499061648, 14.684710201456115, 14.630604108154332, 14.33982055741741, 13.824118967817144, 14.339652967059697, 14.339950759070799, 14.728602599451175, 13.824118967817144, 14.573220935888848, 14.573220935888848, 13.825501744421523, 13.824118967817144, 14.339825653017522, 14.728650838545583, 14.33982055741741, 14.339950759070799, 14.630780570299253, 14.339825653017522, 13.7785198325034, 14.630780570299253, 14.573220935888848, 14.630604108154332, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-29 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-30 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6655, 6682, 6654, 6680, 6661, 6664, 6673, 6682, 6689, 6702, 6661, 6683, 6659, 6674, 6694, 6654, 6666, 6689, 6682, 6658, 6707, 6689, 6689, 6676, 6654, 6689, 6655, 6678, 6702, 6667, 6689, 6654, 6694, 6654, 6664, 6689, 6694, 6689, 6694, 6664, 6693, 6654, 6699, 6706, 6654, 6689, 6698, 6654, 6673, 6658, 6654, 6676, 6688, 6706 ], "ids": [ 6661, 6655, 6682, 6654, 6680, 6661, 6664, 6673, 6682, 6689, 6702, 6661, 6683, 6659, 6674, 6694, 6654, 6666, 6689, 6682, 6658, 6707, 6689, 6689, 6676, 6654, 6689, 6655, 6678, 6702, 6667, 6689, 6654, 6694, 6654, 6664, 6689, 6694, 6689, 6694, 6664, 6693, 6654, 6699, 6706, 6654, 6689, 6698, 6654, 6673, 6658, 6654, 6676, 6688, 6706 ], "lat": [ 54.020849005752474, 53.80892384370499, 53.52971923996491, 53.83110094113808, 54.020746549558325, 54.020849005752474, 53.799217210601626, 53.80890241146502, 53.52971923996491, 53.864471803645856, 53.94500206408624, 54.020849005752474, 53.80901818337243, 53.80896520272324, 53.80903972625709, 53.845303866200666, 53.83110094113808, 53.809076375885944, 53.864471803645856, 53.52971923996491, 53.5296490438886, 53.80902089070886, 53.864471803645856, 53.864471803645856, 54.020847759299066, 53.83110094113808, 53.864471803645856, 53.80892384370499, 53.83465312047732, 53.94500206408624, 54.02096962344496, 53.864471803645856, 53.83110094113808, 53.845303866200666, 53.83110094113808, 53.799217210601626, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.845303866200666, 53.799217210601626, 54.22725596601593, 53.83110094113808, 53.80892746585745, 53.80915072481978, 53.83110094113808, 53.864471803645856, 54.021059534496196, 53.83110094113808, 53.80890241146502, 53.5296490438886, 53.83110094113808, 54.020847759299066, 53.80909221822267, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.33978531324949, 14.630780570299253, 14.580757287831617, 14.728456965919694, 14.728603318193455, 14.350065358346777, 14.339950759070799, 14.630780570299253, 13.825501744421523, 14.683733534327459, 14.728603318193455, 14.33973774800166, 14.339689073546207, 14.339912750386873, 13.824118967817144, 14.580757287831617, 14.339652967059697, 13.825501744421523, 14.630780570299253, 14.630604108154332, 14.339754867144269, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.580757287831617, 13.825501744421523, 14.33978531324949, 14.618480742664287, 14.683733534327459, 14.728602599451175, 13.825501744421523, 14.580757287831617, 13.824118967817144, 14.580757287831617, 14.350065358346777, 13.825501744421523, 13.824118967817144, 13.825501744421523, 13.824118967817144, 14.350065358346777, 13.7785198325034, 14.580757287831617, 14.339827351797773, 14.339825653017522, 14.580757287831617, 13.825501744421523, 14.728615266067688, 14.580757287831617, 14.339950759070799, 14.630604108154332, 14.580757287831617, 14.728650838545583, 14.339735499061648, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-30 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2022-12-31 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6655, 6689, 6689, 6689, 6698, 6674, 6667, 6659, 6694, 6664, 6706, 6676, 6682, 6661, 6658, 6654, 6689, 6694, 6664, 6661, 6694, 6694, 6655, 6689, 6682, 6707, 6654, 6673, 6664, 6658, 6673, 6689, 6688, 6702, 6676, 6678, 6702, 6654, 6706, 6654, 6654, 6699, 6654, 6689, 6682, 6693, 6683, 6654, 6654, 6661, 6680, 6689, 6654, 6666 ], "ids": [ 6689, 6655, 6689, 6689, 6689, 6698, 6674, 6667, 6659, 6694, 6664, 6706, 6676, 6682, 6661, 6658, 6654, 6689, 6694, 6664, 6661, 6694, 6694, 6655, 6689, 6682, 6707, 6654, 6673, 6664, 6658, 6673, 6689, 6688, 6702, 6676, 6678, 6702, 6654, 6706, 6654, 6654, 6699, 6654, 6689, 6682, 6693, 6683, 6654, 6654, 6661, 6680, 6689, 6654, 6666 ], "lat": [ 53.864471803645856, 53.80892384370499, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.021059534496196, 53.80903972625709, 54.02096962344496, 53.80896520272324, 53.845303866200666, 53.78930973462072, 53.80915072481978, 54.020847759299066, 53.52971923996491, 54.020849005752474, 53.5296490438886, 53.83179268625549, 53.864471803645856, 53.845303866200666, 53.78930973462072, 54.020849005752474, 53.845303866200666, 53.845303866200666, 53.80892384370499, 53.864471803645856, 53.52971923996491, 53.80902089070886, 53.83179268625549, 53.80890241146502, 53.78930973462072, 53.5296490438886, 53.80890241146502, 53.864471803645856, 53.80909221822267, 53.94335532562749, 54.020847759299066, 53.83465312047732, 53.94335532562749, 53.83179268625549, 53.80915072481978, 53.83179268625549, 53.83179268625549, 53.80892746585745, 53.83179268625549, 53.864471803645856, 53.52971923996491, 54.22725596601593, 53.80901818337243, 53.83179268625549, 53.83179268625549, 54.020849005752474, 54.020746549558325, 53.864471803645856, 53.83179268625549, 53.809076375885944 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.33978531324949, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.728615266067688, 14.339912750386873, 14.728602599451175, 14.339689073546207, 13.824118967817144, 14.360310159276144, 14.339825653017522, 14.728650838545583, 14.630780570299253, 14.728603318193455, 14.630604108154332, 14.588293639774387, 13.825501744421523, 13.824118967817144, 14.360310159276144, 14.728603318193455, 13.824118967817144, 13.824118967817144, 14.33978531324949, 13.825501744421523, 14.630780570299253, 14.339754867144269, 14.588293639774387, 14.339950759070799, 14.360310159276144, 14.630604108154332, 14.339950759070799, 13.825501744421523, 14.339735499061648, 14.682756867198803, 14.728650838545583, 14.618480742664287, 14.682756867198803, 14.588293639774387, 14.339825653017522, 14.588293639774387, 14.588293639774387, 14.339827351797773, 14.588293639774387, 13.825501744421523, 14.630780570299253, 13.7785198325034, 14.33973774800166, 14.588293639774387, 14.588293639774387, 14.728603318193455, 14.728456965919694, 13.825501744421523, 14.588293639774387, 14.339652967059697 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2022-12-31 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-01 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6706, 6658, 6706, 6702, 6680, 6682, 6694, 6654, 6689, 6654, 6664, 6654, 6699, 6674, 6661, 6693, 6666, 6654, 6683, 6689, 6698, 6673, 6689, 6689, 6654, 6689, 6654, 6689, 6682, 6689, 6667, 6702, 6678, 6658, 6655, 6694, 6655, 6689, 6694, 6707, 6664, 6661, 6694, 6673, 6654, 6682, 6661, 6659, 6689, 6676, 6654, 6688, 6676, 6664, 6654 ], "ids": [ 6706, 6658, 6706, 6702, 6680, 6682, 6694, 6654, 6689, 6654, 6664, 6654, 6699, 6674, 6661, 6693, 6666, 6654, 6683, 6689, 6698, 6673, 6689, 6689, 6654, 6689, 6654, 6689, 6682, 6689, 6667, 6702, 6678, 6658, 6655, 6694, 6655, 6689, 6694, 6707, 6664, 6661, 6694, 6673, 6654, 6682, 6661, 6659, 6689, 6676, 6654, 6688, 6676, 6664, 6654 ], "lat": [ 53.80915072481978, 53.5296490438886, 53.80915072481978, 53.941708587168755, 54.020746549558325, 53.52971923996491, 53.845303866200666, 53.832484431372905, 53.864471803645856, 53.832484431372905, 53.77940225863982, 53.832484431372905, 53.80892746585745, 53.80903972625709, 54.020849005752474, 54.22725596601593, 53.809076375885944, 53.832484431372905, 53.80901818337243, 53.864471803645856, 54.021059534496196, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.832484431372905, 53.864471803645856, 53.832484431372905, 53.864471803645856, 53.52971923996491, 53.864471803645856, 54.02096962344496, 53.941708587168755, 53.83465312047732, 53.5296490438886, 53.80892384370499, 53.845303866200666, 53.80892384370499, 53.864471803645856, 53.845303866200666, 53.80902089070886, 53.77940225863982, 54.020849005752474, 53.845303866200666, 53.80890241146502, 53.832484431372905, 53.52971923996491, 54.020849005752474, 53.80896520272324, 53.864471803645856, 54.020847759299066, 53.832484431372905, 53.80909221822267, 54.020847759299066, 53.77940225863982, 53.832484431372905 ], "legendgroup": "", "lon": [ 14.339825653017522, 14.630604108154332, 14.339825653017522, 14.681780200070145, 14.728456965919694, 14.630780570299253, 13.824118967817144, 14.595829991717155, 13.825501744421523, 14.595829991717155, 14.370554960205512, 14.595829991717155, 14.339827351797773, 14.339912750386873, 14.728603318193455, 13.7785198325034, 14.339652967059697, 14.595829991717155, 14.33973774800166, 13.825501744421523, 14.728615266067688, 14.339950759070799, 13.825501744421523, 13.825501744421523, 14.595829991717155, 13.825501744421523, 14.595829991717155, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.728602599451175, 14.681780200070145, 14.618480742664287, 14.630604108154332, 14.33978531324949, 13.824118967817144, 14.33978531324949, 13.825501744421523, 13.824118967817144, 14.339754867144269, 14.370554960205512, 14.728603318193455, 13.824118967817144, 14.339950759070799, 14.595829991717155, 14.630780570299253, 14.728603318193455, 14.339689073546207, 13.825501744421523, 14.728650838545583, 14.595829991717155, 14.339735499061648, 14.728650838545583, 14.370554960205512, 14.595829991717155 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-01 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-02 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6673, 6688, 6654, 6689, 6683, 6706, 6661, 6654, 6658, 6699, 6689, 6654, 6689, 6682, 6680, 6654, 6661, 6655, 6661, 6689, 6698, 6654, 6689, 6689, 6706, 6676, 6694, 6654, 6666, 6654, 6694, 6674, 6664, 6676, 6658, 6689, 6678, 6659, 6694, 6689, 6702, 6664, 6702, 6693, 6673, 6654, 6654, 6682, 6694, 6664, 6655, 6707, 6667, 6689, 6682 ], "ids": [ 6673, 6688, 6654, 6689, 6683, 6706, 6661, 6654, 6658, 6699, 6689, 6654, 6689, 6682, 6680, 6654, 6661, 6655, 6661, 6689, 6698, 6654, 6689, 6689, 6706, 6676, 6694, 6654, 6666, 6654, 6694, 6674, 6664, 6676, 6658, 6689, 6678, 6659, 6694, 6689, 6702, 6664, 6702, 6693, 6673, 6654, 6654, 6682, 6694, 6664, 6655, 6707, 6667, 6689, 6682 ], "lat": [ 53.80890241146502, 53.80909221822267, 53.83317617649032, 53.864471803645856, 53.80901818337243, 53.80915072481978, 54.020849005752474, 53.83317617649032, 53.5296490438886, 53.80892746585745, 53.864471803645856, 53.83317617649032, 53.864471803645856, 53.52971923996491, 54.020746549558325, 53.83317617649032, 54.020849005752474, 53.80892384370499, 54.020849005752474, 53.864471803645856, 54.021059534496196, 53.83317617649032, 53.864471803645856, 53.864471803645856, 53.80915072481978, 54.020847759299066, 53.845303866200666, 53.83317617649032, 53.809076375885944, 53.83317617649032, 53.845303866200666, 53.80903972625709, 53.769494782658924, 54.020847759299066, 53.5296490438886, 53.864471803645856, 53.83465312047732, 53.80896520272324, 53.845303866200666, 53.864471803645856, 53.94006184871001, 53.769494782658924, 53.94006184871001, 54.22725596601593, 53.80890241146502, 53.83317617649032, 53.83317617649032, 53.52971923996491, 53.845303866200666, 53.769494782658924, 53.80892384370499, 53.80902089070886, 54.02096962344496, 53.864471803645856, 53.52971923996491 ], "legendgroup": "", "lon": [ 14.339950759070799, 14.339735499061648, 14.603366343659923, 13.825501744421523, 14.33973774800166, 14.339825653017522, 14.728603318193455, 14.603366343659923, 14.630604108154332, 14.339827351797773, 13.825501744421523, 14.603366343659923, 13.825501744421523, 14.630780570299253, 14.728456965919694, 14.603366343659923, 14.728603318193455, 14.33978531324949, 14.728603318193455, 13.825501744421523, 14.728615266067688, 14.603366343659923, 13.825501744421523, 13.825501744421523, 14.339825653017522, 14.728650838545583, 13.824118967817144, 14.603366343659923, 14.339652967059697, 14.603366343659923, 13.824118967817144, 14.339912750386873, 14.38079976113488, 14.728650838545583, 14.630604108154332, 13.825501744421523, 14.618480742664287, 14.339689073546207, 13.824118967817144, 13.825501744421523, 14.68080353294149, 14.38079976113488, 14.68080353294149, 13.7785198325034, 14.339950759070799, 14.603366343659923, 14.603366343659923, 14.630780570299253, 13.824118967817144, 14.38079976113488, 14.33978531324949, 14.339754867144269, 14.728602599451175, 13.825501744421523, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-02 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-03 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6673, 6693, 6664, 6661, 6682, 6688, 6666, 6694, 6655, 6689, 6676, 6689, 6702, 6658, 6702, 6655, 6661, 6689, 6654, 6654, 6680, 6678, 6706, 6658, 6682, 6689, 6654, 6689, 6694, 6661, 6654, 6689, 6664, 6694, 6689, 6698, 6674, 6683, 6689, 6654, 6706, 6707, 6659, 6664, 6699, 6654, 6667, 6689, 6676, 6654, 6694, 6654, 6673, 6682 ], "ids": [ 6654, 6673, 6693, 6664, 6661, 6682, 6688, 6666, 6694, 6655, 6689, 6676, 6689, 6702, 6658, 6702, 6655, 6661, 6689, 6654, 6654, 6680, 6678, 6706, 6658, 6682, 6689, 6654, 6689, 6694, 6661, 6654, 6689, 6664, 6694, 6689, 6698, 6674, 6683, 6689, 6654, 6706, 6707, 6659, 6664, 6699, 6654, 6667, 6689, 6676, 6654, 6694, 6654, 6673, 6682 ], "lat": [ 53.83386792160773, 53.80890241146502, 54.22725596601593, 53.75958730667803, 54.020849005752474, 53.52971923996491, 53.80909221822267, 53.809076375885944, 53.845303866200666, 53.80892384370499, 53.864471803645856, 54.020847759299066, 53.864471803645856, 53.93841511025127, 53.5296490438886, 53.93841511025127, 53.80892384370499, 54.020849005752474, 53.864471803645856, 53.83386792160773, 53.83386792160773, 54.020746549558325, 53.83465312047732, 53.80915072481978, 53.5296490438886, 53.52971923996491, 53.864471803645856, 53.83386792160773, 53.864471803645856, 53.845303866200666, 54.020849005752474, 53.83386792160773, 53.864471803645856, 53.75958730667803, 53.845303866200666, 53.864471803645856, 54.021059534496196, 53.80903972625709, 53.80901818337243, 53.864471803645856, 53.83386792160773, 53.80915072481978, 53.80902089070886, 53.80896520272324, 53.75958730667803, 53.80892746585745, 53.83386792160773, 54.02096962344496, 53.864471803645856, 54.020847759299066, 53.83386792160773, 53.845303866200666, 53.83386792160773, 53.80890241146502, 53.52971923996491 ], "legendgroup": "", "lon": [ 14.610902695602691, 14.339950759070799, 13.7785198325034, 14.391044562064247, 14.728603318193455, 14.630780570299253, 14.339735499061648, 14.339652967059697, 13.824118967817144, 14.33978531324949, 13.825501744421523, 14.728650838545583, 13.825501744421523, 14.679826865812833, 14.630604108154332, 14.679826865812833, 14.33978531324949, 14.728603318193455, 13.825501744421523, 14.610902695602691, 14.610902695602691, 14.728456965919694, 14.618480742664287, 14.339825653017522, 14.630604108154332, 14.630780570299253, 13.825501744421523, 14.610902695602691, 13.825501744421523, 13.824118967817144, 14.728603318193455, 14.610902695602691, 13.825501744421523, 14.391044562064247, 13.824118967817144, 13.825501744421523, 14.728615266067688, 14.339912750386873, 14.33973774800166, 13.825501744421523, 14.610902695602691, 14.339825653017522, 14.339754867144269, 14.339689073546207, 14.391044562064247, 14.339827351797773, 14.610902695602691, 14.728602599451175, 13.825501744421523, 14.728650838545583, 14.610902695602691, 13.824118967817144, 14.610902695602691, 14.339950759070799, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-03 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-04 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6654, 6706, 6707, 6676, 6702, 6680, 6659, 6694, 6689, 6654, 6683, 6682, 6694, 6654, 6682, 6654, 6664, 6702, 6676, 6689, 6661, 6678, 6654, 6694, 6689, 6689, 6667, 6664, 6682, 6694, 6674, 6689, 6706, 6654, 6664, 6698, 6666, 6699, 6655, 6673, 6654, 6654, 6658, 6661, 6689, 6658, 6693, 6654, 6689, 6688, 6689, 6689, 6655, 6673 ], "ids": [ 6661, 6654, 6706, 6707, 6676, 6702, 6680, 6659, 6694, 6689, 6654, 6683, 6682, 6694, 6654, 6682, 6654, 6664, 6702, 6676, 6689, 6661, 6678, 6654, 6694, 6689, 6689, 6667, 6664, 6682, 6694, 6674, 6689, 6706, 6654, 6664, 6698, 6666, 6699, 6655, 6673, 6654, 6654, 6658, 6661, 6689, 6658, 6693, 6654, 6689, 6688, 6689, 6689, 6655, 6673 ], "lat": [ 54.020849005752474, 53.83455966672514, 53.80915072481978, 53.80902089070886, 54.020847759299066, 53.936768371792525, 54.020746549558325, 53.80896520272324, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.80901818337243, 53.52971923996491, 53.845303866200666, 53.83455966672514, 53.52971923996491, 53.83455966672514, 53.749679830697126, 53.936768371792525, 54.020847759299066, 53.864471803645856, 54.020849005752474, 53.83465312047732, 53.83455966672514, 53.845303866200666, 53.864471803645856, 53.864471803645856, 54.02096962344496, 53.749679830697126, 53.52971923996491, 53.845303866200666, 53.80903972625709, 53.864471803645856, 53.80915072481978, 53.83455966672514, 53.749679830697126, 54.021059534496196, 53.809076375885944, 53.80892746585745, 53.80892384370499, 53.80890241146502, 53.83455966672514, 53.83455966672514, 53.5296490438886, 54.020849005752474, 53.864471803645856, 53.5296490438886, 54.22725596601593, 53.83455966672514, 53.864471803645856, 53.80909221822267, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.80890241146502 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.61843904754546, 14.339825653017522, 14.339754867144269, 14.728650838545583, 14.678850198684176, 14.728456965919694, 14.339689073546207, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.33973774800166, 14.630780570299253, 13.824118967817144, 14.61843904754546, 14.630780570299253, 14.61843904754546, 14.401289362993614, 14.678850198684176, 14.728650838545583, 13.825501744421523, 14.728603318193455, 14.618480742664287, 14.61843904754546, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.728602599451175, 14.401289362993614, 14.630780570299253, 13.824118967817144, 14.339912750386873, 13.825501744421523, 14.339825653017522, 14.61843904754546, 14.401289362993614, 14.728615266067688, 14.339652967059697, 14.339827351797773, 14.33978531324949, 14.339950759070799, 14.61843904754546, 14.61843904754546, 14.630604108154332, 14.728603318193455, 13.825501744421523, 14.630604108154332, 13.7785198325034, 14.61843904754546, 13.825501744421523, 14.339735499061648, 13.825501744421523, 13.825501744421523, 14.33978531324949, 14.339950759070799 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-04 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-05 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6706, 6659, 6689, 6673, 6698, 6689, 6654, 6654, 6699, 6658, 6688, 6694, 6702, 6694, 6654, 6689, 6661, 6689, 6654, 6689, 6673, 6661, 6655, 6654, 6658, 6654, 6667, 6689, 6705, 6664, 6689, 6654, 6674, 6664, 6694, 6689, 6655, 6666, 6693, 6706, 6664, 6682, 6676, 6689, 6694, 6683, 6654, 6682, 6676, 6682, 6707, 6702, 6654, 6661, 6678, 6680 ], "ids": [ 6706, 6659, 6689, 6673, 6698, 6689, 6654, 6654, 6699, 6658, 6688, 6694, 6702, 6694, 6654, 6689, 6661, 6689, 6654, 6689, 6673, 6661, 6655, 6654, 6658, 6654, 6667, 6689, 6705, 6664, 6689, 6654, 6674, 6664, 6694, 6689, 6655, 6666, 6693, 6706, 6664, 6682, 6676, 6689, 6694, 6683, 6654, 6682, 6676, 6682, 6707, 6702, 6654, 6661, 6678, 6680 ], "lat": [ 53.80915072481978, 53.80896520272324, 53.864471803645856, 53.80890241146502, 54.021059534496196, 53.864471803645856, 53.83455966672514, 53.83455966672514, 53.80892746585745, 53.5296490438886, 53.80909221822267, 53.845303866200666, 53.93512163333378, 53.845303866200666, 53.83455966672514, 53.864471803645856, 54.020849005752474, 53.864471803645856, 53.83455966672514, 53.864471803645856, 53.80890241146502, 54.020849005752474, 53.80892384370499, 53.83455966672514, 53.5296490438886, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.55150694013349, 53.73977235471622, 53.864471803645856, 53.83455966672514, 53.80903972625709, 53.73977235471622, 53.845303866200666, 53.864471803645856, 53.80892384370499, 53.809076375885944, 54.22725596601593, 53.80915072481978, 53.73977235471622, 53.52971923996491, 54.020847759299066, 53.864471803645856, 53.845303866200666, 53.80901818337243, 53.83455966672514, 53.52971923996491, 54.020847759299066, 53.52971923996491, 53.80902089070886, 53.93512163333378, 53.83455966672514, 54.020849005752474, 53.83465312047732, 54.020746549558325 ], "legendgroup": "", "lon": [ 14.339825653017522, 14.339689073546207, 13.825501744421523, 14.339950759070799, 14.728615266067688, 13.825501744421523, 14.61843904754546, 14.61843904754546, 14.339827351797773, 14.630604108154332, 14.339735499061648, 13.824118967817144, 14.67787353155552, 13.824118967817144, 14.61843904754546, 13.825501744421523, 14.728603318193455, 13.825501744421523, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.728603318193455, 14.33978531324949, 14.61843904754546, 14.630604108154332, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.606512208167038, 14.411534163922981, 13.825501744421523, 14.61843904754546, 14.339912750386873, 14.411534163922981, 13.824118967817144, 13.825501744421523, 14.33978531324949, 14.339652967059697, 13.7785198325034, 14.339825653017522, 14.411534163922981, 14.630780570299253, 14.728650838545583, 13.825501744421523, 13.824118967817144, 14.33973774800166, 14.61843904754546, 14.630780570299253, 14.728650838545583, 14.630780570299253, 14.339754867144269, 14.67787353155552, 14.61843904754546, 14.728603318193455, 14.618480742664287, 14.728456965919694 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-05 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-06 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6666, 6661, 6706, 6683, 6694, 6698, 6702, 6654, 6702, 6673, 6705, 6688, 6654, 6664, 6694, 6654, 6689, 6689, 6682, 6676, 6682, 6682, 6654, 6680, 6654, 6678, 6706, 6654, 6693, 6689, 6658, 6661, 6655, 6707, 6689, 6689, 6664, 6664, 6667, 6655, 6674, 6689, 6694, 6689, 6661, 6676, 6699, 6689, 6654, 6659, 6658, 6694, 6689, 6654, 6673 ], "ids": [ 6654, 6666, 6661, 6706, 6683, 6694, 6698, 6702, 6654, 6702, 6673, 6705, 6688, 6654, 6664, 6694, 6654, 6689, 6689, 6682, 6676, 6682, 6682, 6654, 6680, 6654, 6678, 6706, 6654, 6693, 6689, 6658, 6661, 6655, 6707, 6689, 6689, 6664, 6664, 6667, 6655, 6674, 6689, 6694, 6689, 6661, 6676, 6699, 6689, 6654, 6659, 6658, 6694, 6689, 6654, 6673 ], "lat": [ 53.83455966672514, 53.809076375885944, 54.020849005752474, 53.80915072481978, 53.80901818337243, 53.845303866200666, 54.021059534496196, 53.93347489487504, 53.83455966672514, 53.93347489487504, 53.80890241146502, 53.55150694013349, 53.80909221822267, 53.83455966672514, 53.72986487873533, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.52971923996491, 54.020847759299066, 53.52971923996491, 53.52971923996491, 53.83455966672514, 54.020746549558325, 53.83455966672514, 53.83465312047732, 53.80915072481978, 53.83455966672514, 54.22725596601593, 53.864471803645856, 53.5296490438886, 54.020849005752474, 53.80892384370499, 53.80902089070886, 53.864471803645856, 53.864471803645856, 53.72986487873533, 53.72986487873533, 54.02096962344496, 53.80892384370499, 53.80903972625709, 53.864471803645856, 53.845303866200666, 53.864471803645856, 54.020849005752474, 54.020847759299066, 53.80892746585745, 53.864471803645856, 53.83455966672514, 53.80896520272324, 53.5296490438886, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.80890241146502 ], "legendgroup": "", "lon": [ 14.61843904754546, 14.339652967059697, 14.728603318193455, 14.339825653017522, 14.33973774800166, 13.824118967817144, 14.728615266067688, 14.676896864426864, 14.61843904754546, 14.676896864426864, 14.339950759070799, 14.606512208167038, 14.339735499061648, 14.61843904754546, 14.421778964852349, 13.824118967817144, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.728650838545583, 14.630780570299253, 14.630780570299253, 14.61843904754546, 14.728456965919694, 14.61843904754546, 14.618480742664287, 14.339825653017522, 14.61843904754546, 13.7785198325034, 13.825501744421523, 14.630604108154332, 14.728603318193455, 14.33978531324949, 14.339754867144269, 13.825501744421523, 13.825501744421523, 14.421778964852349, 14.421778964852349, 14.728602599451175, 14.33978531324949, 14.339912750386873, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.728603318193455, 14.728650838545583, 14.339827351797773, 13.825501744421523, 14.61843904754546, 14.339689073546207, 14.630604108154332, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.339950759070799 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-06 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-07 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6689, 6683, 6659, 6673, 6694, 6655, 6654, 6689, 6705, 6654, 6664, 6654, 6661, 6654, 6667, 6707, 6698, 6654, 6689, 6689, 6706, 6655, 6702, 6699, 6673, 6674, 6689, 6682, 6658, 6689, 6664, 6661, 6694, 6682, 6654, 6664, 6666, 6654, 6689, 6680, 6689, 6676, 6702, 6661, 6693, 6694, 6678, 6694, 6676, 6688, 6682, 6658, 6706, 6689, 6654 ], "ids": [ 6654, 6689, 6683, 6659, 6673, 6694, 6655, 6654, 6689, 6705, 6654, 6664, 6654, 6661, 6654, 6667, 6707, 6698, 6654, 6689, 6689, 6706, 6655, 6702, 6699, 6673, 6674, 6689, 6682, 6658, 6689, 6664, 6661, 6694, 6682, 6654, 6664, 6666, 6654, 6689, 6680, 6689, 6676, 6702, 6661, 6693, 6694, 6678, 6694, 6676, 6688, 6682, 6658, 6706, 6689, 6654 ], "lat": [ 53.83455966672514, 53.864471803645856, 53.80901818337243, 53.80896520272324, 53.80890241146502, 53.845303866200666, 53.80892384370499, 53.83455966672514, 53.864471803645856, 53.55150694013349, 53.83455966672514, 53.71995740275443, 53.83455966672514, 54.020849005752474, 53.83455966672514, 54.02096962344496, 53.80902089070886, 54.021059534496196, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.80892384370499, 53.931828156416294, 53.80892746585745, 53.80890241146502, 53.80903972625709, 53.864471803645856, 53.52971923996491, 53.5296490438886, 53.864471803645856, 53.71995740275443, 54.020849005752474, 53.845303866200666, 53.52971923996491, 53.83455966672514, 53.71995740275443, 53.809076375885944, 53.83455966672514, 53.864471803645856, 54.020746549558325, 53.864471803645856, 54.020847759299066, 53.931828156416294, 54.020849005752474, 54.22725596601593, 53.845303866200666, 53.83465312047732, 53.845303866200666, 54.020847759299066, 53.80909221822267, 53.52971923996491, 53.5296490438886, 53.80915072481978, 53.864471803645856, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.61843904754546, 13.825501744421523, 14.33973774800166, 14.339689073546207, 14.339950759070799, 13.824118967817144, 14.33978531324949, 14.61843904754546, 13.825501744421523, 14.606512208167038, 14.61843904754546, 14.432023765781716, 14.61843904754546, 14.728603318193455, 14.61843904754546, 14.728602599451175, 14.339754867144269, 14.728615266067688, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.339825653017522, 14.33978531324949, 14.675920197298208, 14.339827351797773, 14.339950759070799, 14.339912750386873, 13.825501744421523, 14.630780570299253, 14.630604108154332, 13.825501744421523, 14.432023765781716, 14.728603318193455, 13.824118967817144, 14.630780570299253, 14.61843904754546, 14.432023765781716, 14.339652967059697, 14.61843904754546, 13.825501744421523, 14.728456965919694, 13.825501744421523, 14.728650838545583, 14.675920197298208, 14.728603318193455, 13.7785198325034, 13.824118967817144, 14.618480742664287, 13.824118967817144, 14.728650838545583, 14.339735499061648, 14.630780570299253, 14.630604108154332, 14.339825653017522, 13.825501744421523, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-07 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-08 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6694, 6673, 6689, 6689, 6666, 6707, 6682, 6654, 6688, 6702, 6659, 6694, 6658, 6689, 6682, 6654, 6676, 6694, 6682, 6689, 6654, 6680, 6654, 6661, 6693, 6658, 6689, 6655, 6654, 6664, 6678, 6661, 6667, 6655, 6674, 6706, 6676, 6689, 6664, 6689, 6664, 6654, 6673, 6694, 6654, 6702, 6689, 6705, 6661, 6698, 6699, 6689, 6654, 6706, 6683 ], "ids": [ 6654, 6694, 6673, 6689, 6689, 6666, 6707, 6682, 6654, 6688, 6702, 6659, 6694, 6658, 6689, 6682, 6654, 6676, 6694, 6682, 6689, 6654, 6680, 6654, 6661, 6693, 6658, 6689, 6655, 6654, 6664, 6678, 6661, 6667, 6655, 6674, 6706, 6676, 6689, 6664, 6689, 6664, 6654, 6673, 6694, 6654, 6702, 6689, 6705, 6661, 6698, 6699, 6689, 6654, 6706, 6683 ], "lat": [ 53.83455966672514, 53.845303866200666, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.809076375885944, 53.80902089070886, 53.52971923996491, 53.83455966672514, 53.80909221822267, 53.930181417957556, 53.80896520272324, 53.845303866200666, 53.5296490438886, 53.864471803645856, 53.52971923996491, 53.83455966672514, 54.020847759299066, 53.845303866200666, 53.52971923996491, 53.864471803645856, 53.83455966672514, 54.020746549558325, 53.83455966672514, 54.020849005752474, 54.22725596601593, 53.5296490438886, 53.864471803645856, 53.80892384370499, 53.83455966672514, 53.71004992677353, 53.83465312047732, 54.020849005752474, 54.02096962344496, 53.80892384370499, 53.80903972625709, 53.80915072481978, 54.020847759299066, 53.864471803645856, 53.71004992677353, 53.864471803645856, 53.71004992677353, 53.83455966672514, 53.80890241146502, 53.845303866200666, 53.83455966672514, 53.930181417957556, 53.864471803645856, 53.55150694013349, 54.020849005752474, 54.021059534496196, 53.80892746585745, 53.864471803645856, 53.83455966672514, 53.80915072481978, 53.80901818337243 ], "legendgroup": "", "lon": [ 14.61843904754546, 13.824118967817144, 14.339950759070799, 13.825501744421523, 13.825501744421523, 14.339652967059697, 14.339754867144269, 14.630780570299253, 14.61843904754546, 14.339735499061648, 14.67494353016955, 14.339689073546207, 13.824118967817144, 14.630604108154332, 13.825501744421523, 14.630780570299253, 14.61843904754546, 14.728650838545583, 13.824118967817144, 14.630780570299253, 13.825501744421523, 14.61843904754546, 14.728456965919694, 14.61843904754546, 14.728603318193455, 13.7785198325034, 14.630604108154332, 13.825501744421523, 14.33978531324949, 14.61843904754546, 14.442268566711084, 14.618480742664287, 14.728603318193455, 14.728602599451175, 14.33978531324949, 14.339912750386873, 14.339825653017522, 14.728650838545583, 13.825501744421523, 14.442268566711084, 13.825501744421523, 14.442268566711084, 14.61843904754546, 14.339950759070799, 13.824118967817144, 14.61843904754546, 14.67494353016955, 13.825501744421523, 14.606512208167038, 14.728603318193455, 14.728615266067688, 14.339827351797773, 13.825501744421523, 14.61843904754546, 14.339825653017522, 14.33973774800166 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-08 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-09 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6678, 6673, 6706, 6702, 6658, 6661, 6689, 6654, 6682, 6659, 6654, 6694, 6694, 6689, 6694, 6702, 6676, 6693, 6654, 6707, 6654, 6689, 6698, 6682, 6673, 6676, 6682, 6689, 6654, 6658, 6694, 6689, 6664, 6664, 6689, 6699, 6654, 6661, 6683, 6664, 6654, 6705, 6680, 6674, 6689, 6654, 6661, 6706, 6666, 6654, 6689, 6688, 6655, 6667, 6655, 6689 ], "ids": [ 6678, 6673, 6706, 6702, 6658, 6661, 6689, 6654, 6682, 6659, 6654, 6694, 6694, 6689, 6694, 6702, 6676, 6693, 6654, 6707, 6654, 6689, 6698, 6682, 6673, 6676, 6682, 6689, 6654, 6658, 6694, 6689, 6664, 6664, 6689, 6699, 6654, 6661, 6683, 6664, 6654, 6705, 6680, 6674, 6689, 6654, 6661, 6706, 6666, 6654, 6689, 6688, 6655, 6667, 6655, 6689 ], "lat": [ 53.83465312047732, 53.80890241146502, 53.80915072481978, 53.92853467949881, 53.5296490438886, 54.020849005752474, 53.864471803645856, 53.83455966672514, 53.52971923996491, 53.80896520272324, 53.83455966672514, 53.845303866200666, 53.845303866200666, 53.864471803645856, 53.845303866200666, 53.92853467949881, 54.020847759299066, 54.22725596601593, 53.83455966672514, 53.80902089070886, 53.83455966672514, 53.864471803645856, 54.021059534496196, 53.52971923996491, 53.80890241146502, 54.020847759299066, 53.52971923996491, 53.864471803645856, 53.83455966672514, 53.5296490438886, 53.845303866200666, 53.864471803645856, 53.700142450792626, 53.700142450792626, 53.864471803645856, 53.80892746585745, 53.83455966672514, 54.020849005752474, 53.80901818337243, 53.700142450792626, 53.83455966672514, 53.55150694013349, 54.020746549558325, 53.80903972625709, 53.864471803645856, 53.83455966672514, 54.020849005752474, 53.80915072481978, 53.809076375885944, 53.83455966672514, 53.864471803645856, 53.80909221822267, 53.80892384370499, 54.02096962344496, 53.80892384370499, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.618480742664287, 14.339950759070799, 14.339825653017522, 14.673966863040894, 14.630604108154332, 14.728603318193455, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.339689073546207, 14.61843904754546, 13.824118967817144, 13.824118967817144, 13.825501744421523, 13.824118967817144, 14.673966863040894, 14.728650838545583, 13.7785198325034, 14.61843904754546, 14.339754867144269, 14.61843904754546, 13.825501744421523, 14.728615266067688, 14.630780570299253, 14.339950759070799, 14.728650838545583, 14.630780570299253, 13.825501744421523, 14.61843904754546, 14.630604108154332, 13.824118967817144, 13.825501744421523, 14.452513367640451, 14.452513367640451, 13.825501744421523, 14.339827351797773, 14.61843904754546, 14.728603318193455, 14.33973774800166, 14.452513367640451, 14.61843904754546, 14.606512208167038, 14.728456965919694, 14.339912750386873, 13.825501744421523, 14.61843904754546, 14.728603318193455, 14.339825653017522, 14.339652967059697, 14.61843904754546, 13.825501744421523, 14.339735499061648, 14.33978531324949, 14.728602599451175, 14.33978531324949, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-09 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-10 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6702, 6699, 6661, 6667, 6655, 6683, 6689, 6664, 6659, 6694, 6707, 6678, 6676, 6661, 6654, 6680, 6689, 6654, 6706, 6694, 6682, 6693, 6664, 6654, 6682, 6658, 6689, 6689, 6658, 6694, 6664, 6676, 6655, 6689, 6654, 6673, 6705, 6661, 6706, 6654, 6689, 6673, 6698, 6654, 6694, 6654, 6682, 6688, 6689, 6666, 6654, 6689, 6674, 6689, 6702 ], "ids": [ 6654, 6702, 6699, 6661, 6667, 6655, 6683, 6689, 6664, 6659, 6694, 6707, 6678, 6676, 6661, 6654, 6680, 6689, 6654, 6706, 6694, 6682, 6693, 6664, 6654, 6682, 6658, 6689, 6689, 6658, 6694, 6664, 6676, 6655, 6689, 6654, 6673, 6705, 6661, 6706, 6654, 6689, 6673, 6698, 6654, 6694, 6654, 6682, 6688, 6689, 6666, 6654, 6689, 6674, 6689, 6702 ], "lat": [ 53.83455966672514, 53.92688794104007, 53.80892746585745, 54.020849005752474, 54.02096962344496, 53.80892384370499, 53.80901818337243, 53.864471803645856, 53.69023497481173, 53.80896520272324, 53.845303866200666, 53.80902089070886, 53.83465312047732, 54.020847759299066, 54.020849005752474, 53.83455966672514, 54.020746549558325, 53.864471803645856, 53.83455966672514, 53.80915072481978, 53.845303866200666, 53.52971923996491, 54.22725596601593, 53.69023497481173, 53.83455966672514, 53.52971923996491, 53.5296490438886, 53.864471803645856, 53.864471803645856, 53.5296490438886, 53.845303866200666, 53.69023497481173, 54.020847759299066, 53.80892384370499, 53.864471803645856, 53.83455966672514, 53.80890241146502, 53.55150694013349, 54.020849005752474, 53.80915072481978, 53.83455966672514, 53.864471803645856, 53.80890241146502, 54.021059534496196, 53.83455966672514, 53.845303866200666, 53.83455966672514, 53.52971923996491, 53.80909221822267, 53.864471803645856, 53.809076375885944, 53.83455966672514, 53.864471803645856, 53.80903972625709, 53.864471803645856, 53.92688794104007 ], "legendgroup": "", "lon": [ 14.61843904754546, 14.672990195912238, 14.339827351797773, 14.728603318193455, 14.728602599451175, 14.33978531324949, 14.33973774800166, 13.825501744421523, 14.462758168569819, 14.339689073546207, 13.824118967817144, 14.339754867144269, 14.618480742664287, 14.728650838545583, 14.728603318193455, 14.61843904754546, 14.728456965919694, 13.825501744421523, 14.61843904754546, 14.339825653017522, 13.824118967817144, 14.630780570299253, 13.7785198325034, 14.462758168569819, 14.61843904754546, 14.630780570299253, 14.630604108154332, 13.825501744421523, 13.825501744421523, 14.630604108154332, 13.824118967817144, 14.462758168569819, 14.728650838545583, 14.33978531324949, 13.825501744421523, 14.61843904754546, 14.339950759070799, 14.606512208167038, 14.728603318193455, 14.339825653017522, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.728615266067688, 14.61843904754546, 13.824118967817144, 14.61843904754546, 14.630780570299253, 14.339735499061648, 13.825501744421523, 14.339652967059697, 14.61843904754546, 13.825501744421523, 14.339912750386873, 13.825501744421523, 14.672990195912238 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-10 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-11 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6694, 6689, 6680, 6689, 6698, 6654, 6694, 6673, 6694, 6682, 6654, 6689, 6654, 6664, 6661, 6659, 6654, 6674, 6689, 6707, 6689, 6667, 6678, 6654, 6655, 6693, 6654, 6676, 6655, 6689, 6706, 6689, 6682, 6658, 6688, 6706, 6682, 6694, 6683, 6654, 6664, 6661, 6661, 6699, 6705, 6702, 6654, 6676, 6654, 6666, 6664, 6673, 6689, 6702, 6658 ], "ids": [ 6689, 6694, 6689, 6680, 6689, 6698, 6654, 6694, 6673, 6694, 6682, 6654, 6689, 6654, 6664, 6661, 6659, 6654, 6674, 6689, 6707, 6689, 6667, 6678, 6654, 6655, 6693, 6654, 6676, 6655, 6689, 6706, 6689, 6682, 6658, 6688, 6706, 6682, 6694, 6683, 6654, 6664, 6661, 6661, 6699, 6705, 6702, 6654, 6676, 6654, 6666, 6664, 6673, 6689, 6702, 6658 ], "lat": [ 53.864471803645856, 53.845303866200666, 53.864471803645856, 54.020746549558325, 53.864471803645856, 54.021059534496196, 53.83455966672514, 53.845303866200666, 53.80890241146502, 53.845303866200666, 53.52971923996491, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.680327498830835, 54.020849005752474, 53.80896520272324, 53.83455966672514, 53.80903972625709, 53.864471803645856, 53.80902089070886, 53.864471803645856, 54.02096962344496, 53.83465312047732, 53.83455966672514, 53.80892384370499, 54.22725596601593, 53.83455966672514, 54.020847759299066, 53.80892384370499, 53.864471803645856, 53.80915072481978, 53.864471803645856, 53.52971923996491, 53.5296490438886, 53.80909221822267, 53.80915072481978, 53.52971923996491, 53.845303866200666, 53.80901818337243, 53.83455966672514, 53.680327498830835, 54.020849005752474, 54.020849005752474, 53.80892746585745, 53.55150694013349, 53.925241202581326, 53.83455966672514, 54.020847759299066, 53.83455966672514, 53.809076375885944, 53.680327498830835, 53.80890241146502, 53.864471803645856, 53.925241202581326, 53.5296490438886 ], "legendgroup": "", "lon": [ 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.728456965919694, 13.825501744421523, 14.728615266067688, 14.61843904754546, 13.824118967817144, 14.339950759070799, 13.824118967817144, 14.630780570299253, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.473002969499188, 14.728603318193455, 14.339689073546207, 14.61843904754546, 14.339912750386873, 13.825501744421523, 14.339754867144269, 13.825501744421523, 14.728602599451175, 14.618480742664287, 14.61843904754546, 14.33978531324949, 13.7785198325034, 14.61843904754546, 14.728650838545583, 14.33978531324949, 13.825501744421523, 14.339825653017522, 13.825501744421523, 14.630780570299253, 14.630604108154332, 14.339735499061648, 14.339825653017522, 14.630780570299253, 13.824118967817144, 14.33973774800166, 14.61843904754546, 14.473002969499188, 14.728603318193455, 14.728603318193455, 14.339827351797773, 14.606512208167038, 14.672013528783582, 14.61843904754546, 14.728650838545583, 14.61843904754546, 14.339652967059697, 14.473002969499188, 14.339950759070799, 13.825501744421523, 14.672013528783582, 14.630604108154332 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-11 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-12 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6661, 6706, 6655, 6658, 6705, 6694, 6654, 6689, 6702, 6658, 6699, 6688, 6659, 6654, 6676, 6655, 6664, 6689, 6667, 6654, 6678, 6664, 6689, 6694, 6689, 6707, 6683, 6654, 6693, 6674, 6654, 6664, 6689, 6676, 6680, 6673, 6698, 6694, 6673, 6682, 6654, 6666, 6694, 6654, 6654, 6702, 6682, 6661, 6689, 6689, 6706, 6689, 6689, 6682, 6654 ], "ids": [ 6661, 6661, 6706, 6655, 6658, 6705, 6694, 6654, 6689, 6702, 6658, 6699, 6688, 6659, 6654, 6676, 6655, 6664, 6689, 6667, 6654, 6678, 6664, 6689, 6694, 6689, 6707, 6683, 6654, 6693, 6674, 6654, 6664, 6689, 6676, 6680, 6673, 6698, 6694, 6673, 6682, 6654, 6666, 6694, 6654, 6654, 6702, 6682, 6661, 6689, 6689, 6706, 6689, 6689, 6682, 6654 ], "lat": [ 54.020849005752474, 54.020849005752474, 53.80915072481978, 53.80892384370499, 53.5296490438886, 53.55150694013349, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.92359446412259, 53.5296490438886, 53.80892746585745, 53.80909221822267, 53.80896520272324, 53.83455966672514, 54.020847759299066, 53.80892384370499, 53.67042002284993, 53.864471803645856, 54.02096962344496, 53.83455966672514, 53.83465312047732, 53.67042002284993, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.80902089070886, 53.80901818337243, 53.83455966672514, 54.22725596601593, 53.80903972625709, 53.83455966672514, 53.67042002284993, 53.864471803645856, 54.020847759299066, 54.020746549558325, 53.80890241146502, 54.021059534496196, 53.845303866200666, 53.80890241146502, 53.52971923996491, 53.83455966672514, 53.809076375885944, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.92359446412259, 53.52971923996491, 54.020849005752474, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.728603318193455, 14.339825653017522, 14.33978531324949, 14.630604108154332, 14.606512208167038, 13.824118967817144, 14.61843904754546, 13.825501744421523, 14.671036861654924, 14.630604108154332, 14.339827351797773, 14.339735499061648, 14.339689073546207, 14.61843904754546, 14.728650838545583, 14.33978531324949, 14.483247770428555, 13.825501744421523, 14.728602599451175, 14.61843904754546, 14.618480742664287, 14.483247770428555, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.339754867144269, 14.33973774800166, 14.61843904754546, 13.7785198325034, 14.339912750386873, 14.61843904754546, 14.483247770428555, 13.825501744421523, 14.728650838545583, 14.728456965919694, 14.339950759070799, 14.728615266067688, 13.824118967817144, 14.339950759070799, 14.630780570299253, 14.61843904754546, 14.339652967059697, 13.824118967817144, 14.61843904754546, 14.61843904754546, 14.671036861654924, 14.630780570299253, 14.728603318193455, 13.825501744421523, 13.825501744421523, 14.339825653017522, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-12 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-13 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6666, 6674, 6678, 6694, 6676, 6654, 6706, 6661, 6694, 6693, 6664, 6655, 6676, 6689, 6689, 6654, 6682, 6659, 6680, 6682, 6689, 6654, 6654, 6683, 6654, 6673, 6673, 6702, 6664, 6706, 6658, 6698, 6689, 6688, 6689, 6661, 6699, 6702, 6658, 6654, 6694, 6654, 6705, 6694, 6664, 6667, 6654, 6654, 6655, 6689, 6682, 6689, 6707, 6689, 6689, 6661 ], "ids": [ 6666, 6674, 6678, 6694, 6676, 6654, 6706, 6661, 6694, 6693, 6664, 6655, 6676, 6689, 6689, 6654, 6682, 6659, 6680, 6682, 6689, 6654, 6654, 6683, 6654, 6673, 6673, 6702, 6664, 6706, 6658, 6698, 6689, 6688, 6689, 6661, 6699, 6702, 6658, 6654, 6694, 6654, 6705, 6694, 6664, 6667, 6654, 6654, 6655, 6689, 6682, 6689, 6707, 6689, 6689, 6661 ], "lat": [ 53.809076375885944, 53.80903972625709, 53.83465312047732, 53.845303866200666, 54.020847759299066, 53.83455966672514, 53.80915072481978, 54.020849005752474, 53.845303866200666, 54.22725596601593, 53.66051254686903, 53.80892384370499, 54.020847759299066, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.52971923996491, 53.80896520272324, 54.020746549558325, 53.52971923996491, 53.864471803645856, 53.83455966672514, 53.83455966672514, 53.80901818337243, 53.83455966672514, 53.80890241146502, 53.80890241146502, 53.92194772566384, 53.66051254686903, 53.80915072481978, 53.5296490438886, 54.021059534496196, 53.864471803645856, 53.80909221822267, 53.864471803645856, 54.020849005752474, 53.80892746585745, 53.92194772566384, 53.5296490438886, 53.83455966672514, 53.845303866200666, 53.83455966672514, 53.55150694013349, 53.845303866200666, 53.66051254686903, 54.02096962344496, 53.83455966672514, 53.83455966672514, 53.80892384370499, 53.864471803645856, 53.52971923996491, 53.864471803645856, 53.80902089070886, 53.864471803645856, 53.864471803645856, 54.020849005752474 ], "legendgroup": "", "lon": [ 14.339652967059697, 14.339912750386873, 14.618480742664287, 13.824118967817144, 14.728650838545583, 14.61843904754546, 14.339825653017522, 14.728603318193455, 13.824118967817144, 13.7785198325034, 14.493492571357923, 14.33978531324949, 14.728650838545583, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.339689073546207, 14.728456965919694, 14.630780570299253, 13.825501744421523, 14.61843904754546, 14.61843904754546, 14.33973774800166, 14.61843904754546, 14.339950759070799, 14.339950759070799, 14.670060194526268, 14.493492571357923, 14.339825653017522, 14.630604108154332, 14.728615266067688, 13.825501744421523, 14.339735499061648, 13.825501744421523, 14.728603318193455, 14.339827351797773, 14.670060194526268, 14.630604108154332, 14.61843904754546, 13.824118967817144, 14.61843904754546, 14.606512208167038, 13.824118967817144, 14.493492571357923, 14.728602599451175, 14.61843904754546, 14.61843904754546, 14.33978531324949, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.339754867144269, 13.825501744421523, 13.825501744421523, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-13 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-14 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6693, 6661, 6654, 6664, 6658, 6658, 6655, 6664, 6707, 6654, 6667, 6689, 6706, 6655, 6689, 6699, 6661, 6676, 6682, 6689, 6664, 6702, 6689, 6661, 6682, 6683, 6689, 6689, 6694, 6689, 6659, 6676, 6694, 6654, 6682, 6654, 6666, 6673, 6654, 6694, 6706, 6689, 6678, 6694, 6688, 6680, 6654, 6654, 6705, 6654, 6654, 6689, 6674, 6673, 6698, 6702 ], "ids": [ 6693, 6661, 6654, 6664, 6658, 6658, 6655, 6664, 6707, 6654, 6667, 6689, 6706, 6655, 6689, 6699, 6661, 6676, 6682, 6689, 6664, 6702, 6689, 6661, 6682, 6683, 6689, 6689, 6694, 6689, 6659, 6676, 6694, 6654, 6682, 6654, 6666, 6673, 6654, 6694, 6706, 6689, 6678, 6694, 6688, 6680, 6654, 6654, 6705, 6654, 6654, 6689, 6674, 6673, 6698, 6702 ], "lat": [ 54.22725596601593, 54.020849005752474, 53.83455966672514, 53.65060507088813, 53.5296490438886, 53.5296490438886, 53.80892384370499, 53.65060507088813, 53.80902089070886, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.80915072481978, 53.80892384370499, 53.864471803645856, 53.80892746585745, 54.020849005752474, 54.020847759299066, 53.52971923996491, 53.864471803645856, 53.65060507088813, 53.9203009872051, 53.864471803645856, 54.020849005752474, 53.52971923996491, 53.80901818337243, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.80896520272324, 54.020847759299066, 53.845303866200666, 53.83455966672514, 53.52971923996491, 53.83455966672514, 53.809076375885944, 53.80890241146502, 53.83455966672514, 53.845303866200666, 53.80915072481978, 53.864471803645856, 53.83465312047732, 53.845303866200666, 53.80909221822267, 54.020746549558325, 53.83455966672514, 53.83455966672514, 53.55150694013349, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.80903972625709, 53.80890241146502, 54.021059534496196, 53.9203009872051 ], "legendgroup": "", "lon": [ 13.7785198325034, 14.728603318193455, 14.61843904754546, 14.50373737228729, 14.630604108154332, 14.630604108154332, 14.33978531324949, 14.50373737228729, 14.339754867144269, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.339825653017522, 14.33978531324949, 13.825501744421523, 14.339827351797773, 14.728603318193455, 14.728650838545583, 14.630780570299253, 13.825501744421523, 14.50373737228729, 14.669083527397612, 13.825501744421523, 14.728603318193455, 14.630780570299253, 14.33973774800166, 13.825501744421523, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.339689073546207, 14.728650838545583, 13.824118967817144, 14.61843904754546, 14.630780570299253, 14.61843904754546, 14.339652967059697, 14.339950759070799, 14.61843904754546, 13.824118967817144, 14.339825653017522, 13.825501744421523, 14.618480742664287, 13.824118967817144, 14.339735499061648, 14.728456965919694, 14.61843904754546, 14.61843904754546, 14.606512208167038, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.339912750386873, 14.339950759070799, 14.728615266067688, 14.669083527397612 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-14 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-15 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6707, 6682, 6654, 6658, 6694, 6667, 6689, 6689, 6678, 6654, 6666, 6689, 6664, 6654, 6658, 6673, 6698, 6689, 6664, 6689, 6654, 6702, 6706, 6655, 6664, 6689, 6689, 6659, 6689, 6654, 6694, 6676, 6682, 6689, 6654, 6680, 6661, 6676, 6706, 6673, 6655, 6654, 6693, 6654, 6688, 6674, 6683, 6661, 6682, 6661, 6699, 6694, 6694, 6654, 6702, 6705 ], "ids": [ 6707, 6682, 6654, 6658, 6694, 6667, 6689, 6689, 6678, 6654, 6666, 6689, 6664, 6654, 6658, 6673, 6698, 6689, 6664, 6689, 6654, 6702, 6706, 6655, 6664, 6689, 6689, 6659, 6689, 6654, 6694, 6676, 6682, 6689, 6654, 6680, 6661, 6676, 6706, 6673, 6655, 6654, 6693, 6654, 6688, 6674, 6683, 6661, 6682, 6661, 6699, 6694, 6694, 6654, 6702, 6705 ], "lat": [ 53.80902089070886, 53.52971923996491, 53.83455966672514, 53.5296490438886, 53.845303866200666, 54.02096962344496, 53.864471803645856, 53.864471803645856, 53.83465312047732, 53.83455966672514, 53.809076375885944, 53.864471803645856, 53.64069759490724, 53.83455966672514, 53.5296490438886, 53.80890241146502, 54.021059534496196, 53.864471803645856, 53.64069759490724, 53.864471803645856, 53.83455966672514, 53.91865424874636, 53.80915072481978, 53.80892384370499, 53.64069759490724, 53.864471803645856, 53.864471803645856, 53.80896520272324, 53.864471803645856, 53.83455966672514, 53.845303866200666, 54.020847759299066, 53.52971923996491, 53.864471803645856, 53.83455966672514, 54.020746549558325, 54.020849005752474, 54.020847759299066, 53.80915072481978, 53.80890241146502, 53.80892384370499, 53.83455966672514, 54.22725596601593, 53.83455966672514, 53.80909221822267, 53.80903972625709, 53.80901818337243, 54.020849005752474, 53.52971923996491, 54.020849005752474, 53.80892746585745, 53.845303866200666, 53.845303866200666, 53.83455966672514, 53.91865424874636, 53.55150694013349 ], "legendgroup": "", "lon": [ 14.339754867144269, 14.630780570299253, 14.61843904754546, 14.630604108154332, 13.824118967817144, 14.728602599451175, 13.825501744421523, 13.825501744421523, 14.618480742664287, 14.61843904754546, 14.339652967059697, 13.825501744421523, 14.513982173216657, 14.61843904754546, 14.630604108154332, 14.339950759070799, 14.728615266067688, 13.825501744421523, 14.513982173216657, 13.825501744421523, 14.61843904754546, 14.668106860268956, 14.339825653017522, 14.33978531324949, 14.513982173216657, 13.825501744421523, 13.825501744421523, 14.339689073546207, 13.825501744421523, 14.61843904754546, 13.824118967817144, 14.728650838545583, 14.630780570299253, 13.825501744421523, 14.61843904754546, 14.728456965919694, 14.728603318193455, 14.728650838545583, 14.339825653017522, 14.339950759070799, 14.33978531324949, 14.61843904754546, 13.7785198325034, 14.61843904754546, 14.339735499061648, 14.339912750386873, 14.33973774800166, 14.728603318193455, 14.630780570299253, 14.728603318193455, 14.339827351797773, 13.824118967817144, 13.824118967817144, 14.61843904754546, 14.668106860268956, 14.606512208167038 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-15 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-16 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6664, 6667, 6654, 6689, 6678, 6661, 6689, 6674, 6659, 6654, 6699, 6688, 6655, 6654, 6654, 6694, 6673, 6689, 6661, 6682, 6658, 6689, 6654, 6707, 6676, 6661, 6693, 6664, 6658, 6698, 6654, 6654, 6673, 6689, 6654, 6654, 6694, 6702, 6682, 6664, 6689, 6706, 6694, 6705, 6702, 6694, 6683, 6666, 6689, 6689, 6655, 6689, 6680, 6676, 6682, 6706 ], "ids": [ 6664, 6667, 6654, 6689, 6678, 6661, 6689, 6674, 6659, 6654, 6699, 6688, 6655, 6654, 6654, 6694, 6673, 6689, 6661, 6682, 6658, 6689, 6654, 6707, 6676, 6661, 6693, 6664, 6658, 6698, 6654, 6654, 6673, 6689, 6654, 6654, 6694, 6702, 6682, 6664, 6689, 6706, 6694, 6705, 6702, 6694, 6683, 6666, 6689, 6689, 6655, 6689, 6680, 6676, 6682, 6706 ], "lat": [ 53.630790118926335, 54.02096962344496, 53.83455966672514, 53.864471803645856, 53.83465312047732, 54.020849005752474, 53.864471803645856, 53.80903972625709, 53.80896520272324, 53.83455966672514, 53.80892746585745, 53.80909221822267, 53.80892384370499, 53.83455966672514, 53.83455966672514, 53.845303866200666, 53.80890241146502, 53.864471803645856, 54.020849005752474, 53.52971923996491, 53.5296490438886, 53.864471803645856, 53.83455966672514, 53.80902089070886, 54.020847759299066, 54.020849005752474, 54.22725596601593, 53.630790118926335, 53.5296490438886, 54.021059534496196, 53.83455966672514, 53.83455966672514, 53.80890241146502, 53.864471803645856, 53.83455966672514, 53.83455966672514, 53.845303866200666, 53.91700751028761, 53.52971923996491, 53.630790118926335, 53.864471803645856, 53.80915072481978, 53.845303866200666, 53.55150694013349, 53.91700751028761, 53.845303866200666, 53.80901818337243, 53.809076375885944, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.864471803645856, 54.020746549558325, 54.020847759299066, 53.52971923996491, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.524226974146025, 14.728602599451175, 14.61843904754546, 13.825501744421523, 14.618480742664287, 14.728603318193455, 13.825501744421523, 14.339912750386873, 14.339689073546207, 14.61843904754546, 14.339827351797773, 14.339735499061648, 14.33978531324949, 14.61843904754546, 14.61843904754546, 13.824118967817144, 14.339950759070799, 13.825501744421523, 14.728603318193455, 14.630780570299253, 14.630604108154332, 13.825501744421523, 14.61843904754546, 14.339754867144269, 14.728650838545583, 14.728603318193455, 13.7785198325034, 14.524226974146025, 14.630604108154332, 14.728615266067688, 14.61843904754546, 14.61843904754546, 14.339950759070799, 13.825501744421523, 14.61843904754546, 14.61843904754546, 13.824118967817144, 14.667130193140299, 14.630780570299253, 14.524226974146025, 13.825501744421523, 14.339825653017522, 13.824118967817144, 14.606512208167038, 14.667130193140299, 13.824118967817144, 14.33973774800166, 14.339652967059697, 13.825501744421523, 13.825501744421523, 14.33978531324949, 13.825501744421523, 14.728456965919694, 14.728650838545583, 14.630780570299253, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-16 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-17 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6706, 6689, 6702, 6699, 6661, 6658, 6673, 6658, 6673, 6654, 6654, 6689, 6680, 6689, 6705, 6689, 6676, 6661, 6674, 6678, 6664, 6654, 6688, 6654, 6683, 6654, 6664, 6667, 6689, 6694, 6655, 6654, 6654, 6707, 6694, 6664, 6655, 6689, 6702, 6682, 6676, 6706, 6682, 6661, 6689, 6654, 6693, 6689, 6682, 6698, 6654, 6666, 6694, 6689, 6659, 6694 ], "ids": [ 6706, 6689, 6702, 6699, 6661, 6658, 6673, 6658, 6673, 6654, 6654, 6689, 6680, 6689, 6705, 6689, 6676, 6661, 6674, 6678, 6664, 6654, 6688, 6654, 6683, 6654, 6664, 6667, 6689, 6694, 6655, 6654, 6654, 6707, 6694, 6664, 6655, 6689, 6702, 6682, 6676, 6706, 6682, 6661, 6689, 6654, 6693, 6689, 6682, 6698, 6654, 6666, 6694, 6689, 6659, 6694 ], "lat": [ 53.80915072481978, 53.864471803645856, 53.91536077182887, 53.80892746585745, 54.020849005752474, 53.5296490438886, 53.80890241146502, 53.5296490438886, 53.80890241146502, 53.83455966672514, 53.83455966672514, 53.864471803645856, 54.020746549558325, 53.864471803645856, 53.55150694013349, 53.864471803645856, 54.020847759299066, 54.020849005752474, 53.80903972625709, 53.83465312047732, 53.62088264294543, 53.83455966672514, 53.80909221822267, 53.83455966672514, 53.80901818337243, 53.83455966672514, 53.62088264294543, 54.02096962344496, 53.864471803645856, 53.845303866200666, 53.80892384370499, 53.83455966672514, 53.83455966672514, 53.80902089070886, 53.845303866200666, 53.62088264294543, 53.80892384370499, 53.864471803645856, 53.91536077182887, 53.52971923996491, 54.020847759299066, 53.80915072481978, 53.52971923996491, 54.020849005752474, 53.864471803645856, 53.83455966672514, 54.22725596601593, 53.864471803645856, 53.52971923996491, 54.021059534496196, 53.83455966672514, 53.809076375885944, 53.845303866200666, 53.864471803645856, 53.80896520272324, 53.845303866200666 ], "legendgroup": "", "lon": [ 14.339825653017522, 13.825501744421523, 14.666153526011643, 14.339827351797773, 14.728603318193455, 14.630604108154332, 14.339950759070799, 14.630604108154332, 14.339950759070799, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.728456965919694, 13.825501744421523, 14.606512208167038, 13.825501744421523, 14.728650838545583, 14.728603318193455, 14.339912750386873, 14.618480742664287, 14.534471775075392, 14.61843904754546, 14.339735499061648, 14.61843904754546, 14.33973774800166, 14.61843904754546, 14.534471775075392, 14.728602599451175, 13.825501744421523, 13.824118967817144, 14.33978531324949, 14.61843904754546, 14.61843904754546, 14.339754867144269, 13.824118967817144, 14.534471775075392, 14.33978531324949, 13.825501744421523, 14.666153526011643, 14.630780570299253, 14.728650838545583, 14.339825653017522, 14.630780570299253, 14.728603318193455, 13.825501744421523, 14.61843904754546, 13.7785198325034, 13.825501744421523, 14.630780570299253, 14.728615266067688, 14.61843904754546, 14.339652967059697, 13.824118967817144, 13.825501744421523, 14.339689073546207, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-17 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-18 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6682, 6666, 6676, 6702, 6689, 6682, 6694, 6689, 6683, 6655, 6676, 6659, 6680, 6689, 6654, 6702, 6661, 6654, 6682, 6664, 6689, 6673, 6658, 6654, 6693, 6698, 6673, 6654, 6706, 6689, 6689, 6654, 6674, 6688, 6654, 6661, 6664, 6661, 6655, 6689, 6664, 6694, 6658, 6654, 6678, 6654, 6667, 6689, 6699, 6654, 6705, 6694, 6707, 6706, 6689, 6694 ], "ids": [ 6682, 6666, 6676, 6702, 6689, 6682, 6694, 6689, 6683, 6655, 6676, 6659, 6680, 6689, 6654, 6702, 6661, 6654, 6682, 6664, 6689, 6673, 6658, 6654, 6693, 6698, 6673, 6654, 6706, 6689, 6689, 6654, 6674, 6688, 6654, 6661, 6664, 6661, 6655, 6689, 6664, 6694, 6658, 6654, 6678, 6654, 6667, 6689, 6699, 6654, 6705, 6694, 6707, 6706, 6689, 6694 ], "lat": [ 53.52971923996491, 53.809076375885944, 54.020847759299066, 53.91371403337013, 53.864471803645856, 53.52971923996491, 53.845303866200666, 53.864471803645856, 53.80901818337243, 53.80892384370499, 54.020847759299066, 53.80896520272324, 54.020746549558325, 53.864471803645856, 53.83455966672514, 53.91371403337013, 54.020849005752474, 53.83455966672514, 53.52971923996491, 53.610975166964536, 53.864471803645856, 53.80890241146502, 53.5296490438886, 53.83455966672514, 54.22725596601593, 54.021059534496196, 53.80890241146502, 53.83455966672514, 53.80915072481978, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.80903972625709, 53.80909221822267, 53.83455966672514, 54.020849005752474, 53.610975166964536, 54.020849005752474, 53.80892384370499, 53.864471803645856, 53.610975166964536, 53.845303866200666, 53.5296490438886, 53.83455966672514, 53.83465312047732, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.80892746585745, 53.83455966672514, 53.55150694013349, 53.845303866200666, 53.80902089070886, 53.80915072481978, 53.864471803645856, 53.845303866200666 ], "legendgroup": "", "lon": [ 14.630780570299253, 14.339652967059697, 14.728650838545583, 14.665176858882987, 13.825501744421523, 14.630780570299253, 13.824118967817144, 13.825501744421523, 14.33973774800166, 14.33978531324949, 14.728650838545583, 14.339689073546207, 14.728456965919694, 13.825501744421523, 14.61843904754546, 14.665176858882987, 14.728603318193455, 14.61843904754546, 14.630780570299253, 14.54471657600476, 13.825501744421523, 14.339950759070799, 14.630604108154332, 14.61843904754546, 13.7785198325034, 14.728615266067688, 14.339950759070799, 14.61843904754546, 14.339825653017522, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.339912750386873, 14.339735499061648, 14.61843904754546, 14.728603318193455, 14.54471657600476, 14.728603318193455, 14.33978531324949, 13.825501744421523, 14.54471657600476, 13.824118967817144, 14.630604108154332, 14.61843904754546, 14.618480742664287, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.339827351797773, 14.61843904754546, 14.606512208167038, 13.824118967817144, 14.339754867144269, 14.339825653017522, 13.825501744421523, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-18 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-19 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6688, 6689, 6706, 6658, 6698, 6689, 6654, 6659, 6694, 6689, 6702, 6654, 6694, 6682, 6654, 6661, 6694, 6654, 6682, 6674, 6654, 6689, 6654, 6705, 6699, 6664, 6655, 6689, 6707, 6702, 6664, 6689, 6667, 6673, 6666, 6658, 6694, 6689, 6693, 6673, 6654, 6654, 6689, 6682, 6654, 6655, 6676, 6680, 6661, 6661, 6683, 6676, 6678, 6706, 6664, 6689 ], "ids": [ 6688, 6689, 6706, 6658, 6698, 6689, 6654, 6659, 6694, 6689, 6702, 6654, 6694, 6682, 6654, 6661, 6694, 6654, 6682, 6674, 6654, 6689, 6654, 6705, 6699, 6664, 6655, 6689, 6707, 6702, 6664, 6689, 6667, 6673, 6666, 6658, 6694, 6689, 6693, 6673, 6654, 6654, 6689, 6682, 6654, 6655, 6676, 6680, 6661, 6661, 6683, 6676, 6678, 6706, 6664, 6689 ], "lat": [ 53.80909221822267, 53.864471803645856, 53.80915072481978, 53.5296490438886, 54.021059534496196, 53.864471803645856, 53.83455966672514, 53.80896520272324, 53.845303866200666, 53.864471803645856, 53.91206729491139, 53.83455966672514, 53.845303866200666, 53.52971923996491, 53.83455966672514, 54.020849005752474, 53.845303866200666, 53.83455966672514, 53.52971923996491, 53.80903972625709, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.55150694013349, 53.80892746585745, 53.60106769098364, 53.80892384370499, 53.864471803645856, 53.80902089070886, 53.91206729491139, 53.60106769098364, 53.864471803645856, 54.02096962344496, 53.80890241146502, 53.809076375885944, 53.5296490438886, 53.845303866200666, 53.864471803645856, 54.22725596601593, 53.80890241146502, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.52971923996491, 53.83455966672514, 53.80892384370499, 54.020847759299066, 54.020746549558325, 54.020849005752474, 54.020849005752474, 53.80901818337243, 54.020847759299066, 53.83465312047732, 53.80915072481978, 53.60106769098364, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.339735499061648, 13.825501744421523, 14.339825653017522, 14.630604108154332, 14.728615266067688, 13.825501744421523, 14.61843904754546, 14.339689073546207, 13.824118967817144, 13.825501744421523, 14.664200191754329, 14.61843904754546, 13.824118967817144, 14.630780570299253, 14.61843904754546, 14.728603318193455, 13.824118967817144, 14.61843904754546, 14.630780570299253, 14.339912750386873, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.606512208167038, 14.339827351797773, 14.554961376934127, 14.33978531324949, 13.825501744421523, 14.339754867144269, 14.664200191754329, 14.554961376934127, 13.825501744421523, 14.728602599451175, 14.339950759070799, 14.339652967059697, 14.630604108154332, 13.824118967817144, 13.825501744421523, 13.7785198325034, 14.339950759070799, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.630780570299253, 14.61843904754546, 14.33978531324949, 14.728650838545583, 14.728456965919694, 14.728603318193455, 14.728603318193455, 14.33973774800166, 14.728650838545583, 14.618480742664287, 14.339825653017522, 14.554961376934127, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-19 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-20 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6695, 6667, 6655, 6673, 6707, 6682, 6661, 6702, 6661, 6682, 6689, 6694, 6654, 6659, 6682, 6673, 6654, 6689, 6680, 6654, 6689, 6683, 6689, 6664, 6658, 6654, 6689, 6661, 6654, 6705, 6699, 6706, 6689, 6702, 6689, 6654, 6664, 6689, 6689, 6688, 6654, 6698, 6693, 6676, 6694, 6658, 6674, 6655, 6694, 6706, 6678, 6694, 6654, 6666, 6691, 6654, 6664, 6676 ], "ids": [ 6695, 6667, 6655, 6673, 6707, 6682, 6661, 6702, 6661, 6682, 6689, 6694, 6654, 6659, 6682, 6673, 6654, 6689, 6680, 6654, 6689, 6683, 6689, 6664, 6658, 6654, 6689, 6661, 6654, 6705, 6699, 6706, 6689, 6702, 6689, 6654, 6664, 6689, 6689, 6688, 6654, 6698, 6693, 6676, 6694, 6658, 6674, 6655, 6694, 6706, 6678, 6694, 6654, 6666, 6691, 6654, 6664, 6676 ], "lat": [ 54.0209599818226, 54.02096962344496, 53.80892384370499, 53.80890241146502, 53.80902089070886, 53.52971923996491, 54.020849005752474, 53.91042055645264, 54.020849005752474, 53.52971923996491, 53.864471803645856, 53.845303866200666, 53.83455966672514, 53.80896520272324, 53.52971923996491, 53.80890241146502, 53.83455966672514, 53.864471803645856, 54.020746549558325, 53.83455966672514, 53.864471803645856, 53.80901818337243, 53.864471803645856, 53.59116021500274, 53.5296490438886, 53.83455966672514, 53.864471803645856, 54.020849005752474, 53.83455966672514, 53.55150694013349, 53.80892746585745, 53.80915072481978, 53.864471803645856, 53.91042055645264, 53.864471803645856, 53.83455966672514, 53.59116021500274, 53.864471803645856, 53.864471803645856, 53.80909221822267, 53.83455966672514, 54.021059534496196, 54.22725596601593, 54.020847759299066, 53.845303866200666, 53.5296490438886, 53.80903972625709, 53.80892384370499, 53.845303866200666, 53.80915072481978, 53.83465312047732, 53.845303866200666, 53.83455966672514, 53.809076375885944, 54.02097892369575, 53.83455966672514, 53.59116021500274, 54.020847759299066 ], "legendgroup": "", "lon": [ 14.72836000624202, 14.728602599451175, 14.33978531324949, 14.339950759070799, 14.339754867144269, 14.630780570299253, 14.728603318193455, 14.663223524625673, 14.728603318193455, 14.630780570299253, 13.825501744421523, 13.824118967817144, 14.61843904754546, 14.339689073546207, 14.630780570299253, 14.339950759070799, 14.61843904754546, 13.825501744421523, 14.728456965919694, 14.61843904754546, 13.825501744421523, 14.33973774800166, 13.825501744421523, 14.565206177863494, 14.630604108154332, 14.61843904754546, 13.825501744421523, 14.728603318193455, 14.61843904754546, 14.606512208167038, 14.339827351797773, 14.339825653017522, 13.825501744421523, 14.663223524625673, 13.825501744421523, 14.61843904754546, 14.565206177863494, 13.825501744421523, 13.825501744421523, 14.339735499061648, 14.61843904754546, 14.728615266067688, 13.7785198325034, 14.728650838545583, 13.824118967817144, 14.630604108154332, 14.339912750386873, 14.33978531324949, 13.824118967817144, 14.339825653017522, 14.618480742664287, 13.824118967817144, 14.61843904754546, 14.339652967059697, 14.728585056182643, 14.61843904754546, 14.565206177863494, 14.728650838545583 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-20 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-21 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6689, 6706, 6694, 6694, 6689, 6654, 6680, 6705, 6659, 6689, 6693, 6699, 6689, 6661, 6654, 6706, 6661, 6678, 6689, 6664, 6654, 6691, 6667, 6655, 6676, 6688, 6654, 6658, 6683, 6676, 6695, 6694, 6658, 6661, 6689, 6674, 6664, 6692, 6672, 6673, 6694, 6702, 6654, 6702, 6682, 6682, 6698, 6654, 6673, 6689, 6655, 6689, 6666, 6682, 6689, 6707, 6664, 6654, 6654 ], "ids": [ 6654, 6689, 6706, 6694, 6694, 6689, 6654, 6680, 6705, 6659, 6689, 6693, 6699, 6689, 6661, 6654, 6706, 6661, 6678, 6689, 6664, 6654, 6691, 6667, 6655, 6676, 6688, 6654, 6658, 6683, 6676, 6695, 6694, 6658, 6661, 6689, 6674, 6664, 6692, 6672, 6673, 6694, 6702, 6654, 6702, 6682, 6682, 6698, 6654, 6673, 6689, 6655, 6689, 6666, 6682, 6689, 6707, 6664, 6654, 6654 ], "lat": [ 53.83455966672514, 53.864471803645856, 53.80915072481978, 53.845303866200666, 53.845303866200666, 53.864471803645856, 53.83455966672514, 54.020746549558325, 53.55150694013349, 53.80896520272324, 53.864471803645856, 54.22725596601593, 53.80892746585745, 53.864471803645856, 54.020849005752474, 53.83455966672514, 53.80915072481978, 54.020849005752474, 53.83465312047732, 53.864471803645856, 53.581252739021835, 53.83455966672514, 54.02097892369575, 54.02096962344496, 53.80892384370499, 54.020847759299066, 53.80909221822267, 53.83455966672514, 53.5296490438886, 53.80901818337243, 54.020847759299066, 54.0209599818226, 53.845303866200666, 53.5296490438886, 54.020849005752474, 53.864471803645856, 53.80903972625709, 53.581252739021835, 54.02094959149155, 54.020885788146515, 53.80890241146502, 53.845303866200666, 53.908773817993904, 53.83455966672514, 53.908773817993904, 53.52971923996491, 53.52971923996491, 54.021059534496196, 53.83455966672514, 53.80890241146502, 53.864471803645856, 53.80892384370499, 53.864471803645856, 53.809076375885944, 53.52971923996491, 53.864471803645856, 53.80902089070886, 53.581252739021835, 53.83455966672514, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.61843904754546, 13.825501744421523, 14.339825653017522, 13.824118967817144, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.728456965919694, 14.606512208167038, 14.339689073546207, 13.825501744421523, 13.7785198325034, 14.339827351797773, 13.825501744421523, 14.728603318193455, 14.61843904754546, 14.339825653017522, 14.728603318193455, 14.618480742664287, 13.825501744421523, 14.575450978792862, 14.61843904754546, 14.728585056182643, 14.728602599451175, 14.33978531324949, 14.728650838545583, 14.339735499061648, 14.61843904754546, 14.630604108154332, 14.33973774800166, 14.728650838545583, 14.72836000624202, 13.824118967817144, 14.630604108154332, 14.728603318193455, 13.825501744421523, 14.339912750386873, 14.575450978792862, 14.728666036211786, 14.72847357406484, 14.339950759070799, 13.824118967817144, 14.662246857497017, 14.61843904754546, 14.662246857497017, 14.630780570299253, 14.630780570299253, 14.728615266067688, 14.61843904754546, 14.339950759070799, 13.825501744421523, 14.33978531324949, 13.825501744421523, 14.339652967059697, 14.630780570299253, 13.825501744421523, 14.339754867144269, 14.575450978792862, 14.61843904754546, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-21 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-22 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6682, 6664, 6707, 6682, 6661, 6655, 6689, 6678, 6702, 6674, 6689, 6673, 6654, 6658, 6654, 6655, 6695, 6689, 6676, 6667, 6706, 6692, 6673, 6688, 6658, 6676, 6654, 6666, 6694, 6664, 6661, 6654, 6694, 6702, 6698, 6689, 6699, 6659, 6694, 6689, 6689, 6680, 6694, 6689, 6664, 6682, 6672, 6689, 6661, 6691, 6689, 6693, 6706, 6654, 6654, 6654, 6705, 6683, 6654, 6654 ], "ids": [ 6682, 6664, 6707, 6682, 6661, 6655, 6689, 6678, 6702, 6674, 6689, 6673, 6654, 6658, 6654, 6655, 6695, 6689, 6676, 6667, 6706, 6692, 6673, 6688, 6658, 6676, 6654, 6666, 6694, 6664, 6661, 6654, 6694, 6702, 6698, 6689, 6699, 6659, 6694, 6689, 6689, 6680, 6694, 6689, 6664, 6682, 6672, 6689, 6661, 6691, 6689, 6693, 6706, 6654, 6654, 6654, 6705, 6683, 6654, 6654 ], "lat": [ 53.52971923996491, 53.57134526304094, 53.80902089070886, 53.52971923996491, 54.020849005752474, 53.80892384370499, 53.864471803645856, 53.83465312047732, 53.90712707953516, 53.80903972625709, 53.864471803645856, 53.80890241146502, 53.83455966672514, 53.5296490438886, 53.83455966672514, 53.80892384370499, 54.0209599818226, 53.864471803645856, 54.020847759299066, 54.02096962344496, 53.80915072481978, 54.02094959149155, 53.80890241146502, 53.80909221822267, 53.5296490438886, 54.020847759299066, 53.83455966672514, 53.809076375885944, 53.845303866200666, 53.57134526304094, 54.020849005752474, 53.83455966672514, 53.845303866200666, 53.90712707953516, 54.021059534496196, 53.864471803645856, 53.80892746585745, 53.80896520272324, 53.845303866200666, 53.864471803645856, 53.864471803645856, 54.020746549558325, 53.845303866200666, 53.864471803645856, 53.57134526304094, 53.52971923996491, 54.020885788146515, 53.864471803645856, 54.020849005752474, 54.02097892369575, 53.864471803645856, 54.22725596601593, 53.80915072481978, 53.83455966672514, 53.83455966672514, 53.83455966672514, 53.55150694013349, 53.80901818337243, 53.83455966672514, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.630780570299253, 14.58569577972223, 14.339754867144269, 14.630780570299253, 14.728603318193455, 14.33978531324949, 13.825501744421523, 14.618480742664287, 14.661270190368361, 14.339912750386873, 13.825501744421523, 14.339950759070799, 14.61843904754546, 14.630604108154332, 14.61843904754546, 14.33978531324949, 14.72836000624202, 13.825501744421523, 14.728650838545583, 14.728602599451175, 14.339825653017522, 14.728666036211786, 14.339950759070799, 14.339735499061648, 14.630604108154332, 14.728650838545583, 14.61843904754546, 14.339652967059697, 13.824118967817144, 14.58569577972223, 14.728603318193455, 14.61843904754546, 13.824118967817144, 14.661270190368361, 14.728615266067688, 13.825501744421523, 14.339827351797773, 14.339689073546207, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.728456965919694, 13.824118967817144, 13.825501744421523, 14.58569577972223, 14.630780570299253, 14.72847357406484, 13.825501744421523, 14.728603318193455, 14.728585056182643, 13.825501744421523, 13.7785198325034, 14.339825653017522, 14.61843904754546, 14.61843904754546, 14.61843904754546, 14.606512208167038, 14.33973774800166, 14.61843904754546, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-22 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-23 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6673, 6689, 6680, 6682, 6689, 6707, 6654, 6658, 6659, 6654, 6664, 6672, 6676, 6698, 6654, 6664, 6683, 6693, 6673, 6661, 6655, 6706, 6682, 6706, 6705, 6689, 6689, 6694, 6689, 6689, 6699, 6702, 6661, 6694, 6689, 6654, 6664, 6689, 6654, 6689, 6654, 6674, 6666, 6678, 6654, 6654, 6667, 6655, 6658, 6676, 6654, 6688, 6692, 6694, 6682, 6694, 6695, 6702, 6661, 6691 ], "ids": [ 6673, 6689, 6680, 6682, 6689, 6707, 6654, 6658, 6659, 6654, 6664, 6672, 6676, 6698, 6654, 6664, 6683, 6693, 6673, 6661, 6655, 6706, 6682, 6706, 6705, 6689, 6689, 6694, 6689, 6689, 6699, 6702, 6661, 6694, 6689, 6654, 6664, 6689, 6654, 6689, 6654, 6674, 6666, 6678, 6654, 6654, 6667, 6655, 6658, 6676, 6654, 6688, 6692, 6694, 6682, 6694, 6695, 6702, 6661, 6691 ], "lat": [ 53.80890241146502, 53.864471803645856, 54.020746549558325, 53.52971923996491, 53.864471803645856, 53.80902089070886, 53.83455966672514, 53.5296490438886, 53.80896520272324, 53.83455966672514, 53.56143778706004, 54.020885788146515, 54.020847759299066, 54.021059534496196, 53.83455966672514, 53.56143778706004, 53.80901818337243, 54.22725596601593, 53.80890241146502, 54.020849005752474, 53.80892384370499, 53.80915072481978, 53.52971923996491, 53.80915072481978, 53.55150694013349, 53.864471803645856, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.80892746585745, 53.90548034107642, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.56143778706004, 53.864471803645856, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.80903972625709, 53.809076375885944, 53.83465312047732, 53.83455966672514, 53.83455966672514, 54.02096962344496, 53.80892384370499, 53.5296490438886, 54.020847759299066, 53.83455966672514, 53.80909221822267, 54.02094959149155, 53.845303866200666, 53.52971923996491, 53.845303866200666, 54.0209599818226, 53.90548034107642, 54.020849005752474, 54.02097892369575 ], "legendgroup": "", "lon": [ 14.339950759070799, 13.825501744421523, 14.728456965919694, 14.630780570299253, 13.825501744421523, 14.339754867144269, 14.61843904754546, 14.630604108154332, 14.339689073546207, 14.61843904754546, 14.595940580651597, 14.72847357406484, 14.728650838545583, 14.728615266067688, 14.61843904754546, 14.595940580651597, 14.33973774800166, 13.7785198325034, 14.339950759070799, 14.728603318193455, 14.33978531324949, 14.339825653017522, 14.630780570299253, 14.339825653017522, 14.606512208167038, 13.825501744421523, 13.825501744421523, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.339827351797773, 14.660293523239703, 14.728603318193455, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.595940580651597, 13.825501744421523, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.339912750386873, 14.339652967059697, 14.618480742664287, 14.61843904754546, 14.61843904754546, 14.728602599451175, 14.33978531324949, 14.630604108154332, 14.728650838545583, 14.61843904754546, 14.339735499061648, 14.728666036211786, 13.824118967817144, 14.630780570299253, 13.824118967817144, 14.72836000624202, 14.660293523239703, 14.728603318193455, 14.728585056182643 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-23 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-24 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6702, 6689, 6673, 6654, 6682, 6654, 6667, 6689, 6666, 6691, 6699, 6680, 6678, 6694, 6658, 6676, 6655, 6692, 6661, 6695, 6689, 6654, 6674, 6705, 6683, 6689, 6693, 6694, 6689, 6654, 6664, 6707, 6654, 6664, 6688, 6689, 6676, 6682, 6655, 6689, 6698, 6659, 6694, 6654, 6654, 6682, 6661, 6654, 6672, 6664, 6702, 6689, 6706, 6694, 6661, 6673, 6654, 6658, 6689, 6706 ], "ids": [ 6702, 6689, 6673, 6654, 6682, 6654, 6667, 6689, 6666, 6691, 6699, 6680, 6678, 6694, 6658, 6676, 6655, 6692, 6661, 6695, 6689, 6654, 6674, 6705, 6683, 6689, 6693, 6694, 6689, 6654, 6664, 6707, 6654, 6664, 6688, 6689, 6676, 6682, 6655, 6689, 6698, 6659, 6694, 6654, 6654, 6682, 6661, 6654, 6672, 6664, 6702, 6689, 6706, 6694, 6661, 6673, 6654, 6658, 6689, 6706 ], "lat": [ 53.903833602617674, 53.864471803645856, 53.80890241146502, 53.83455966672514, 53.52971923996491, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.809076375885944, 54.02097892369575, 53.80892746585745, 54.020746549558325, 53.83465312047732, 53.845303866200666, 53.5296490438886, 54.020847759299066, 53.80892384370499, 54.02094959149155, 54.020849005752474, 54.0209599818226, 53.864471803645856, 53.83455966672514, 53.80903972625709, 53.55150694013349, 53.80901818337243, 53.864471803645856, 54.22725596601593, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.55153031107914, 53.80902089070886, 53.83455966672514, 53.55153031107914, 53.80909221822267, 53.864471803645856, 54.020847759299066, 53.52971923996491, 53.80892384370499, 53.864471803645856, 54.021059534496196, 53.80896520272324, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.52971923996491, 54.020849005752474, 53.83455966672514, 54.020885788146515, 53.55153031107914, 53.903833602617674, 53.864471803645856, 53.80915072481978, 53.845303866200666, 54.020849005752474, 53.80890241146502, 53.83455966672514, 53.5296490438886, 53.864471803645856, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.659316856111047, 13.825501744421523, 14.339950759070799, 14.61843904754546, 14.630780570299253, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.339652967059697, 14.728585056182643, 14.339827351797773, 14.728456965919694, 14.618480742664287, 13.824118967817144, 14.630604108154332, 14.728650838545583, 14.33978531324949, 14.728666036211786, 14.728603318193455, 14.72836000624202, 13.825501744421523, 14.61843904754546, 14.339912750386873, 14.606512208167038, 14.33973774800166, 13.825501744421523, 13.7785198325034, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.606185381580964, 14.339754867144269, 14.61843904754546, 14.606185381580964, 14.339735499061648, 13.825501744421523, 14.728650838545583, 14.630780570299253, 14.33978531324949, 13.825501744421523, 14.728615266067688, 14.339689073546207, 13.824118967817144, 14.61843904754546, 14.61843904754546, 14.630780570299253, 14.728603318193455, 14.61843904754546, 14.72847357406484, 14.606185381580964, 14.659316856111047, 13.825501744421523, 14.339825653017522, 13.824118967817144, 14.728603318193455, 14.339950759070799, 14.61843904754546, 14.630604108154332, 13.825501744421523, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-24 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-25 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6676, 6689, 6655, 6689, 6691, 6658, 6694, 6706, 6654, 6689, 6689, 6689, 6695, 6654, 6705, 6674, 6689, 6706, 6694, 6654, 6689, 6699, 6694, 6661, 6661, 6654, 6694, 6689, 6654, 6692, 6688, 6678, 6655, 6676, 6658, 6664, 6667, 6654, 6693, 6702, 6659, 6682, 6698, 6654, 6702, 6666, 6661, 6654, 6664, 6682, 6682, 6673, 6683, 6673, 6707, 6664, 6689, 6654, 6672, 6680 ], "ids": [ 6676, 6689, 6655, 6689, 6691, 6658, 6694, 6706, 6654, 6689, 6689, 6689, 6695, 6654, 6705, 6674, 6689, 6706, 6694, 6654, 6689, 6699, 6694, 6661, 6661, 6654, 6694, 6689, 6654, 6692, 6688, 6678, 6655, 6676, 6658, 6664, 6667, 6654, 6693, 6702, 6659, 6682, 6698, 6654, 6702, 6666, 6661, 6654, 6664, 6682, 6682, 6673, 6683, 6673, 6707, 6664, 6689, 6654, 6672, 6680 ], "lat": [ 54.020847759299066, 53.864471803645856, 53.80892384370499, 53.864471803645856, 54.02097892369575, 53.5296490438886, 53.845303866200666, 53.80915072481978, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.0209599818226, 53.83455966672514, 53.55150694013349, 53.80903972625709, 53.864471803645856, 53.80915072481978, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.80892746585745, 53.845303866200666, 54.020849005752474, 54.020849005752474, 53.83455966672514, 53.845303866200666, 53.864471803645856, 53.83455966672514, 54.02094959149155, 53.80909221822267, 53.83465312047732, 53.80892384370499, 54.020847759299066, 53.5296490438886, 53.5406405901559, 54.02096962344496, 53.83455966672514, 54.22725596601593, 53.90218686415893, 53.80896520272324, 53.52971923996491, 54.021059534496196, 53.83455966672514, 53.90218686415893, 53.809076375885944, 54.020849005752474, 53.83455966672514, 53.5406405901559, 53.52971923996491, 53.52971923996491, 53.80890241146502, 53.80901818337243, 53.80890241146502, 53.80902089070886, 53.5406405901559, 53.864471803645856, 53.83455966672514, 54.020885788146515, 54.020746549558325 ], "legendgroup": "", "lon": [ 14.728650838545583, 13.825501744421523, 14.33978531324949, 13.825501744421523, 14.728585056182643, 14.630604108154332, 13.824118967817144, 14.339825653017522, 14.61843904754546, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.72836000624202, 14.61843904754546, 14.606512208167038, 14.339912750386873, 13.825501744421523, 14.339825653017522, 13.824118967817144, 14.61843904754546, 13.825501744421523, 14.339827351797773, 13.824118967817144, 14.728603318193455, 14.728603318193455, 14.61843904754546, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.728666036211786, 14.339735499061648, 14.618480742664287, 14.33978531324949, 14.728650838545583, 14.630604108154332, 14.618400854810265, 14.728602599451175, 14.61843904754546, 13.7785198325034, 14.658340188982391, 14.339689073546207, 14.630780570299253, 14.728615266067688, 14.61843904754546, 14.658340188982391, 14.339652967059697, 14.728603318193455, 14.61843904754546, 14.618400854810265, 14.630780570299253, 14.630780570299253, 14.339950759070799, 14.33973774800166, 14.339950759070799, 14.339754867144269, 14.618400854810265, 13.825501744421523, 14.61843904754546, 14.72847357406484, 14.728456965919694 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-25 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-26 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6688, 6682, 6694, 6654, 6678, 6689, 6699, 6692, 6707, 6654, 6661, 6682, 6661, 6654, 6705, 6689, 6674, 6673, 6706, 6672, 6695, 6654, 6673, 6702, 6694, 6682, 6689, 6694, 6654, 6706, 6659, 6702, 6658, 6664, 6654, 6654, 6666, 6693, 6655, 6691, 6689, 6689, 6689, 6694, 6676, 6664, 6683, 6664, 6655, 6661, 6654, 6676, 6689, 6680, 6654, 6658, 6689, 6698, 6667, 6689 ], "ids": [ 6688, 6682, 6694, 6654, 6678, 6689, 6699, 6692, 6707, 6654, 6661, 6682, 6661, 6654, 6705, 6689, 6674, 6673, 6706, 6672, 6695, 6654, 6673, 6702, 6694, 6682, 6689, 6694, 6654, 6706, 6659, 6702, 6658, 6664, 6654, 6654, 6666, 6693, 6655, 6691, 6689, 6689, 6689, 6694, 6676, 6664, 6683, 6664, 6655, 6661, 6654, 6676, 6689, 6680, 6654, 6658, 6689, 6698, 6667, 6689 ], "lat": [ 53.80909221822267, 53.52971923996491, 53.845303866200666, 53.83455966672514, 53.83465312047732, 53.864471803645856, 53.80892746585745, 54.02094959149155, 53.80902089070886, 53.83455966672514, 54.020849005752474, 53.52971923996491, 54.020849005752474, 53.83455966672514, 53.55150694013349, 53.864471803645856, 53.80903972625709, 53.80890241146502, 53.80915072481978, 54.020885788146515, 54.0209599818226, 53.83455966672514, 53.80890241146502, 53.90054012570019, 53.845303866200666, 53.52971923996491, 53.864471803645856, 53.845303866200666, 53.83455966672514, 53.80915072481978, 53.80896520272324, 53.90054012570019, 53.5296490438886, 53.52975086923267, 53.83455966672514, 53.83455966672514, 53.809076375885944, 54.22725596601593, 53.80892384370499, 54.02097892369575, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.845303866200666, 54.020847759299066, 53.52975086923267, 53.80901818337243, 53.52975086923267, 53.80892384370499, 54.020849005752474, 53.83455966672514, 54.020847759299066, 53.864471803645856, 54.020746549558325, 53.83455966672514, 53.5296490438886, 53.864471803645856, 54.021059534496196, 54.02096962344496, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.339735499061648, 14.630780570299253, 13.824118967817144, 14.61843904754546, 14.618480742664287, 13.825501744421523, 14.339827351797773, 14.728666036211786, 14.339754867144269, 14.61843904754546, 14.728603318193455, 14.630780570299253, 14.728603318193455, 14.61843904754546, 14.606512208167038, 13.825501744421523, 14.339912750386873, 14.339950759070799, 14.339825653017522, 14.72847357406484, 14.72836000624202, 14.61843904754546, 14.339950759070799, 14.657363521853735, 13.824118967817144, 14.630780570299253, 13.825501744421523, 13.824118967817144, 14.61843904754546, 14.339825653017522, 14.339689073546207, 14.657363521853735, 14.630604108154332, 14.630616328039563, 14.61843904754546, 14.61843904754546, 14.339652967059697, 13.7785198325034, 14.33978531324949, 14.728585056182643, 13.825501744421523, 13.825501744421523, 13.825501744421523, 13.824118967817144, 14.728650838545583, 14.630616328039563, 14.33973774800166, 14.630616328039563, 14.33978531324949, 14.728603318193455, 14.61843904754546, 14.728650838545583, 13.825501744421523, 14.728456965919694, 14.61843904754546, 14.630604108154332, 13.825501744421523, 14.728615266067688, 14.728602599451175, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-26 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-27 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6705, 6667, 6689, 6706, 6706, 6694, 6654, 6702, 6654, 6689, 6689, 6682, 6664, 6694, 6689, 6691, 6689, 6654, 6699, 6666, 6702, 6682, 6654, 6689, 6676, 6655, 6654, 6680, 6661, 6678, 6659, 6693, 6676, 6664, 6692, 6664, 6694, 6688, 6683, 6658, 6707, 6661, 6694, 6654, 6673, 6689, 6689, 6655, 6658, 6673, 6682, 6672, 6689, 6654, 6698, 6654, 6654, 6695, 6674 ], "ids": [ 6661, 6705, 6667, 6689, 6706, 6706, 6694, 6654, 6702, 6654, 6689, 6689, 6682, 6664, 6694, 6689, 6691, 6689, 6654, 6699, 6666, 6702, 6682, 6654, 6689, 6676, 6655, 6654, 6680, 6661, 6678, 6659, 6693, 6676, 6664, 6692, 6664, 6694, 6688, 6683, 6658, 6707, 6661, 6694, 6654, 6673, 6689, 6689, 6655, 6658, 6673, 6682, 6672, 6689, 6654, 6698, 6654, 6654, 6695, 6674 ], "lat": [ 54.020849005752474, 53.55150694013349, 54.02096962344496, 53.864471803645856, 53.80915072481978, 53.80915072481978, 53.845303866200666, 53.83455966672514, 53.89889338724144, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.52975086923267, 53.845303866200666, 53.864471803645856, 54.02097892369575, 53.864471803645856, 53.83455966672514, 53.80892746585745, 53.809076375885944, 53.89889338724144, 53.52971923996491, 53.83455966672514, 53.864471803645856, 54.020847759299066, 53.80892384370499, 53.83455966672514, 54.020746549558325, 54.020849005752474, 53.83465312047732, 53.80896520272324, 54.22725596601593, 54.020847759299066, 53.52975086923267, 54.02094959149155, 53.52975086923267, 53.845303866200666, 53.80909221822267, 53.80901818337243, 53.5296490438886, 53.80902089070886, 54.020849005752474, 53.845303866200666, 53.83455966672514, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.5296490438886, 53.80890241146502, 53.52971923996491, 54.020885788146515, 53.864471803645856, 53.83455966672514, 54.021059534496196, 53.83455966672514, 53.83455966672514, 54.0209599818226, 53.80903972625709 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.606512208167038, 14.728602599451175, 13.825501744421523, 14.339825653017522, 14.339825653017522, 13.824118967817144, 14.61843904754546, 14.656386854725078, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.630616328039563, 13.824118967817144, 13.825501744421523, 14.728585056182643, 13.825501744421523, 14.61843904754546, 14.339827351797773, 14.339652967059697, 14.656386854725078, 14.630780570299253, 14.61843904754546, 13.825501744421523, 14.728650838545583, 14.33978531324949, 14.61843904754546, 14.728456965919694, 14.728603318193455, 14.618480742664287, 14.339689073546207, 13.7785198325034, 14.728650838545583, 14.630616328039563, 14.728666036211786, 14.630616328039563, 13.824118967817144, 14.339735499061648, 14.33973774800166, 14.630604108154332, 14.339754867144269, 14.728603318193455, 13.824118967817144, 14.61843904754546, 14.339950759070799, 13.825501744421523, 13.825501744421523, 14.33978531324949, 14.630604108154332, 14.339950759070799, 14.630780570299253, 14.72847357406484, 13.825501744421523, 14.61843904754546, 14.728615266067688, 14.61843904754546, 14.61843904754546, 14.72836000624202, 14.339912750386873 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-27 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-28 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6664, 6689, 6682, 6655, 6689, 6666, 6689, 6654, 6682, 6661, 6702, 6673, 6673, 6682, 6706, 6683, 6707, 6680, 6659, 6667, 6685, 6702, 6664, 6676, 6694, 6693, 6654, 6689, 6689, 6661, 6654, 6678, 6694, 6689, 6654, 6694, 6654, 6654, 6694, 6695, 6698, 6661, 6706, 6705, 6674, 6654, 6692, 6654, 6689, 6655, 6664, 6658, 6691, 6676, 6672, 6658, 6654, 6699, 6688, 6689, 6689 ], "ids": [ 6664, 6689, 6682, 6655, 6689, 6666, 6689, 6654, 6682, 6661, 6702, 6673, 6673, 6682, 6706, 6683, 6707, 6680, 6659, 6667, 6685, 6702, 6664, 6676, 6694, 6693, 6654, 6689, 6689, 6661, 6654, 6678, 6694, 6689, 6654, 6694, 6654, 6654, 6694, 6695, 6698, 6661, 6706, 6705, 6674, 6654, 6692, 6654, 6689, 6655, 6664, 6658, 6691, 6676, 6672, 6658, 6654, 6699, 6688, 6689, 6689 ], "lat": [ 53.52975086923267, 53.864471803645856, 53.52971923996491, 53.80892384370499, 53.864471803645856, 53.809076375885944, 53.864471803645856, 53.83455966672514, 53.52971923996491, 54.020849005752474, 53.897246648782705, 53.80890241146502, 53.80890241146502, 53.52971923996491, 53.80915072481978, 53.80901818337243, 53.80902089070886, 54.020746549558325, 53.80896520272324, 54.02096962344496, 53.80877462484214, 53.897246648782705, 53.52975086923267, 54.020847759299066, 53.845303866200666, 54.22725596601593, 53.83455966672514, 53.864471803645856, 53.864471803645856, 54.020849005752474, 53.83455966672514, 53.83465312047732, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.845303866200666, 54.0209599818226, 54.021059534496196, 54.020849005752474, 53.80915072481978, 53.55150694013349, 53.80903972625709, 53.83455966672514, 54.02094959149155, 53.83455966672514, 53.864471803645856, 53.80892384370499, 53.52975086923267, 53.5296490438886, 54.02097892369575, 54.020847759299066, 54.020885788146515, 53.5296490438886, 53.83455966672514, 53.80892746585745, 53.80909221822267, 53.864471803645856, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.630616328039563, 13.825501744421523, 14.630780570299253, 14.33978531324949, 13.825501744421523, 14.339652967059697, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.728603318193455, 14.655410187596422, 14.339950759070799, 14.339950759070799, 14.630780570299253, 14.339825653017522, 14.33973774800166, 14.339754867144269, 14.728456965919694, 14.339689073546207, 14.728602599451175, 14.340041925554642, 14.655410187596422, 14.630616328039563, 14.728650838545583, 13.824118967817144, 13.7785198325034, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.61843904754546, 14.618480742664287, 13.824118967817144, 13.825501744421523, 14.61843904754546, 13.824118967817144, 14.61843904754546, 14.61843904754546, 13.824118967817144, 14.72836000624202, 14.728615266067688, 14.728603318193455, 14.339825653017522, 14.606512208167038, 14.339912750386873, 14.61843904754546, 14.728666036211786, 14.61843904754546, 13.825501744421523, 14.33978531324949, 14.630616328039563, 14.630604108154332, 14.728585056182643, 14.728650838545583, 14.72847357406484, 14.630604108154332, 14.61843904754546, 14.339827351797773, 14.339735499061648, 13.825501744421523, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-28 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-29 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6695, 6661, 6694, 6689, 6654, 6689, 6689, 6691, 6707, 6655, 6682, 6661, 6654, 6654, 6676, 6692, 6706, 6673, 6698, 6654, 6673, 6689, 6694, 6676, 6694, 6654, 6654, 6705, 6688, 6658, 6674, 6655, 6661, 6659, 6689, 6654, 6658, 6678, 6689, 6699, 6706, 6664, 6702, 6654, 6689, 6682, 6683, 6680, 6666, 6667, 6672, 6689, 6664, 6682, 6654, 6693, 6694, 6702, 6685, 6689, 6664 ], "ids": [ 6695, 6661, 6694, 6689, 6654, 6689, 6689, 6691, 6707, 6655, 6682, 6661, 6654, 6654, 6676, 6692, 6706, 6673, 6698, 6654, 6673, 6689, 6694, 6676, 6694, 6654, 6654, 6705, 6688, 6658, 6674, 6655, 6661, 6659, 6689, 6654, 6658, 6678, 6689, 6699, 6706, 6664, 6702, 6654, 6689, 6682, 6683, 6680, 6666, 6667, 6672, 6689, 6664, 6682, 6654, 6693, 6694, 6702, 6685, 6689, 6664 ], "lat": [ 54.0209599818226, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.864471803645856, 53.864471803645856, 54.02097892369575, 53.80902089070886, 53.80892384370499, 53.52971923996491, 54.020849005752474, 53.83455966672514, 53.83455966672514, 54.020847759299066, 54.02094959149155, 53.80915072481978, 53.80890241146502, 54.021059534496196, 53.83455966672514, 53.80890241146502, 53.864471803645856, 53.845303866200666, 54.020847759299066, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.55150694013349, 53.80909221822267, 53.5296490438886, 53.80903972625709, 53.80892384370499, 54.020849005752474, 53.80896520272324, 53.864471803645856, 53.83455966672514, 53.5296490438886, 53.83465312047732, 53.864471803645856, 53.80892746585745, 53.80915072481978, 53.52975086923267, 53.89559991032396, 53.83455966672514, 53.864471803645856, 53.52971923996491, 53.80901818337243, 54.020746549558325, 53.809076375885944, 54.02096962344496, 54.020885788146515, 53.864471803645856, 53.52975086923267, 53.52971923996491, 53.83455966672514, 54.22725596601593, 53.845303866200666, 53.89559991032396, 53.80877462484214, 53.864471803645856, 53.52975086923267 ], "legendgroup": "", "lon": [ 14.72836000624202, 14.728603318193455, 13.824118967817144, 13.825501744421523, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.728585056182643, 14.339754867144269, 14.33978531324949, 14.630780570299253, 14.728603318193455, 14.61843904754546, 14.61843904754546, 14.728650838545583, 14.728666036211786, 14.339825653017522, 14.339950759070799, 14.728615266067688, 14.61843904754546, 14.339950759070799, 13.825501744421523, 13.824118967817144, 14.728650838545583, 13.824118967817144, 14.61843904754546, 14.61843904754546, 14.606512208167038, 14.339735499061648, 14.630604108154332, 14.339912750386873, 14.33978531324949, 14.728603318193455, 14.339689073546207, 13.825501744421523, 14.61843904754546, 14.630604108154332, 14.618480742664287, 13.825501744421523, 14.339827351797773, 14.339825653017522, 14.630616328039563, 14.654433520467766, 14.61843904754546, 13.825501744421523, 14.630780570299253, 14.33973774800166, 14.728456965919694, 14.339652967059697, 14.728602599451175, 14.72847357406484, 13.825501744421523, 14.630616328039563, 14.630780570299253, 14.61843904754546, 13.7785198325034, 13.824118967817144, 14.654433520467766, 14.340041925554642, 13.825501744421523, 14.630616328039563 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-29 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-30 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6694, 6707, 6673, 6680, 6673, 6654, 6693, 6659, 6654, 6688, 6658, 6706, 6661, 6682, 6654, 6702, 6672, 6689, 6654, 6689, 6694, 6685, 6706, 6698, 6654, 6694, 6654, 6661, 6683, 6655, 6689, 6654, 6664, 6682, 6702, 6691, 6658, 6682, 6676, 6664, 6689, 6692, 6678, 6654, 6689, 6689, 6695, 6676, 6674, 6667, 6699, 6661, 6666, 6664, 6689, 6655, 6694, 6705, 6689, 6654 ], "ids": [ 6689, 6694, 6707, 6673, 6680, 6673, 6654, 6693, 6659, 6654, 6688, 6658, 6706, 6661, 6682, 6654, 6702, 6672, 6689, 6654, 6689, 6694, 6685, 6706, 6698, 6654, 6694, 6654, 6661, 6683, 6655, 6689, 6654, 6664, 6682, 6702, 6691, 6658, 6682, 6676, 6664, 6689, 6692, 6678, 6654, 6689, 6689, 6695, 6676, 6674, 6667, 6699, 6661, 6666, 6664, 6689, 6655, 6694, 6705, 6689, 6654 ], "lat": [ 53.864471803645856, 53.845303866200666, 53.80902089070886, 53.80890241146502, 54.020746549558325, 53.80890241146502, 53.83455966672514, 54.22725596601593, 53.80896520272324, 53.83455966672514, 53.80909221822267, 53.5296490438886, 53.80915072481978, 54.020849005752474, 53.52971923996491, 53.83455966672514, 53.89395317186522, 54.020885788146515, 53.864471803645856, 53.83455966672514, 53.864471803645856, 53.845303866200666, 53.80877462484214, 53.80915072481978, 54.021059534496196, 53.83455966672514, 53.845303866200666, 53.83455966672514, 54.020849005752474, 53.80901818337243, 53.80892384370499, 53.864471803645856, 53.83455966672514, 53.52975086923267, 53.52971923996491, 53.89395317186522, 54.02097892369575, 53.5296490438886, 53.52971923996491, 54.020847759299066, 53.52975086923267, 53.864471803645856, 54.02094959149155, 53.83465312047732, 53.83455966672514, 53.864471803645856, 53.864471803645856, 54.0209599818226, 54.020847759299066, 53.80903972625709, 54.02096962344496, 53.80892746585745, 54.020849005752474, 53.809076375885944, 53.52975086923267, 53.864471803645856, 53.80892384370499, 53.845303866200666, 53.55150694013349, 53.864471803645856, 53.83455966672514 ], "legendgroup": "", "lon": [ 13.825501744421523, 13.824118967817144, 14.339754867144269, 14.339950759070799, 14.728456965919694, 14.339950759070799, 14.61843904754546, 13.7785198325034, 14.339689073546207, 14.61843904754546, 14.339735499061648, 14.630604108154332, 14.339825653017522, 14.728603318193455, 14.630780570299253, 14.61843904754546, 14.65345685333911, 14.72847357406484, 13.825501744421523, 14.61843904754546, 13.825501744421523, 13.824118967817144, 14.340041925554642, 14.339825653017522, 14.728615266067688, 14.61843904754546, 13.824118967817144, 14.61843904754546, 14.728603318193455, 14.33973774800166, 14.33978531324949, 13.825501744421523, 14.61843904754546, 14.630616328039563, 14.630780570299253, 14.65345685333911, 14.728585056182643, 14.630604108154332, 14.630780570299253, 14.728650838545583, 14.630616328039563, 13.825501744421523, 14.728666036211786, 14.618480742664287, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.72836000624202, 14.728650838545583, 14.339912750386873, 14.728602599451175, 14.339827351797773, 14.728603318193455, 14.339652967059697, 14.630616328039563, 13.825501744421523, 14.33978531324949, 13.824118967817144, 14.606512208167038, 13.825501744421523, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-30 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-01-31 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6698, 6706, 6705, 6689, 6654, 6654, 6694, 6694, 6695, 6694, 6682, 6685, 6689, 6706, 6661, 6666, 6682, 6667, 6654, 6689, 6702, 6672, 6664, 6654, 6689, 6654, 6689, 6661, 6699, 6693, 6682, 6673, 6688, 6661, 6689, 6692, 6659, 6710, 6654, 6658, 6694, 6710, 6689, 6676, 6654, 6680, 6664, 6707, 6691, 6683, 6655, 6702, 6664, 6676, 6658, 6673, 6674, 6689, 6678, 6655, 6689, 6654, 6654 ], "ids": [ 6698, 6706, 6705, 6689, 6654, 6654, 6694, 6694, 6695, 6694, 6682, 6685, 6689, 6706, 6661, 6666, 6682, 6667, 6654, 6689, 6702, 6672, 6664, 6654, 6689, 6654, 6689, 6661, 6699, 6693, 6682, 6673, 6688, 6661, 6689, 6692, 6659, 6710, 6654, 6658, 6694, 6710, 6689, 6676, 6654, 6680, 6664, 6707, 6691, 6683, 6655, 6702, 6664, 6676, 6658, 6673, 6674, 6689, 6678, 6655, 6689, 6654, 6654 ], "lat": [ 54.021059534496196, 53.80915072481978, 53.55150694013349, 53.864471803645856, 53.83455966672514, 53.83455966672514, 53.845303866200666, 53.845303866200666, 54.0209599818226, 53.845303866200666, 53.52971923996491, 53.80877462484214, 53.864471803645856, 53.80915072481978, 54.020849005752474, 53.809076375885944, 53.52971923996491, 54.02096962344496, 53.83455966672514, 53.864471803645856, 53.892306433406475, 54.020885788146515, 53.52975086923267, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.864471803645856, 54.020849005752474, 53.80892746585745, 54.22725596601593, 53.52971923996491, 53.80890241146502, 53.80909221822267, 54.020849005752474, 53.864471803645856, 54.02094959149155, 53.80896520272324, 53.529501927000496, 53.83455966672514, 53.5296490438886, 53.845303866200666, 53.529501927000496, 53.864471803645856, 54.020847759299066, 53.83455966672514, 54.020746549558325, 53.52975086923267, 53.80902089070886, 54.02097892369575, 53.80901818337243, 53.80892384370499, 53.892306433406475, 53.52975086923267, 54.020847759299066, 53.5296490438886, 53.80890241146502, 53.80903972625709, 53.864471803645856, 53.83465312047732, 53.80892384370499, 53.864471803645856, 53.83455966672514, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.728615266067688, 14.339825653017522, 14.606512208167038, 13.825501744421523, 14.61843904754546, 14.61843904754546, 13.824118967817144, 13.824118967817144, 14.72836000624202, 13.824118967817144, 14.630780570299253, 14.340041925554642, 13.825501744421523, 14.339825653017522, 14.728603318193455, 14.339652967059697, 14.630780570299253, 14.728602599451175, 14.61843904754546, 13.825501744421523, 14.652480186210452, 14.72847357406484, 14.630616328039563, 14.61843904754546, 13.825501744421523, 14.61843904754546, 13.825501744421523, 14.728603318193455, 14.339827351797773, 13.7785198325034, 14.630780570299253, 14.339950759070799, 14.339735499061648, 14.728603318193455, 13.825501744421523, 14.728666036211786, 14.339689073546207, 14.630491645543602, 14.61843904754546, 14.630604108154332, 13.824118967817144, 14.630491645543602, 13.825501744421523, 14.728650838545583, 14.61843904754546, 14.728456965919694, 14.630616328039563, 14.339754867144269, 14.728585056182643, 14.33973774800166, 14.33978531324949, 14.652480186210452, 14.630616328039563, 14.728650838545583, 14.630604108154332, 14.339950759070799, 14.339912750386873, 13.825501744421523, 14.618480742664287, 14.33978531324949, 13.825501744421523, 14.61843904754546, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-01-31 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-01 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6664, 6654, 6693, 6654, 6655, 6694, 6654, 6688, 6689, 6694, 6694, 6664, 6694, 6658, 6680, 6659, 6702, 6699, 6676, 6710, 6685, 6706, 6672, 6655, 6692, 6658, 6661, 6654, 6689, 6689, 6673, 6674, 6661, 6682, 6698, 6666, 6691, 6654, 6695, 6689, 6676, 6706, 6689, 6667, 6654, 6664, 6707, 6682, 6702, 6689, 6689, 6661, 6654, 6683, 6705, 6682, 6689, 6689, 6654, 6673, 6678, 6710 ], "ids": [ 6654, 6664, 6654, 6693, 6654, 6655, 6694, 6654, 6688, 6689, 6694, 6694, 6664, 6694, 6658, 6680, 6659, 6702, 6699, 6676, 6710, 6685, 6706, 6672, 6655, 6692, 6658, 6661, 6654, 6689, 6689, 6673, 6674, 6661, 6682, 6698, 6666, 6691, 6654, 6695, 6689, 6676, 6706, 6689, 6667, 6654, 6664, 6707, 6682, 6702, 6689, 6689, 6661, 6654, 6683, 6705, 6682, 6689, 6689, 6654, 6673, 6678, 6710 ], "lat": [ 53.83455966672514, 53.52975086923267, 53.83455966672514, 54.22725596601593, 53.83455966672514, 53.80892384370499, 53.845303866200666, 53.83455966672514, 53.80909221822267, 53.864471803645856, 53.845303866200666, 53.845303866200666, 53.52975086923267, 53.845303866200666, 53.5296490438886, 54.020746549558325, 53.80896520272324, 53.890659694947736, 53.80892746585745, 54.020847759299066, 53.53024775341351, 53.80877462484214, 53.80915072481978, 54.020885788146515, 53.80892384370499, 54.02094959149155, 53.5296490438886, 54.020849005752474, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.80890241146502, 53.80903972625709, 54.020849005752474, 53.52971923996491, 54.021059534496196, 53.809076375885944, 54.02097892369575, 53.83455966672514, 54.0209599818226, 53.864471803645856, 54.020847759299066, 53.80915072481978, 53.864471803645856, 54.02096962344496, 53.83455966672514, 53.52975086923267, 53.80902089070886, 53.52971923996491, 53.890659694947736, 53.864471803645856, 53.864471803645856, 54.020849005752474, 53.83455966672514, 53.80901818337243, 53.55150694013349, 53.52971923996491, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.80890241146502, 53.83465312047732, 53.53024775341351 ], "legendgroup": "", "lon": [ 14.61843904754546, 14.630616328039563, 14.61843904754546, 13.7785198325034, 14.61843904754546, 14.33978531324949, 13.824118967817144, 14.61843904754546, 14.339735499061648, 13.825501744421523, 13.824118967817144, 13.824118967817144, 14.630616328039563, 13.824118967817144, 14.630604108154332, 14.728456965919694, 14.339689073546207, 14.651503519081796, 14.339827351797773, 14.728650838545583, 14.62969035280976, 14.340041925554642, 14.339825653017522, 14.72847357406484, 14.33978531324949, 14.728666036211786, 14.630604108154332, 14.728603318193455, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.339950759070799, 14.339912750386873, 14.728603318193455, 14.630780570299253, 14.728615266067688, 14.339652967059697, 14.728585056182643, 14.61843904754546, 14.72836000624202, 13.825501744421523, 14.728650838545583, 14.339825653017522, 13.825501744421523, 14.728602599451175, 14.61843904754546, 14.630616328039563, 14.339754867144269, 14.630780570299253, 14.651503519081796, 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.61843904754546, 14.33973774800166, 14.606512208167038, 14.630780570299253, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.339950759070799, 14.618480742664287, 14.62969035280976 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-01 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-02 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6683, 6685, 6689, 6694, 6682, 6654, 6689, 6689, 6658, 6694, 6667, 6689, 6702, 6655, 6692, 6658, 6654, 6689, 6673, 6654, 6689, 6664, 6664, 6689, 6673, 6661, 6698, 6705, 6695, 6689, 6693, 6659, 6706, 6655, 6691, 6707, 6654, 6699, 6688, 6654, 6706, 6694, 6676, 6654, 6682, 6680, 6689, 6654, 6694, 6710, 6676, 6674, 6654, 6654, 6664, 6661, 6661, 6702, 6682, 6672, 6710, 6666, 6678 ], "ids": [ 6683, 6685, 6689, 6694, 6682, 6654, 6689, 6689, 6658, 6694, 6667, 6689, 6702, 6655, 6692, 6658, 6654, 6689, 6673, 6654, 6689, 6664, 6664, 6689, 6673, 6661, 6698, 6705, 6695, 6689, 6693, 6659, 6706, 6655, 6691, 6707, 6654, 6699, 6688, 6654, 6706, 6694, 6676, 6654, 6682, 6680, 6689, 6654, 6694, 6710, 6676, 6674, 6654, 6654, 6664, 6661, 6661, 6702, 6682, 6672, 6710, 6666, 6678 ], "lat": [ 53.80901818337243, 53.80877462484214, 53.864471803645856, 53.845303866200666, 53.52971923996491, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.5296490438886, 53.845303866200666, 54.02096962344496, 53.864471803645856, 53.88901295648899, 53.80892384370499, 54.02094959149155, 53.5296490438886, 53.83455966672514, 53.864471803645856, 53.80890241146502, 53.83455966672514, 53.864471803645856, 53.52975086923267, 53.52975086923267, 53.864471803645856, 53.80890241146502, 54.020849005752474, 54.021059534496196, 53.55150694013349, 54.0209599818226, 53.864471803645856, 54.22725596601593, 53.80896520272324, 53.80915072481978, 53.80892384370499, 54.02097892369575, 53.80902089070886, 53.83455966672514, 53.80892746585745, 53.80909221822267, 53.83455966672514, 53.80915072481978, 53.845303866200666, 54.020847759299066, 53.83455966672514, 53.52971923996491, 54.020746549558325, 53.864471803645856, 53.83455966672514, 53.845303866200666, 53.53099357982653, 54.020847759299066, 53.80903972625709, 53.83455966672514, 53.83455966672514, 53.52975086923267, 54.020849005752474, 54.020849005752474, 53.88901295648899, 53.52971923996491, 54.020885788146515, 53.53099357982653, 53.809076375885944, 53.83465312047732 ], "legendgroup": "", "lon": [ 14.33973774800166, 14.340041925554642, 13.825501744421523, 13.824118967817144, 14.630780570299253, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.630604108154332, 13.824118967817144, 14.728602599451175, 13.825501744421523, 14.65052685195314, 14.33978531324949, 14.728666036211786, 14.630604108154332, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.61843904754546, 13.825501744421523, 14.630616328039563, 14.630616328039563, 13.825501744421523, 14.339950759070799, 14.728603318193455, 14.728615266067688, 14.606512208167038, 14.72836000624202, 13.825501744421523, 13.7785198325034, 14.339689073546207, 14.339825653017522, 14.33978531324949, 14.728585056182643, 14.339754867144269, 14.61843904754546, 14.339827351797773, 14.339735499061648, 14.61843904754546, 14.339825653017522, 13.824118967817144, 14.728650838545583, 14.61843904754546, 14.630780570299253, 14.728456965919694, 13.825501744421523, 14.61843904754546, 13.824118967817144, 14.62888906007592, 14.728650838545583, 14.339912750386873, 14.61843904754546, 14.61843904754546, 14.630616328039563, 14.728603318193455, 14.728603318193455, 14.65052685195314, 14.630780570299253, 14.72847357406484, 14.62888906007592, 14.339652967059697, 14.618480742664287 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-02 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-03 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6655, 6689, 6661, 6694, 6682, 6654, 6702, 6659, 6654, 6654, 6654, 6673, 6699, 6672, 6658, 6689, 6689, 6698, 6674, 6658, 6689, 6655, 6694, 6654, 6682, 6654, 6664, 6678, 6664, 6666, 6654, 6689, 6673, 6685, 6695, 6694, 6688, 6706, 6693, 6676, 6710, 6705, 6706, 6661, 6691, 6680, 6661, 6694, 6692, 6689, 6654, 6710, 6689, 6689, 6707, 6676, 6702, 6682, 6683, 6664, 6654, 6689, 6667 ], "ids": [ 6655, 6689, 6661, 6694, 6682, 6654, 6702, 6659, 6654, 6654, 6654, 6673, 6699, 6672, 6658, 6689, 6689, 6698, 6674, 6658, 6689, 6655, 6694, 6654, 6682, 6654, 6664, 6678, 6664, 6666, 6654, 6689, 6673, 6685, 6695, 6694, 6688, 6706, 6693, 6676, 6710, 6705, 6706, 6661, 6691, 6680, 6661, 6694, 6692, 6689, 6654, 6710, 6689, 6689, 6707, 6676, 6702, 6682, 6683, 6664, 6654, 6689, 6667 ], "lat": [ 53.80892384370499, 53.864471803645856, 54.020849005752474, 53.845303866200666, 53.52971923996491, 53.83455966672514, 53.88736621803025, 53.80896520272324, 53.83455966672514, 53.83455966672514, 53.83455966672514, 53.80890241146502, 53.80892746585745, 54.020885788146515, 53.5296490438886, 53.864471803645856, 53.864471803645856, 54.021059534496196, 53.80903972625709, 53.5296490438886, 53.864471803645856, 53.80892384370499, 53.845303866200666, 53.83455966672514, 53.52971923996491, 53.83455966672514, 53.52975086923267, 53.83465312047732, 53.52975086923267, 53.809076375885944, 53.83455966672514, 53.864471803645856, 53.80890241146502, 53.80877462484214, 54.0209599818226, 53.845303866200666, 53.80909221822267, 53.80915072481978, 54.22725596601593, 54.020847759299066, 53.531739406239545, 53.55150694013349, 53.80915072481978, 54.020849005752474, 54.02097892369575, 54.020746549558325, 54.020849005752474, 53.845303866200666, 54.02094959149155, 53.864471803645856, 53.83455966672514, 53.531739406239545, 53.864471803645856, 53.864471803645856, 53.80902089070886, 54.020847759299066, 53.88736621803025, 53.52971923996491, 53.80901818337243, 53.52975086923267, 53.83455966672514, 53.864471803645856, 54.02096962344496 ], "legendgroup": "", "lon": [ 14.33978531324949, 13.825501744421523, 14.728603318193455, 13.824118967817144, 14.630780570299253, 14.61843904754546, 14.649550184824484, 14.339689073546207, 14.61843904754546, 14.61843904754546, 14.61843904754546, 14.339950759070799, 14.339827351797773, 14.72847357406484, 14.630604108154332, 13.825501744421523, 13.825501744421523, 14.728615266067688, 14.339912750386873, 14.630604108154332, 13.825501744421523, 14.33978531324949, 13.824118967817144, 14.61843904754546, 14.630780570299253, 14.61843904754546, 14.630616328039563, 14.618480742664287, 14.630616328039563, 14.339652967059697, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.340041925554642, 14.72836000624202, 13.824118967817144, 14.339735499061648, 14.339825653017522, 13.7785198325034, 14.728650838545583, 14.628087767342079, 14.606512208167038, 14.339825653017522, 14.728603318193455, 14.728585056182643, 14.728456965919694, 14.728603318193455, 13.824118967817144, 14.728666036211786, 13.825501744421523, 14.61843904754546, 14.628087767342079, 13.825501744421523, 13.825501744421523, 14.339754867144269, 14.728650838545583, 14.649550184824484, 14.630780570299253, 14.33973774800166, 14.630616328039563, 14.61843904754546, 13.825501744421523, 14.728602599451175 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-03 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-04 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6695, 6672, 6676, 6655, 6689, 6664, 6694, 6694, 6658, 6693, 6659, 6699, 6658, 6689, 6654, 6673, 6654, 6689, 6689, 6682, 6682, 6667, 6689, 6683, 6654, 6688, 6654, 6682, 6654, 6694, 6710, 6685, 6654, 6654, 6706, 6666, 6664, 6661, 6661, 6710, 6678, 6655, 6702, 6705, 6654, 6680, 6654, 6673, 6698, 6706, 6661, 6707, 6689, 6692, 6691, 6689, 6674, 6664, 6689, 6689, 6702, 6676, 6694 ], "ids": [ 6695, 6672, 6676, 6655, 6689, 6664, 6694, 6694, 6658, 6693, 6659, 6699, 6658, 6689, 6654, 6673, 6654, 6689, 6689, 6682, 6682, 6667, 6689, 6683, 6654, 6688, 6654, 6682, 6654, 6694, 6710, 6685, 6654, 6654, 6706, 6666, 6664, 6661, 6661, 6710, 6678, 6655, 6702, 6705, 6654, 6680, 6654, 6673, 6698, 6706, 6661, 6707, 6689, 6692, 6691, 6689, 6674, 6664, 6689, 6689, 6702, 6676, 6694 ], "lat": [ 54.0209599818226, 54.020885788146515, 54.020847759299066, 53.80892384370499, 53.864471803645856, 53.52975086923267, 53.845303866200666, 53.845303866200666, 53.5296490438886, 54.22725596601593, 53.80896520272324, 53.80892746585745, 53.5296490438886, 53.864471803645856, 53.83455966672514, 53.80890241146502, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.52971923996491, 54.02096962344496, 53.864471803645856, 53.80901818337243, 53.83455966672514, 53.80909221822267, 53.83455966672514, 53.52971923996491, 53.83455966672514, 53.845303866200666, 53.532485232652554, 53.80877462484214, 53.83455966672514, 53.83455966672514, 53.80915072481978, 53.809076375885944, 53.52975086923267, 54.020849005752474, 54.020849005752474, 53.532485232652554, 53.83465312047732, 53.80892384370499, 53.885719479571506, 53.55150694013349, 53.83455966672514, 54.020746549558325, 53.83455966672514, 53.80890241146502, 54.021059534496196, 53.80915072481978, 54.020849005752474, 53.80902089070886, 53.864471803645856, 54.02094959149155, 54.02097892369575, 53.864471803645856, 53.80903972625709, 53.52975086923267, 53.864471803645856, 53.864471803645856, 53.885719479571506, 54.020847759299066, 53.845303866200666 ], "legendgroup": "", "lon": [ 14.72836000624202, 14.72847357406484, 14.728650838545583, 14.33978531324949, 13.825501744421523, 14.630616328039563, 13.824118967817144, 13.824118967817144, 14.630604108154332, 13.7785198325034, 14.339689073546207, 14.339827351797773, 14.630604108154332, 13.825501744421523, 14.61843904754546, 14.339950759070799, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.630780570299253, 14.728602599451175, 13.825501744421523, 14.33973774800166, 14.61843904754546, 14.339735499061648, 14.61843904754546, 14.630780570299253, 14.61843904754546, 13.824118967817144, 14.627286474608239, 14.340041925554642, 14.61843904754546, 14.61843904754546, 14.339825653017522, 14.339652967059697, 14.630616328039563, 14.728603318193455, 14.728603318193455, 14.627286474608239, 14.618480742664287, 14.33978531324949, 14.648573517695826, 14.606512208167038, 14.61843904754546, 14.728456965919694, 14.61843904754546, 14.339950759070799, 14.728615266067688, 14.339825653017522, 14.728603318193455, 14.339754867144269, 13.825501744421523, 14.728666036211786, 14.728585056182643, 13.825501744421523, 14.339912750386873, 14.630616328039563, 13.825501744421523, 13.825501744421523, 14.648573517695826, 14.728650838545583, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-04 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-05 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6682, 6680, 6673, 6689, 6710, 6654, 6689, 6664, 6659, 6674, 6676, 6693, 6689, 6661, 6689, 6685, 6694, 6667, 6705, 6654, 6661, 6654, 6706, 6673, 6683, 6654, 6654, 6672, 6695, 6655, 6658, 6707, 6702, 6676, 6691, 6689, 6710, 6689, 6654, 6694, 6654, 6702, 6655, 6664, 6666, 6661, 6678, 6692, 6682, 6654, 6664, 6658, 6706, 6689, 6689, 6682, 6698, 6694, 6688, 6654, 6689, 6694, 6699 ], "ids": [ 6682, 6680, 6673, 6689, 6710, 6654, 6689, 6664, 6659, 6674, 6676, 6693, 6689, 6661, 6689, 6685, 6694, 6667, 6705, 6654, 6661, 6654, 6706, 6673, 6683, 6654, 6654, 6672, 6695, 6655, 6658, 6707, 6702, 6676, 6691, 6689, 6710, 6689, 6654, 6694, 6654, 6702, 6655, 6664, 6666, 6661, 6678, 6692, 6682, 6654, 6664, 6658, 6706, 6689, 6689, 6682, 6698, 6694, 6688, 6654, 6689, 6694, 6699 ], "lat": [ 53.52971923996491, 54.020746549558325, 53.80890241146502, 53.864471803645856, 53.53323105906557, 53.83455966672514, 53.864471803645856, 53.52975086923267, 53.80896520272324, 53.80903972625709, 54.020847759299066, 54.22725596601593, 53.864471803645856, 54.020849005752474, 53.864471803645856, 53.80877462484214, 53.845303866200666, 54.02096962344496, 53.55150694013349, 53.83455966672514, 54.020849005752474, 53.83455966672514, 53.80915072481978, 53.80890241146502, 53.80901818337243, 53.83455966672514, 53.83455966672514, 54.020885788146515, 54.0209599818226, 53.80892384370499, 53.5296490438886, 53.80902089070886, 53.88407274111276, 54.020847759299066, 54.02097892369575, 53.864471803645856, 53.53323105906557, 53.864471803645856, 53.83455966672514, 53.845303866200666, 53.83455966672514, 53.88407274111276, 53.80892384370499, 53.52975086923267, 53.809076375885944, 54.020849005752474, 53.83465312047732, 54.02094959149155, 53.52971923996491, 53.83455966672514, 53.52975086923267, 53.5296490438886, 53.80915072481978, 53.864471803645856, 53.864471803645856, 53.52971923996491, 54.021059534496196, 53.845303866200666, 53.80909221822267, 53.83455966672514, 53.864471803645856, 53.845303866200666, 53.80892746585745 ], "legendgroup": "", "lon": [ 14.630780570299253, 14.728456965919694, 14.339950759070799, 13.825501744421523, 14.626485181874397, 14.61843904754546, 13.825501744421523, 14.630616328039563, 14.339689073546207, 14.339912750386873, 14.728650838545583, 13.7785198325034, 13.825501744421523, 14.728603318193455, 13.825501744421523, 14.340041925554642, 13.824118967817144, 14.728602599451175, 14.606512208167038, 14.61843904754546, 14.728603318193455, 14.61843904754546, 14.339825653017522, 14.339950759070799, 14.33973774800166, 14.61843904754546, 14.61843904754546, 14.72847357406484, 14.72836000624202, 14.33978531324949, 14.630604108154332, 14.339754867144269, 14.64759685056717, 14.728650838545583, 14.728585056182643, 13.825501744421523, 14.626485181874397, 13.825501744421523, 14.61843904754546, 13.824118967817144, 14.61843904754546, 14.64759685056717, 14.33978531324949, 14.630616328039563, 14.339652967059697, 14.728603318193455, 14.618480742664287, 14.728666036211786, 14.630780570299253, 14.61843904754546, 14.630616328039563, 14.630604108154332, 14.339825653017522, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.728615266067688, 13.824118967817144, 14.339735499061648, 14.61843904754546, 13.825501744421523, 13.824118967817144, 14.339827351797773 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-05 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-06 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6695, 6654, 6678, 6694, 6689, 6666, 6694, 6706, 6706, 6676, 6710, 6661, 6705, 6664, 6689, 6676, 6664, 6682, 6693, 6689, 6688, 6691, 6707, 6661, 6685, 6654, 6658, 6654, 6682, 6710, 6689, 6655, 6654, 6689, 6655, 6667, 6689, 6689, 6664, 6694, 6654, 6674, 6654, 6689, 6673, 6654, 6661, 6694, 6702, 6702, 6672, 6698, 6680, 6689, 6658, 6699, 6683, 6673, 6654, 6682, 6692, 6659, 6654 ], "ids": [ 6695, 6654, 6678, 6694, 6689, 6666, 6694, 6706, 6706, 6676, 6710, 6661, 6705, 6664, 6689, 6676, 6664, 6682, 6693, 6689, 6688, 6691, 6707, 6661, 6685, 6654, 6658, 6654, 6682, 6710, 6689, 6655, 6654, 6689, 6655, 6667, 6689, 6689, 6664, 6694, 6654, 6674, 6654, 6689, 6673, 6654, 6661, 6694, 6702, 6702, 6672, 6698, 6680, 6689, 6658, 6699, 6683, 6673, 6654, 6682, 6692, 6659, 6654 ], "lat": [ 54.0209599818226, 53.83455966672514, 53.83465312047732, 53.845303866200666, 53.864471803645856, 53.809076375885944, 53.845303866200666, 53.80915072481978, 53.80915072481978, 54.020847759299066, 53.53397688547859, 54.020849005752474, 53.55150694013349, 53.52975086923267, 53.864471803645856, 54.020847759299066, 53.52975086923267, 53.52971923996491, 54.22725596601593, 53.864471803645856, 53.80909221822267, 54.02097892369575, 53.80902089070886, 54.020849005752474, 53.80877462484214, 53.83455966672514, 53.5296490438886, 53.83455966672514, 53.52971923996491, 53.53397688547859, 53.864471803645856, 53.80892384370499, 53.83455966672514, 53.864471803645856, 53.80892384370499, 54.02096962344496, 53.864471803645856, 53.864471803645856, 53.52975086923267, 53.845303866200666, 53.83455966672514, 53.80903972625709, 53.83455966672514, 53.864471803645856, 53.80890241146502, 53.83455966672514, 54.020849005752474, 53.845303866200666, 53.88242600265402, 53.88242600265402, 54.020885788146515, 54.021059534496196, 54.020746549558325, 53.864471803645856, 53.5296490438886, 53.80892746585745, 53.80901818337243, 53.80890241146502, 53.83455966672514, 53.52971923996491, 54.02094959149155, 53.80896520272324, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.72836000624202, 14.61843904754546, 14.618480742664287, 13.824118967817144, 13.825501744421523, 14.339652967059697, 13.824118967817144, 14.339825653017522, 14.339825653017522, 14.728650838545583, 14.625683889140557, 14.728603318193455, 14.606512208167038, 14.630616328039563, 13.825501744421523, 14.728650838545583, 14.630616328039563, 14.630780570299253, 13.7785198325034, 13.825501744421523, 14.339735499061648, 14.728585056182643, 14.339754867144269, 14.728603318193455, 14.340041925554642, 14.61843904754546, 14.630604108154332, 14.61843904754546, 14.630780570299253, 14.625683889140557, 13.825501744421523, 14.33978531324949, 14.61843904754546, 13.825501744421523, 14.33978531324949, 14.728602599451175, 13.825501744421523, 13.825501744421523, 14.630616328039563, 13.824118967817144, 14.61843904754546, 14.339912750386873, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.61843904754546, 14.728603318193455, 13.824118967817144, 14.646620183438515, 14.646620183438515, 14.72847357406484, 14.728615266067688, 14.728456965919694, 13.825501744421523, 14.630604108154332, 14.339827351797773, 14.33973774800166, 14.339950759070799, 14.61843904754546, 14.630780570299253, 14.728666036211786, 14.339689073546207, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-06 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-07 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6689, 6689, 6707, 6702, 6691, 6689, 6673, 6689, 6654, 6658, 6689, 6699, 6654, 6654, 6654, 6688, 6672, 6676, 6689, 6698, 6706, 6682, 6654, 6664, 6689, 6664, 6682, 6658, 6661, 6694, 6655, 6674, 6695, 6673, 6661, 6682, 6666, 6664, 6654, 6683, 6676, 6678, 6706, 6680, 6705, 6702, 6692, 6689, 6661, 6654, 6654, 6659, 6685, 6694, 6667, 6654, 6710, 6694, 6655, 6693, 6710, 6694 ], "ids": [ 6689, 6689, 6689, 6707, 6702, 6691, 6689, 6673, 6689, 6654, 6658, 6689, 6699, 6654, 6654, 6654, 6688, 6672, 6676, 6689, 6698, 6706, 6682, 6654, 6664, 6689, 6664, 6682, 6658, 6661, 6694, 6655, 6674, 6695, 6673, 6661, 6682, 6666, 6664, 6654, 6683, 6676, 6678, 6706, 6680, 6705, 6702, 6692, 6689, 6661, 6654, 6654, 6659, 6685, 6694, 6667, 6654, 6710, 6694, 6655, 6693, 6710, 6694 ], "lat": [ 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.80902089070886, 53.880779264195276, 54.02097892369575, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.83455966672514, 53.5296490438886, 53.864471803645856, 53.80892746585745, 53.83455966672514, 53.83455966672514, 53.83455966672514, 53.80909221822267, 54.020885788146515, 54.020847759299066, 53.864471803645856, 54.021059534496196, 53.80915072481978, 53.52971923996491, 53.83455966672514, 53.52975086923267, 53.864471803645856, 53.52975086923267, 53.52971923996491, 53.5296490438886, 54.020849005752474, 53.845303866200666, 53.80892384370499, 53.80903972625709, 54.0209599818226, 53.80890241146502, 54.020849005752474, 53.52971923996491, 53.809076375885944, 53.52975086923267, 53.83455966672514, 53.80901818337243, 54.020847759299066, 53.83465312047732, 53.80915072481978, 54.020746549558325, 53.55150694013349, 53.880779264195276, 54.02094959149155, 53.864471803645856, 54.020849005752474, 53.83455966672514, 53.83455966672514, 53.80896520272324, 53.80877462484214, 53.845303866200666, 54.02096962344496, 53.83455966672514, 53.534722711891604, 53.845303866200666, 53.80892384370499, 54.22725596601593, 53.534722711891604, 53.845303866200666 ], "legendgroup": "", "lon": [ 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.339754867144269, 14.645643516309857, 14.728585056182643, 13.825501744421523, 14.339950759070799, 13.825501744421523, 14.61843904754546, 14.630604108154332, 13.825501744421523, 14.339827351797773, 14.61843904754546, 14.61843904754546, 14.61843904754546, 14.339735499061648, 14.72847357406484, 14.728650838545583, 13.825501744421523, 14.728615266067688, 14.339825653017522, 14.630780570299253, 14.61843904754546, 14.630616328039563, 13.825501744421523, 14.630616328039563, 14.630780570299253, 14.630604108154332, 14.728603318193455, 13.824118967817144, 14.33978531324949, 14.339912750386873, 14.72836000624202, 14.339950759070799, 14.728603318193455, 14.630780570299253, 14.339652967059697, 14.630616328039563, 14.61843904754546, 14.33973774800166, 14.728650838545583, 14.618480742664287, 14.339825653017522, 14.728456965919694, 14.606512208167038, 14.645643516309857, 14.728666036211786, 13.825501744421523, 14.728603318193455, 14.61843904754546, 14.61843904754546, 14.339689073546207, 14.340041925554642, 13.824118967817144, 14.728602599451175, 14.61843904754546, 14.624882596406716, 13.824118967817144, 14.33978531324949, 13.7785198325034, 14.624882596406716, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-07 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-08 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6664, 6682, 6666, 6689, 6694, 6678, 6659, 6691, 6661, 6654, 6654, 6692, 6689, 6654, 6672, 6689, 6658, 6702, 6676, 6710, 6702, 6698, 6658, 6710, 6661, 6673, 6707, 6654, 6683, 6695, 6694, 6689, 6699, 6664, 6682, 6664, 6655, 6685, 6667, 6654, 6654, 6694, 6689, 6689, 6655, 6673, 6689, 6694, 6705, 6706, 6661, 6688, 6676, 6654, 6706, 6680, 6689, 6654, 6682, 6654, 6689, 6674, 6693 ], "ids": [ 6664, 6682, 6666, 6689, 6694, 6678, 6659, 6691, 6661, 6654, 6654, 6692, 6689, 6654, 6672, 6689, 6658, 6702, 6676, 6710, 6702, 6698, 6658, 6710, 6661, 6673, 6707, 6654, 6683, 6695, 6694, 6689, 6699, 6664, 6682, 6664, 6655, 6685, 6667, 6654, 6654, 6694, 6689, 6689, 6655, 6673, 6689, 6694, 6705, 6706, 6661, 6688, 6676, 6654, 6706, 6680, 6689, 6654, 6682, 6654, 6689, 6674, 6693 ], "lat": [ 53.52975086923267, 53.52971923996491, 53.809076375885944, 53.864471803645856, 53.845303866200666, 53.83465312047732, 53.80896520272324, 54.02097892369575, 54.020849005752474, 53.83455966672514, 53.83455966672514, 54.02094959149155, 53.864471803645856, 53.83455966672514, 54.020885788146515, 53.864471803645856, 53.5296490438886, 53.87913252573654, 54.020847759299066, 53.53546853830462, 53.87913252573654, 54.021059534496196, 53.5296490438886, 53.53546853830462, 54.020849005752474, 53.80890241146502, 53.80902089070886, 53.83455966672514, 53.80901818337243, 54.0209599818226, 53.845303866200666, 53.864471803645856, 53.80892746585745, 53.52975086923267, 53.52971923996491, 53.52975086923267, 53.80892384370499, 53.80877462484214, 54.02096962344496, 53.83455966672514, 53.83455966672514, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.80890241146502, 53.864471803645856, 53.845303866200666, 53.55150694013349, 53.80915072481978, 54.020849005752474, 53.80909221822267, 54.020847759299066, 53.83455966672514, 53.80915072481978, 54.020746549558325, 53.864471803645856, 53.83455966672514, 53.52971923996491, 53.83455966672514, 53.864471803645856, 53.80903972625709, 54.22725596601593 ], "legendgroup": "", "lon": [ 14.630616328039563, 14.630780570299253, 14.339652967059697, 13.825501744421523, 13.824118967817144, 14.618480742664287, 14.339689073546207, 14.728585056182643, 14.728603318193455, 14.61843904754546, 14.61843904754546, 14.728666036211786, 13.825501744421523, 14.61843904754546, 14.72847357406484, 13.825501744421523, 14.630604108154332, 14.6446668491812, 14.728650838545583, 14.624081303672874, 14.6446668491812, 14.728615266067688, 14.630604108154332, 14.624081303672874, 14.728603318193455, 14.339950759070799, 14.339754867144269, 14.61843904754546, 14.33973774800166, 14.72836000624202, 13.824118967817144, 13.825501744421523, 14.339827351797773, 14.630616328039563, 14.630780570299253, 14.630616328039563, 14.33978531324949, 14.340041925554642, 14.728602599451175, 14.61843904754546, 14.61843904754546, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.33978531324949, 14.339950759070799, 13.825501744421523, 13.824118967817144, 14.606512208167038, 14.339825653017522, 14.728603318193455, 14.339735499061648, 14.728650838545583, 14.61843904754546, 14.339825653017522, 14.728456965919694, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.61843904754546, 13.825501744421523, 14.339912750386873, 13.7785198325034 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-08 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-09 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6674, 6676, 6666, 6710, 6680, 6695, 6694, 6694, 6694, 6689, 6710, 6661, 6688, 6706, 6661, 6672, 6664, 6654, 6702, 6676, 6654, 6664, 6699, 6664, 6654, 6702, 6654, 6689, 6654, 6667, 6689, 6655, 6694, 6682, 6661, 6689, 6658, 6655, 6654, 6682, 6683, 6689, 6685, 6658, 6689, 6689, 6682, 6673, 6706, 6707, 6698, 6693, 6705, 6692, 6689, 6659, 6654, 6678, 6654, 6689, 6673, 6691, 6654 ], "ids": [ 6674, 6676, 6666, 6710, 6680, 6695, 6694, 6694, 6694, 6689, 6710, 6661, 6688, 6706, 6661, 6672, 6664, 6654, 6702, 6676, 6654, 6664, 6699, 6664, 6654, 6702, 6654, 6689, 6654, 6667, 6689, 6655, 6694, 6682, 6661, 6689, 6658, 6655, 6654, 6682, 6683, 6689, 6685, 6658, 6689, 6689, 6682, 6673, 6706, 6707, 6698, 6693, 6705, 6692, 6689, 6659, 6654, 6678, 6654, 6689, 6673, 6691, 6654 ], "lat": [ 53.80903972625709, 54.020847759299066, 53.809076375885944, 53.53621436471764, 54.020746549558325, 54.0209599818226, 53.845303866200666, 53.845303866200666, 53.845303866200666, 53.864471803645856, 53.53621436471764, 54.020849005752474, 53.80909221822267, 53.80915072481978, 54.020849005752474, 54.020885788146515, 53.52975086923267, 53.83455966672514, 53.87748578727779, 54.020847759299066, 53.83455966672514, 53.52975086923267, 53.80892746585745, 53.52975086923267, 53.83455966672514, 53.87748578727779, 53.83455966672514, 53.864471803645856, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.80892384370499, 53.845303866200666, 53.52971923996491, 54.020849005752474, 53.864471803645856, 53.5296490438886, 53.80892384370499, 53.83455966672514, 53.52971923996491, 53.80901818337243, 53.864471803645856, 53.80877462484214, 53.5296490438886, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.80890241146502, 53.80915072481978, 53.80902089070886, 54.021059534496196, 54.22725596601593, 53.55150694013349, 54.02094959149155, 53.864471803645856, 53.80896520272324, 53.83455966672514, 53.83465312047732, 53.83455966672514, 53.864471803645856, 53.80890241146502, 54.02097892369575, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.339912750386873, 14.728650838545583, 14.339652967059697, 14.623280010939034, 14.728456965919694, 14.72836000624202, 13.824118967817144, 13.824118967817144, 13.824118967817144, 13.825501744421523, 14.623280010939034, 14.728603318193455, 14.339735499061648, 14.339825653017522, 14.728603318193455, 14.72847357406484, 14.630616328039563, 14.61843904754546, 14.643690182052545, 14.728650838545583, 14.61843904754546, 14.630616328039563, 14.339827351797773, 14.630616328039563, 14.61843904754546, 14.643690182052545, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.33978531324949, 13.824118967817144, 14.630780570299253, 14.728603318193455, 13.825501744421523, 14.630604108154332, 14.33978531324949, 14.61843904754546, 14.630780570299253, 14.33973774800166, 13.825501744421523, 14.340041925554642, 14.630604108154332, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.339950759070799, 14.339825653017522, 14.339754867144269, 14.728615266067688, 13.7785198325034, 14.606512208167038, 14.728666036211786, 13.825501744421523, 14.339689073546207, 14.61843904754546, 14.618480742664287, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.728585056182643, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-09 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-10 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6693, 6689, 6688, 6654, 6710, 6664, 6689, 6654, 6655, 6689, 6673, 6683, 6654, 6674, 6673, 6676, 6680, 6655, 6695, 6661, 6694, 6705, 6689, 6710, 6699, 6706, 6698, 6654, 6667, 6654, 6664, 6664, 6694, 6707, 6694, 6702, 6654, 6658, 6689, 6682, 6689, 6676, 6691, 6661, 6692, 6654, 6678, 6666, 6702, 6659, 6654, 6689, 6682, 6689, 6672, 6706, 6658, 6689, 6694, 6685, 6654, 6661, 6682 ], "ids": [ 6693, 6689, 6688, 6654, 6710, 6664, 6689, 6654, 6655, 6689, 6673, 6683, 6654, 6674, 6673, 6676, 6680, 6655, 6695, 6661, 6694, 6705, 6689, 6710, 6699, 6706, 6698, 6654, 6667, 6654, 6664, 6664, 6694, 6707, 6694, 6702, 6654, 6658, 6689, 6682, 6689, 6676, 6691, 6661, 6692, 6654, 6678, 6666, 6702, 6659, 6654, 6689, 6682, 6689, 6672, 6706, 6658, 6689, 6694, 6685, 6654, 6661, 6682 ], "lat": [ 54.22725596601593, 53.864471803645856, 53.80909221822267, 53.83455966672514, 53.53696019113065, 53.52975086923267, 53.864471803645856, 53.83455966672514, 53.80892384370499, 53.864471803645856, 53.80890241146502, 53.80901818337243, 53.83455966672514, 53.80903972625709, 53.80890241146502, 54.020847759299066, 54.020746549558325, 53.80892384370499, 54.0209599818226, 54.020849005752474, 53.845303866200666, 53.55150694013349, 53.864471803645856, 53.53696019113065, 53.80892746585745, 53.80915072481978, 54.021059534496196, 53.83455966672514, 54.02096962344496, 53.83455966672514, 53.52975086923267, 53.52975086923267, 53.845303866200666, 53.80902089070886, 53.845303866200666, 53.87583904881905, 53.83455966672514, 53.5296490438886, 53.864471803645856, 53.52971923996491, 53.864471803645856, 54.020847759299066, 54.02097892369575, 54.020849005752474, 54.02094959149155, 53.83455966672514, 53.83465312047732, 53.809076375885944, 53.87583904881905, 53.80896520272324, 53.83455966672514, 53.864471803645856, 53.52971923996491, 53.864471803645856, 54.020885788146515, 53.80915072481978, 53.5296490438886, 53.864471803645856, 53.845303866200666, 53.80877462484214, 53.83455966672514, 54.020849005752474, 53.52971923996491 ], "legendgroup": "", "lon": [ 13.7785198325034, 13.825501744421523, 14.339735499061648, 14.61843904754546, 14.622478718205192, 14.630616328039563, 13.825501744421523, 14.61843904754546, 14.33978531324949, 13.825501744421523, 14.339950759070799, 14.33973774800166, 14.61843904754546, 14.339912750386873, 14.339950759070799, 14.728650838545583, 14.728456965919694, 14.33978531324949, 14.72836000624202, 14.728603318193455, 13.824118967817144, 14.606512208167038, 13.825501744421523, 14.622478718205192, 14.339827351797773, 14.339825653017522, 14.728615266067688, 14.61843904754546, 14.728602599451175, 14.61843904754546, 14.630616328039563, 14.630616328039563, 13.824118967817144, 14.339754867144269, 13.824118967817144, 14.642713514923889, 14.61843904754546, 14.630604108154332, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.728650838545583, 14.728585056182643, 14.728603318193455, 14.728666036211786, 14.61843904754546, 14.618480742664287, 14.339652967059697, 14.642713514923889, 14.339689073546207, 14.61843904754546, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.72847357406484, 14.339825653017522, 14.630604108154332, 13.825501744421523, 13.824118967817144, 14.340041925554642, 14.61843904754546, 14.728603318193455, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-10 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-11 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6683, 6682, 6654, 6654, 6689, 6692, 6694, 6661, 6658, 6694, 6659, 6664, 6693, 6673, 6689, 6689, 6699, 6654, 6689, 6702, 6689, 6682, 6695, 6667, 6705, 6702, 6654, 6710, 6680, 6655, 6664, 6661, 6678, 6682, 6654, 6658, 6688, 6694, 6689, 6694, 6689, 6707, 6672, 6654, 6661, 6685, 6655, 6706, 6664, 6710, 6689, 6676, 6698, 6691, 6706, 6674, 6676, 6689, 6673, 6654, 6654, 6666 ], "ids": [ 6654, 6683, 6682, 6654, 6654, 6689, 6692, 6694, 6661, 6658, 6694, 6659, 6664, 6693, 6673, 6689, 6689, 6699, 6654, 6689, 6702, 6689, 6682, 6695, 6667, 6705, 6702, 6654, 6710, 6680, 6655, 6664, 6661, 6678, 6682, 6654, 6658, 6688, 6694, 6689, 6694, 6689, 6707, 6672, 6654, 6661, 6685, 6655, 6706, 6664, 6710, 6689, 6676, 6698, 6691, 6706, 6674, 6676, 6689, 6673, 6654, 6654, 6666 ], "lat": [ 53.83455966672514, 53.80901818337243, 53.52971923996491, 53.83455966672514, 53.83455966672514, 53.864471803645856, 54.02094959149155, 53.845303866200666, 54.020849005752474, 53.5296490438886, 53.845303866200666, 53.80896520272324, 53.52975086923267, 54.22725596601593, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.80892746585745, 53.83455966672514, 53.864471803645856, 53.87419231036031, 53.864471803645856, 53.52971923996491, 54.0209599818226, 54.02096962344496, 53.55150694013349, 53.87419231036031, 53.83455966672514, 53.53770601754367, 54.020746549558325, 53.80892384370499, 53.52975086923267, 54.020849005752474, 53.83465312047732, 53.52971923996491, 53.83455966672514, 53.5296490438886, 53.80909221822267, 53.845303866200666, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.80902089070886, 54.020885788146515, 53.83455966672514, 54.020849005752474, 53.80877462484214, 53.80892384370499, 53.80915072481978, 53.52975086923267, 53.53770601754367, 53.864471803645856, 54.020847759299066, 54.021059534496196, 54.02097892369575, 53.80915072481978, 53.80903972625709, 54.020847759299066, 53.864471803645856, 53.80890241146502, 53.83455966672514, 53.83455966672514, 53.809076375885944 ], "legendgroup": "", "lon": [ 14.61843904754546, 14.33973774800166, 14.630780570299253, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.728666036211786, 13.824118967817144, 14.728603318193455, 14.630604108154332, 13.824118967817144, 14.339689073546207, 14.630616328039563, 13.7785198325034, 14.339950759070799, 13.825501744421523, 13.825501744421523, 14.339827351797773, 14.61843904754546, 13.825501744421523, 14.641736847795231, 13.825501744421523, 14.630780570299253, 14.72836000624202, 14.728602599451175, 14.606512208167038, 14.641736847795231, 14.61843904754546, 14.621677425471352, 14.728456965919694, 14.33978531324949, 14.630616328039563, 14.728603318193455, 14.618480742664287, 14.630780570299253, 14.61843904754546, 14.630604108154332, 14.339735499061648, 13.824118967817144, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.339754867144269, 14.72847357406484, 14.61843904754546, 14.728603318193455, 14.340041925554642, 14.33978531324949, 14.339825653017522, 14.630616328039563, 14.621677425471352, 13.825501744421523, 14.728650838545583, 14.728615266067688, 14.728585056182643, 14.339825653017522, 14.339912750386873, 14.728650838545583, 13.825501744421523, 14.339950759070799, 14.61843904754546, 14.61843904754546, 14.339652967059697 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-11 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-12 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6692, 6654, 6661, 6689, 6666, 6685, 6672, 6689, 6689, 6654, 6682, 6683, 6694, 6658, 6702, 6659, 6694, 6654, 6654, 6689, 6678, 6661, 6664, 6664, 6691, 6654, 6667, 6689, 6710, 6706, 6682, 6705, 6655, 6695, 6698, 6710, 6693, 6706, 6676, 6694, 6689, 6673, 6680, 6654, 6682, 6674, 6699, 6661, 6655, 6702, 6654, 6658, 6694, 6654, 6689, 6689, 6654, 6664, 6688, 6673, 6689, 6707, 6676 ], "ids": [ 6692, 6654, 6661, 6689, 6666, 6685, 6672, 6689, 6689, 6654, 6682, 6683, 6694, 6658, 6702, 6659, 6694, 6654, 6654, 6689, 6678, 6661, 6664, 6664, 6691, 6654, 6667, 6689, 6710, 6706, 6682, 6705, 6655, 6695, 6698, 6710, 6693, 6706, 6676, 6694, 6689, 6673, 6680, 6654, 6682, 6674, 6699, 6661, 6655, 6702, 6654, 6658, 6694, 6654, 6689, 6689, 6654, 6664, 6688, 6673, 6689, 6707, 6676 ], "lat": [ 54.02094959149155, 53.83455966672514, 54.020849005752474, 53.864471803645856, 53.809076375885944, 53.80877462484214, 54.020885788146515, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.52971923996491, 53.80901818337243, 53.845303866200666, 53.5296490438886, 53.87254557190157, 53.80896520272324, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.83465312047732, 54.020849005752474, 53.52975086923267, 53.52975086923267, 54.02097892369575, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.53845184395668, 53.80915072481978, 53.52971923996491, 53.55150694013349, 53.80892384370499, 54.0209599818226, 54.021059534496196, 53.53845184395668, 54.22725596601593, 53.80915072481978, 54.020847759299066, 53.845303866200666, 53.864471803645856, 53.80890241146502, 54.020746549558325, 53.83455966672514, 53.52971923996491, 53.80903972625709, 53.80892746585745, 54.020849005752474, 53.80892384370499, 53.87254557190157, 53.83455966672514, 53.5296490438886, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.52975086923267, 53.80909221822267, 53.80890241146502, 53.864471803645856, 53.80902089070886, 54.020847759299066 ], "legendgroup": "", "lon": [ 14.728666036211786, 14.61843904754546, 14.728603318193455, 13.825501744421523, 14.339652967059697, 14.340041925554642, 14.72847357406484, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.33973774800166, 13.824118967817144, 14.630604108154332, 14.640760180666575, 14.339689073546207, 13.824118967817144, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.618480742664287, 14.728603318193455, 14.630616328039563, 14.630616328039563, 14.728585056182643, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.62087613273751, 14.339825653017522, 14.630780570299253, 14.606512208167038, 14.33978531324949, 14.72836000624202, 14.728615266067688, 14.62087613273751, 13.7785198325034, 14.339825653017522, 14.728650838545583, 13.824118967817144, 13.825501744421523, 14.339950759070799, 14.728456965919694, 14.61843904754546, 14.630780570299253, 14.339912750386873, 14.339827351797773, 14.728603318193455, 14.33978531324949, 14.640760180666575, 14.61843904754546, 14.630604108154332, 13.824118967817144, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.630616328039563, 14.339735499061648, 14.339950759070799, 13.825501744421523, 14.339754867144269, 14.728650838545583 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-12 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-13 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6683, 6680, 6689, 6654, 6682, 6661, 6694, 6673, 6688, 6654, 6691, 6667, 6654, 6689, 6664, 6706, 6685, 6661, 6682, 6658, 6694, 6678, 6664, 6666, 6689, 6659, 6702, 6705, 6654, 6693, 6654, 6694, 6658, 6689, 6673, 6706, 6682, 6672, 6698, 6655, 6676, 6710, 6689, 6689, 6689, 6654, 6676, 6710, 6707, 6654, 6694, 6674, 6655, 6689, 6699, 6695, 6702, 6654, 6664, 6689, 6692, 6661 ], "ids": [ 6654, 6683, 6680, 6689, 6654, 6682, 6661, 6694, 6673, 6688, 6654, 6691, 6667, 6654, 6689, 6664, 6706, 6685, 6661, 6682, 6658, 6694, 6678, 6664, 6666, 6689, 6659, 6702, 6705, 6654, 6693, 6654, 6694, 6658, 6689, 6673, 6706, 6682, 6672, 6698, 6655, 6676, 6710, 6689, 6689, 6689, 6654, 6676, 6710, 6707, 6654, 6694, 6674, 6655, 6689, 6699, 6695, 6702, 6654, 6664, 6689, 6692, 6661 ], "lat": [ 53.83455966672514, 53.80901818337243, 54.020746549558325, 53.864471803645856, 53.83455966672514, 53.52971923996491, 54.020849005752474, 53.845303866200666, 53.80890241146502, 53.80909221822267, 53.83455966672514, 54.02097892369575, 54.02096962344496, 53.83455966672514, 53.864471803645856, 53.52975086923267, 53.80915072481978, 53.80877462484214, 54.020849005752474, 53.52971923996491, 53.5296490438886, 53.845303866200666, 53.83465312047732, 53.52975086923267, 53.809076375885944, 53.864471803645856, 53.80896520272324, 53.87089883344282, 53.55150694013349, 53.83455966672514, 54.22725596601593, 53.83455966672514, 53.845303866200666, 53.5296490438886, 53.864471803645856, 53.80890241146502, 53.80915072481978, 53.52971923996491, 54.020885788146515, 54.021059534496196, 53.80892384370499, 54.020847759299066, 53.539197670369695, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.83455966672514, 54.020847759299066, 53.539197670369695, 53.80902089070886, 53.83455966672514, 53.845303866200666, 53.80903972625709, 53.80892384370499, 53.864471803645856, 53.80892746585745, 54.0209599818226, 53.87089883344282, 53.83455966672514, 53.52975086923267, 53.864471803645856, 54.02094959149155, 54.020849005752474 ], "legendgroup": "", "lon": [ 14.61843904754546, 14.33973774800166, 14.728456965919694, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.728603318193455, 13.824118967817144, 14.339950759070799, 14.339735499061648, 14.61843904754546, 14.728585056182643, 14.728602599451175, 14.61843904754546, 13.825501744421523, 14.630616328039563, 14.339825653017522, 14.340041925554642, 14.728603318193455, 14.630780570299253, 14.630604108154332, 13.824118967817144, 14.618480742664287, 14.630616328039563, 14.339652967059697, 13.825501744421523, 14.339689073546207, 14.63978351353792, 14.606512208167038, 14.61843904754546, 13.7785198325034, 14.61843904754546, 13.824118967817144, 14.630604108154332, 13.825501744421523, 14.339950759070799, 14.339825653017522, 14.630780570299253, 14.72847357406484, 14.728615266067688, 14.33978531324949, 14.728650838545583, 14.62007484000367, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.728650838545583, 14.62007484000367, 14.339754867144269, 14.61843904754546, 13.824118967817144, 14.339912750386873, 14.33978531324949, 13.825501744421523, 14.339827351797773, 14.72836000624202, 14.63978351353792, 14.61843904754546, 14.630616328039563, 13.825501744421523, 14.728666036211786, 14.728603318193455 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-13 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-14 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6673, 6693, 6655, 6654, 6664, 6685, 6689, 6654, 6689, 6706, 6689, 6654, 6683, 6691, 6702, 6659, 6692, 6682, 6654, 6689, 6689, 6689, 6689, 6667, 6682, 6658, 6707, 6654, 6673, 6655, 6689, 6654, 6705, 6654, 6678, 6676, 6674, 6666, 6664, 6680, 6664, 6661, 6688, 6694, 6654, 6676, 6694, 6695, 6694, 6658, 6661, 6689, 6654, 6698, 6661, 6702, 6672, 6706, 6694, 6699, 6710, 6710, 6682 ], "ids": [ 6673, 6693, 6655, 6654, 6664, 6685, 6689, 6654, 6689, 6706, 6689, 6654, 6683, 6691, 6702, 6659, 6692, 6682, 6654, 6689, 6689, 6689, 6689, 6667, 6682, 6658, 6707, 6654, 6673, 6655, 6689, 6654, 6705, 6654, 6678, 6676, 6674, 6666, 6664, 6680, 6664, 6661, 6688, 6694, 6654, 6676, 6694, 6695, 6694, 6658, 6661, 6689, 6654, 6698, 6661, 6702, 6672, 6706, 6694, 6699, 6710, 6710, 6682 ], "lat": [ 53.80890241146502, 54.22725596601593, 53.80892384370499, 53.83455966672514, 53.52975086923267, 53.80877462484214, 53.864471803645856, 53.83455966672514, 53.864471803645856, 53.80915072481978, 53.864471803645856, 53.83455966672514, 53.80901818337243, 54.02097892369575, 53.869252094984084, 53.80896520272324, 54.02094959149155, 53.52971923996491, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.02096962344496, 53.52971923996491, 53.5296490438886, 53.80902089070886, 53.83455966672514, 53.80890241146502, 53.80892384370499, 53.864471803645856, 53.83455966672514, 53.55150694013349, 53.83455966672514, 53.83465312047732, 54.020847759299066, 53.80903972625709, 53.809076375885944, 53.52975086923267, 54.020746549558325, 53.52975086923267, 54.020849005752474, 53.80909221822267, 53.845303866200666, 53.83455966672514, 54.020847759299066, 53.845303866200666, 54.0209599818226, 53.845303866200666, 53.5296490438886, 54.020849005752474, 53.864471803645856, 53.83455966672514, 54.021059534496196, 54.020849005752474, 53.869252094984084, 54.020885788146515, 53.80915072481978, 53.845303866200666, 53.80892746585745, 53.53994349678271, 53.53994349678271, 53.52971923996491 ], "legendgroup": "", "lon": [ 14.339950759070799, 13.7785198325034, 14.33978531324949, 14.61843904754546, 14.630616328039563, 14.340041925554642, 13.825501744421523, 14.61843904754546, 13.825501744421523, 14.339825653017522, 13.825501744421523, 14.61843904754546, 14.33973774800166, 14.728585056182643, 14.638806846409263, 14.339689073546207, 14.728666036211786, 14.630780570299253, 14.61843904754546, 13.825501744421523, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.728602599451175, 14.630780570299253, 14.630604108154332, 14.339754867144269, 14.61843904754546, 14.339950759070799, 14.33978531324949, 13.825501744421523, 14.61843904754546, 14.606512208167038, 14.61843904754546, 14.618480742664287, 14.728650838545583, 14.339912750386873, 14.339652967059697, 14.630616328039563, 14.728456965919694, 14.630616328039563, 14.728603318193455, 14.339735499061648, 13.824118967817144, 14.61843904754546, 14.728650838545583, 13.824118967817144, 14.72836000624202, 13.824118967817144, 14.630604108154332, 14.728603318193455, 13.825501744421523, 14.61843904754546, 14.728615266067688, 14.728603318193455, 14.638806846409263, 14.72847357406484, 14.339825653017522, 13.824118967817144, 14.339827351797773, 14.61927354726983, 14.61927354726983, 14.630780570299253 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-14 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-15 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6676, 6659, 6710, 6682, 6683, 6692, 6689, 6699, 6654, 6674, 6664, 6661, 6689, 6702, 6710, 6654, 6654, 6689, 6694, 6695, 6694, 6654, 6655, 6680, 6707, 6689, 6688, 6706, 6654, 6693, 6664, 6661, 6694, 6689, 6685, 6689, 6654, 6658, 6682, 6706, 6689, 6654, 6672, 6698, 6676, 6673, 6654, 6702, 6661, 6689, 6667, 6691, 6694, 6678, 6658, 6705, 6682, 6654, 6673, 6664, 6689, 6666, 6655 ], "ids": [ 6676, 6659, 6710, 6682, 6683, 6692, 6689, 6699, 6654, 6674, 6664, 6661, 6689, 6702, 6710, 6654, 6654, 6689, 6694, 6695, 6694, 6654, 6655, 6680, 6707, 6689, 6688, 6706, 6654, 6693, 6664, 6661, 6694, 6689, 6685, 6689, 6654, 6658, 6682, 6706, 6689, 6654, 6672, 6698, 6676, 6673, 6654, 6702, 6661, 6689, 6667, 6691, 6694, 6678, 6658, 6705, 6682, 6654, 6673, 6664, 6689, 6666, 6655 ], "lat": [ 54.020847759299066, 53.80896520272324, 53.54068932319573, 53.52971923996491, 53.80901818337243, 54.02094959149155, 53.864471803645856, 53.80892746585745, 53.83455966672514, 53.80903972625709, 53.52975086923267, 54.020849005752474, 53.864471803645856, 53.86760535652534, 53.54068932319573, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.845303866200666, 54.0209599818226, 53.845303866200666, 53.83455966672514, 53.80892384370499, 54.020746549558325, 53.80902089070886, 53.864471803645856, 53.80909221822267, 53.80915072481978, 53.83455966672514, 54.22725596601593, 53.52975086923267, 54.020849005752474, 53.845303866200666, 53.864471803645856, 53.80877462484214, 53.864471803645856, 53.83455966672514, 53.5296490438886, 53.52971923996491, 53.80915072481978, 53.864471803645856, 53.83455966672514, 54.020885788146515, 54.021059534496196, 54.020847759299066, 53.80890241146502, 53.83455966672514, 53.86760535652534, 54.020849005752474, 53.864471803645856, 54.02096962344496, 54.02097892369575, 53.845303866200666, 53.83465312047732, 53.5296490438886, 53.55150694013349, 53.52971923996491, 53.83455966672514, 53.80890241146502, 53.52975086923267, 53.864471803645856, 53.809076375885944, 53.80892384370499 ], "legendgroup": "", "lon": [ 14.728650838545583, 14.339689073546207, 14.618472254535988, 14.630780570299253, 14.33973774800166, 14.728666036211786, 13.825501744421523, 14.339827351797773, 14.61843904754546, 14.339912750386873, 14.630616328039563, 14.728603318193455, 13.825501744421523, 14.637830179280606, 14.618472254535988, 14.61843904754546, 14.61843904754546, 13.825501744421523, 13.824118967817144, 14.72836000624202, 13.824118967817144, 14.61843904754546, 14.33978531324949, 14.728456965919694, 14.339754867144269, 13.825501744421523, 14.339735499061648, 14.339825653017522, 14.61843904754546, 13.7785198325034, 14.630616328039563, 14.728603318193455, 13.824118967817144, 13.825501744421523, 14.340041925554642, 13.825501744421523, 14.61843904754546, 14.630604108154332, 14.630780570299253, 14.339825653017522, 13.825501744421523, 14.61843904754546, 14.72847357406484, 14.728615266067688, 14.728650838545583, 14.339950759070799, 14.61843904754546, 14.637830179280606, 14.728603318193455, 13.825501744421523, 14.728602599451175, 14.728585056182643, 13.824118967817144, 14.618480742664287, 14.630604108154332, 14.606512208167038, 14.630780570299253, 14.61843904754546, 14.339950759070799, 14.630616328039563, 13.825501744421523, 14.339652967059697, 14.33978531324949 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-15 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-16 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6682, 6699, 6705, 6661, 6672, 6682, 6655, 6689, 6673, 6655, 6654, 6698, 6682, 6658, 6694, 6664, 6654, 6666, 6664, 6678, 6694, 6661, 6706, 6654, 6689, 6706, 6673, 6689, 6664, 6654, 6689, 6654, 6707, 6689, 6689, 6710, 6692, 6689, 6667, 6691, 6658, 6689, 6702, 6693, 6659, 6676, 6676, 6661, 6695, 6689, 6654, 6683, 6694, 6710, 6685, 6694, 6680, 6654, 6654, 6654, 6674, 6702, 6688 ], "ids": [ 6682, 6699, 6705, 6661, 6672, 6682, 6655, 6689, 6673, 6655, 6654, 6698, 6682, 6658, 6694, 6664, 6654, 6666, 6664, 6678, 6694, 6661, 6706, 6654, 6689, 6706, 6673, 6689, 6664, 6654, 6689, 6654, 6707, 6689, 6689, 6710, 6692, 6689, 6667, 6691, 6658, 6689, 6702, 6693, 6659, 6676, 6676, 6661, 6695, 6689, 6654, 6683, 6694, 6710, 6685, 6694, 6680, 6654, 6654, 6654, 6674, 6702, 6688 ], "lat": [ 53.52971923996491, 53.80892746585745, 53.55150694013349, 54.020849005752474, 54.020885788146515, 53.52971923996491, 53.80892384370499, 53.864471803645856, 53.80890241146502, 53.80892384370499, 53.83455966672514, 54.021059534496196, 53.52971923996491, 53.5296490438886, 53.845303866200666, 53.52975086923267, 53.83455966672514, 53.809076375885944, 53.52975086923267, 53.83465312047732, 53.845303866200666, 54.020849005752474, 53.80915072481978, 53.83455966672514, 53.864471803645856, 53.80915072481978, 53.80890241146502, 53.864471803645856, 53.52975086923267, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.80902089070886, 53.864471803645856, 53.864471803645856, 53.541435149608745, 54.02094959149155, 53.864471803645856, 54.02096962344496, 54.02097892369575, 53.5296490438886, 53.864471803645856, 53.86595861806659, 54.22725596601593, 53.80896520272324, 54.020847759299066, 54.020847759299066, 54.020849005752474, 54.0209599818226, 53.864471803645856, 53.83455966672514, 53.80901818337243, 53.845303866200666, 53.541435149608745, 53.80877462484214, 53.845303866200666, 54.020746549558325, 53.83455966672514, 53.83455966672514, 53.83455966672514, 53.80903972625709, 53.86595861806659, 53.80909221822267 ], "legendgroup": "", "lon": [ 14.630780570299253, 14.339827351797773, 14.606512208167038, 14.728603318193455, 14.72847357406484, 14.630780570299253, 14.33978531324949, 13.825501744421523, 14.339950759070799, 14.33978531324949, 14.61843904754546, 14.728615266067688, 14.630780570299253, 14.630604108154332, 13.824118967817144, 14.630616328039563, 14.61843904754546, 14.339652967059697, 14.630616328039563, 14.618480742664287, 13.824118967817144, 14.728603318193455, 14.339825653017522, 14.61843904754546, 13.825501744421523, 14.339825653017522, 14.339950759070799, 13.825501744421523, 14.630616328039563, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.339754867144269, 13.825501744421523, 13.825501744421523, 14.617670961802148, 14.728666036211786, 13.825501744421523, 14.728602599451175, 14.728585056182643, 14.630604108154332, 13.825501744421523, 14.63685351215195, 13.7785198325034, 14.339689073546207, 14.728650838545583, 14.728650838545583, 14.728603318193455, 14.72836000624202, 13.825501744421523, 14.61843904754546, 14.33973774800166, 13.824118967817144, 14.617670961802148, 14.340041925554642, 13.824118967817144, 14.728456965919694, 14.61843904754546, 14.61843904754546, 14.61843904754546, 14.339912750386873, 14.63685351215195, 14.339735499061648 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-16 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-17 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6658, 6676, 6705, 6689, 6689, 6689, 6702, 6693, 6654, 6682, 6685, 6654, 6667, 6676, 6664, 6654, 6654, 6689, 6655, 6683, 6691, 6654, 6654, 6689, 6689, 6682, 6692, 6659, 6689, 6707, 6674, 6673, 6706, 6680, 6654, 6666, 6664, 6710, 6689, 6694, 6678, 6661, 6695, 6706, 6694, 6654, 6710, 6699, 6702, 6664, 6661, 6682, 6672, 6654, 6661, 6698, 6658, 6694, 6655, 6694, 6673, 6689, 6688 ], "ids": [ 6658, 6676, 6705, 6689, 6689, 6689, 6702, 6693, 6654, 6682, 6685, 6654, 6667, 6676, 6664, 6654, 6654, 6689, 6655, 6683, 6691, 6654, 6654, 6689, 6689, 6682, 6692, 6659, 6689, 6707, 6674, 6673, 6706, 6680, 6654, 6666, 6664, 6710, 6689, 6694, 6678, 6661, 6695, 6706, 6694, 6654, 6710, 6699, 6702, 6664, 6661, 6682, 6672, 6654, 6661, 6698, 6658, 6694, 6655, 6694, 6673, 6689, 6688 ], "lat": [ 53.5296490438886, 54.020847759299066, 53.55150694013349, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.864311879607854, 54.22725596601593, 53.83455966672514, 53.52971923996491, 53.80877462484214, 53.83455966672514, 54.02096962344496, 54.020847759299066, 53.52975086923267, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.80892384370499, 53.80901818337243, 54.02097892369575, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.52971923996491, 54.02094959149155, 53.80896520272324, 53.864471803645856, 53.80902089070886, 53.80903972625709, 53.80890241146502, 53.80915072481978, 54.020746549558325, 53.83455966672514, 53.809076375885944, 53.52975086923267, 53.54218097602176, 53.864471803645856, 53.845303866200666, 53.83465312047732, 54.020849005752474, 54.0209599818226, 53.80915072481978, 53.845303866200666, 53.83455966672514, 53.54218097602176, 53.80892746585745, 53.864311879607854, 53.52975086923267, 54.020849005752474, 53.52971923996491, 54.020885788146515, 53.83455966672514, 54.020849005752474, 54.021059534496196, 53.5296490438886, 53.845303866200666, 53.80892384370499, 53.845303866200666, 53.80890241146502, 53.864471803645856, 53.80909221822267 ], "legendgroup": "", "lon": [ 14.630604108154332, 14.728650838545583, 14.606512208167038, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.635876845023294, 13.7785198325034, 14.61843904754546, 14.630780570299253, 14.340041925554642, 14.61843904754546, 14.728602599451175, 14.728650838545583, 14.630616328039563, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.33978531324949, 14.33973774800166, 14.728585056182643, 14.61843904754546, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.728666036211786, 14.339689073546207, 13.825501744421523, 14.339754867144269, 14.339912750386873, 14.339950759070799, 14.339825653017522, 14.728456965919694, 14.61843904754546, 14.339652967059697, 14.630616328039563, 14.616869669068306, 13.825501744421523, 13.824118967817144, 14.618480742664287, 14.728603318193455, 14.72836000624202, 14.339825653017522, 13.824118967817144, 14.61843904754546, 14.616869669068306, 14.339827351797773, 14.635876845023294, 14.630616328039563, 14.728603318193455, 14.630780570299253, 14.72847357406484, 14.61843904754546, 14.728603318193455, 14.728615266067688, 14.630604108154332, 13.824118967817144, 14.33978531324949, 13.824118967817144, 14.339950759070799, 13.825501744421523, 14.339735499061648 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-17 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-18 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6710, 6680, 6702, 6672, 6695, 6664, 6655, 6685, 6698, 6664, 6710, 6692, 6664, 6667, 6691, 6705, 6654, 6682, 6658, 6661, 6689, 6659, 6689, 6654, 6682, 6666, 6689, 6654, 6683, 6694, 6689, 6689, 6689, 6654, 6673, 6707, 6658, 6654, 6694, 6689, 6673, 6661, 6693, 6682, 6694, 6689, 6702, 6654, 6694, 6654, 6654, 6699, 6661, 6689, 6674, 6706, 6676, 6654, 6688, 6676, 6655, 6706, 6678 ], "ids": [ 6710, 6680, 6702, 6672, 6695, 6664, 6655, 6685, 6698, 6664, 6710, 6692, 6664, 6667, 6691, 6705, 6654, 6682, 6658, 6661, 6689, 6659, 6689, 6654, 6682, 6666, 6689, 6654, 6683, 6694, 6689, 6689, 6689, 6654, 6673, 6707, 6658, 6654, 6694, 6689, 6673, 6661, 6693, 6682, 6694, 6689, 6702, 6654, 6694, 6654, 6654, 6699, 6661, 6689, 6674, 6706, 6676, 6654, 6688, 6676, 6655, 6706, 6678 ], "lat": [ 53.54292680243478, 54.020746549558325, 53.86266514114911, 54.020885788146515, 54.0209599818226, 53.52975086923267, 53.80892384370499, 53.80877462484214, 54.021059534496196, 53.52975086923267, 53.54292680243478, 54.02094959149155, 53.52975086923267, 54.02096962344496, 54.02097892369575, 53.55150694013349, 53.83455966672514, 53.52971923996491, 53.5296490438886, 54.020849005752474, 53.864471803645856, 53.80896520272324, 53.864471803645856, 53.83455966672514, 53.52971923996491, 53.809076375885944, 53.864471803645856, 53.83455966672514, 53.80901818337243, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.80890241146502, 53.80902089070886, 53.5296490438886, 53.83455966672514, 53.845303866200666, 53.864471803645856, 53.80890241146502, 54.020849005752474, 54.22725596601593, 53.52971923996491, 53.845303866200666, 53.864471803645856, 53.86266514114911, 53.83455966672514, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.80892746585745, 54.020849005752474, 53.864471803645856, 53.80903972625709, 53.80915072481978, 54.020847759299066, 53.83455966672514, 53.80909221822267, 54.020847759299066, 53.80892384370499, 53.80915072481978, 53.83465312047732 ], "legendgroup": "", "lon": [ 14.616068376334466, 14.728456965919694, 14.634900177894638, 14.72847357406484, 14.72836000624202, 14.630616328039563, 14.33978531324949, 14.340041925554642, 14.728615266067688, 14.630616328039563, 14.616068376334466, 14.728666036211786, 14.630616328039563, 14.728602599451175, 14.728585056182643, 14.606512208167038, 14.61843904754546, 14.630780570299253, 14.630604108154332, 14.728603318193455, 13.825501744421523, 14.339689073546207, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.339652967059697, 13.825501744421523, 14.61843904754546, 14.33973774800166, 13.824118967817144, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.61843904754546, 14.339950759070799, 14.339754867144269, 14.630604108154332, 14.61843904754546, 13.824118967817144, 13.825501744421523, 14.339950759070799, 14.728603318193455, 13.7785198325034, 14.630780570299253, 13.824118967817144, 13.825501744421523, 14.634900177894638, 14.61843904754546, 13.824118967817144, 14.61843904754546, 14.61843904754546, 14.339827351797773, 14.728603318193455, 13.825501744421523, 14.339912750386873, 14.339825653017522, 14.728650838545583, 14.61843904754546, 14.339735499061648, 14.728650838545583, 14.33978531324949, 14.339825653017522, 14.618480742664287 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-18 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-19 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6666, 6705, 6689, 6676, 6699, 6692, 6689, 6695, 6664, 6682, 6673, 6654, 6655, 6654, 6707, 6661, 6702, 6658, 6682, 6698, 6694, 6673, 6688, 6691, 6694, 6689, 6710, 6682, 6685, 6655, 6654, 6710, 6702, 6706, 6693, 6672, 6661, 6654, 6658, 6664, 6667, 6689, 6689, 6706, 6654, 6689, 6678, 6689, 6680, 6654, 6694, 6689, 6689, 6683, 6676, 6694, 6654, 6664, 6674, 6654, 6661, 6654, 6659 ], "ids": [ 6666, 6705, 6689, 6676, 6699, 6692, 6689, 6695, 6664, 6682, 6673, 6654, 6655, 6654, 6707, 6661, 6702, 6658, 6682, 6698, 6694, 6673, 6688, 6691, 6694, 6689, 6710, 6682, 6685, 6655, 6654, 6710, 6702, 6706, 6693, 6672, 6661, 6654, 6658, 6664, 6667, 6689, 6689, 6706, 6654, 6689, 6678, 6689, 6680, 6654, 6694, 6689, 6689, 6683, 6676, 6694, 6654, 6664, 6674, 6654, 6661, 6654, 6659 ], "lat": [ 53.809076375885944, 53.55150694013349, 53.864471803645856, 54.020847759299066, 53.80892746585745, 54.02094959149155, 53.864471803645856, 54.0209599818226, 53.52975086923267, 53.52971923996491, 53.80890241146502, 53.83455966672514, 53.80892384370499, 53.83455966672514, 53.80902089070886, 54.020849005752474, 53.86101840269037, 53.5296490438886, 53.52971923996491, 54.021059534496196, 53.845303866200666, 53.80890241146502, 53.80909221822267, 54.02097892369575, 53.845303866200666, 53.864471803645856, 53.54367262884779, 53.52971923996491, 53.80877462484214, 53.80892384370499, 53.83455966672514, 53.54367262884779, 53.86101840269037, 53.80915072481978, 54.22725596601593, 54.020885788146515, 54.020849005752474, 53.83455966672514, 53.5296490438886, 53.52975086923267, 54.02096962344496, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.83455966672514, 53.864471803645856, 53.83465312047732, 53.864471803645856, 54.020746549558325, 53.83455966672514, 53.845303866200666, 53.864471803645856, 53.864471803645856, 53.80901818337243, 54.020847759299066, 53.845303866200666, 53.83455966672514, 53.52975086923267, 53.80903972625709, 53.83455966672514, 54.020849005752474, 53.83455966672514, 53.80896520272324 ], "legendgroup": "", "lon": [ 14.339652967059697, 14.606512208167038, 13.825501744421523, 14.728650838545583, 14.339827351797773, 14.728666036211786, 13.825501744421523, 14.72836000624202, 14.630616328039563, 14.630780570299253, 14.339950759070799, 14.61843904754546, 14.33978531324949, 14.61843904754546, 14.339754867144269, 14.728603318193455, 14.63392351076598, 14.630604108154332, 14.630780570299253, 14.728615266067688, 13.824118967817144, 14.339950759070799, 14.339735499061648, 14.728585056182643, 13.824118967817144, 13.825501744421523, 14.615267083600624, 14.630780570299253, 14.340041925554642, 14.33978531324949, 14.61843904754546, 14.615267083600624, 14.63392351076598, 14.339825653017522, 13.7785198325034, 14.72847357406484, 14.728603318193455, 14.61843904754546, 14.630604108154332, 14.630616328039563, 14.728602599451175, 13.825501744421523, 13.825501744421523, 14.339825653017522, 14.61843904754546, 13.825501744421523, 14.618480742664287, 13.825501744421523, 14.728456965919694, 14.61843904754546, 13.824118967817144, 13.825501744421523, 13.825501744421523, 14.33973774800166, 14.728650838545583, 13.824118967817144, 14.61843904754546, 14.630616328039563, 14.339912750386873, 14.61843904754546, 14.728603318193455, 14.61843904754546, 14.339689073546207 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-19 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-20 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6658, 6658, 6706, 6682, 6664, 6689, 6710, 6654, 6710, 6676, 6689, 6689, 6655, 6678, 6685, 6664, 6661, 6682, 6698, 6694, 6705, 6673, 6674, 6682, 6680, 6694, 6689, 6666, 6683, 6664, 6691, 6689, 6654, 6693, 6654, 6667, 6689, 6654, 6672, 6702, 6654, 6699, 6659, 6692, 6689, 6694, 6654, 6654, 6661, 6689, 6676, 6689, 6694, 6688, 6673, 6654, 6702, 6654, 6661, 6695, 6655, 6707, 6706 ], "ids": [ 6658, 6658, 6706, 6682, 6664, 6689, 6710, 6654, 6710, 6676, 6689, 6689, 6655, 6678, 6685, 6664, 6661, 6682, 6698, 6694, 6705, 6673, 6674, 6682, 6680, 6694, 6689, 6666, 6683, 6664, 6691, 6689, 6654, 6693, 6654, 6667, 6689, 6654, 6672, 6702, 6654, 6699, 6659, 6692, 6689, 6694, 6654, 6654, 6661, 6689, 6676, 6689, 6694, 6688, 6673, 6654, 6702, 6654, 6661, 6695, 6655, 6707, 6706 ], "lat": [ 53.5296490438886, 53.5296490438886, 53.80915072481978, 53.52971923996491, 53.52975086923267, 53.864471803645856, 53.544418455260804, 53.83455966672514, 53.544418455260804, 54.020847759299066, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.83465312047732, 53.80877462484214, 53.52975086923267, 54.020849005752474, 53.52971923996491, 54.021059534496196, 53.845303866200666, 53.55150694013349, 53.80890241146502, 53.80903972625709, 53.52971923996491, 54.020746549558325, 53.845303866200666, 53.864471803645856, 53.809076375885944, 53.80901818337243, 53.52975086923267, 54.02097892369575, 53.864471803645856, 53.83455966672514, 54.22725596601593, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.83455966672514, 54.020885788146515, 53.859371664231624, 53.83455966672514, 53.80892746585745, 53.80896520272324, 54.02094959149155, 53.864471803645856, 53.845303866200666, 53.83455966672514, 53.83455966672514, 54.020849005752474, 53.864471803645856, 54.020847759299066, 53.864471803645856, 53.845303866200666, 53.80909221822267, 53.80890241146502, 53.83455966672514, 53.859371664231624, 53.83455966672514, 54.020849005752474, 54.0209599818226, 53.80892384370499, 53.80902089070886, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.630604108154332, 14.630604108154332, 14.339825653017522, 14.630780570299253, 14.630616328039563, 13.825501744421523, 14.614465790866785, 14.61843904754546, 14.614465790866785, 14.728650838545583, 13.825501744421523, 13.825501744421523, 14.33978531324949, 14.618480742664287, 14.340041925554642, 14.630616328039563, 14.728603318193455, 14.630780570299253, 14.728615266067688, 13.824118967817144, 14.606512208167038, 14.339950759070799, 14.339912750386873, 14.630780570299253, 14.728456965919694, 13.824118967817144, 13.825501744421523, 14.339652967059697, 14.33973774800166, 14.630616328039563, 14.728585056182643, 13.825501744421523, 14.61843904754546, 13.7785198325034, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.61843904754546, 14.72847357406484, 14.632946843637324, 14.61843904754546, 14.339827351797773, 14.339689073546207, 14.728666036211786, 13.825501744421523, 13.824118967817144, 14.61843904754546, 14.61843904754546, 14.728603318193455, 13.825501744421523, 14.728650838545583, 13.825501744421523, 13.824118967817144, 14.339735499061648, 14.339950759070799, 14.61843904754546, 14.632946843637324, 14.61843904754546, 14.728603318193455, 14.72836000624202, 14.33978531324949, 14.339754867144269, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-20 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-21 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6688, 6678, 6667, 6661, 6682, 6654, 6689, 6689, 6682, 6673, 6664, 6654, 6689, 6689, 6689, 6676, 6710, 6683, 6654, 6689, 6672, 6674, 6689, 6655, 6664, 6692, 6694, 6685, 6699, 6702, 6661, 6673, 6706, 6707, 6666, 6694, 6702, 6658, 6691, 6693, 6694, 6654, 6661, 6689, 6654, 6658, 6698, 6654, 6676, 6705, 6680, 6682, 6655, 6664, 6654, 6654, 6659, 6694, 6695, 6654, 6710, 6706 ], "ids": [ 6689, 6688, 6678, 6667, 6661, 6682, 6654, 6689, 6689, 6682, 6673, 6664, 6654, 6689, 6689, 6689, 6676, 6710, 6683, 6654, 6689, 6672, 6674, 6689, 6655, 6664, 6692, 6694, 6685, 6699, 6702, 6661, 6673, 6706, 6707, 6666, 6694, 6702, 6658, 6691, 6693, 6694, 6654, 6661, 6689, 6654, 6658, 6698, 6654, 6676, 6705, 6680, 6682, 6655, 6664, 6654, 6654, 6659, 6694, 6695, 6654, 6710, 6706 ], "lat": [ 53.864471803645856, 53.80909221822267, 53.83465312047732, 54.02096962344496, 54.020849005752474, 53.52971923996491, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.52971923996491, 53.80890241146502, 53.52975086923267, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.864471803645856, 54.020847759299066, 53.54516428167382, 53.80901818337243, 53.83455966672514, 53.864471803645856, 54.020885788146515, 53.80903972625709, 53.864471803645856, 53.80892384370499, 53.52975086923267, 54.02094959149155, 53.845303866200666, 53.80877462484214, 53.80892746585745, 53.857724925772885, 54.020849005752474, 53.80890241146502, 53.80915072481978, 53.80902089070886, 53.809076375885944, 53.845303866200666, 53.857724925772885, 53.5296490438886, 54.02097892369575, 54.22725596601593, 53.845303866200666, 53.83455966672514, 54.020849005752474, 53.864471803645856, 53.83455966672514, 53.5296490438886, 54.021059534496196, 53.83455966672514, 54.020847759299066, 53.55150694013349, 54.020746549558325, 53.52971923996491, 53.80892384370499, 53.52975086923267, 53.83455966672514, 53.83455966672514, 53.80896520272324, 53.845303866200666, 54.0209599818226, 53.83455966672514, 53.54516428167382, 53.80915072481978 ], "legendgroup": "", "lon": [ 13.825501744421523, 14.339735499061648, 14.618480742664287, 14.728602599451175, 14.728603318193455, 14.630780570299253, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.630780570299253, 14.339950759070799, 14.630616328039563, 14.61843904754546, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.728650838545583, 14.613664498132943, 14.33973774800166, 14.61843904754546, 13.825501744421523, 14.72847357406484, 14.339912750386873, 13.825501744421523, 14.33978531324949, 14.630616328039563, 14.728666036211786, 13.824118967817144, 14.340041925554642, 14.339827351797773, 14.631970176508668, 14.728603318193455, 14.339950759070799, 14.339825653017522, 14.339754867144269, 14.339652967059697, 13.824118967817144, 14.631970176508668, 14.630604108154332, 14.728585056182643, 13.7785198325034, 13.824118967817144, 14.61843904754546, 14.728603318193455, 13.825501744421523, 14.61843904754546, 14.630604108154332, 14.728615266067688, 14.61843904754546, 14.728650838545583, 14.606512208167038, 14.728456965919694, 14.630780570299253, 14.33978531324949, 14.630616328039563, 14.61843904754546, 14.61843904754546, 14.339689073546207, 13.824118967817144, 14.72836000624202, 14.61843904754546, 14.613664498132943, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-21 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-22 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6683, 6689, 6680, 6702, 6694, 6693, 6695, 6658, 6654, 6674, 6676, 6661, 6659, 6655, 6689, 6702, 6689, 6688, 6654, 6667, 6699, 6664, 6706, 6672, 6692, 6654, 6666, 6689, 6706, 6689, 6673, 6691, 6682, 6710, 6694, 6654, 6689, 6664, 6661, 6658, 6685, 6676, 6682, 6689, 6655, 6661, 6664, 6654, 6654, 6682, 6710, 6673, 6654, 6694, 6698, 6694, 6707, 6654, 6678, 6689, 6705, 6654, 6689 ], "ids": [ 6683, 6689, 6680, 6702, 6694, 6693, 6695, 6658, 6654, 6674, 6676, 6661, 6659, 6655, 6689, 6702, 6689, 6688, 6654, 6667, 6699, 6664, 6706, 6672, 6692, 6654, 6666, 6689, 6706, 6689, 6673, 6691, 6682, 6710, 6694, 6654, 6689, 6664, 6661, 6658, 6685, 6676, 6682, 6689, 6655, 6661, 6664, 6654, 6654, 6682, 6710, 6673, 6654, 6694, 6698, 6694, 6707, 6654, 6678, 6689, 6705, 6654, 6689 ], "lat": [ 53.80901818337243, 53.864471803645856, 54.020746549558325, 53.85607818731414, 53.845303866200666, 54.22725596601593, 54.0209599818226, 53.5296490438886, 53.83455966672514, 53.80903972625709, 54.020847759299066, 54.020849005752474, 53.80896520272324, 53.80892384370499, 53.864471803645856, 53.85607818731414, 53.864471803645856, 53.80909221822267, 53.83455966672514, 54.02096962344496, 53.80892746585745, 53.52975086923267, 53.80915072481978, 54.020885788146515, 54.02094959149155, 53.83455966672514, 53.809076375885944, 53.864471803645856, 53.80915072481978, 53.864471803645856, 53.80890241146502, 54.02097892369575, 53.52971923996491, 53.54591010808684, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.52975086923267, 54.020849005752474, 53.5296490438886, 53.80877462484214, 54.020847759299066, 53.52971923996491, 53.864471803645856, 53.80892384370499, 54.020849005752474, 53.52975086923267, 53.83455966672514, 53.83455966672514, 53.52971923996491, 53.54591010808684, 53.80890241146502, 53.83455966672514, 53.845303866200666, 54.021059534496196, 53.845303866200666, 53.80902089070886, 53.83455966672514, 53.83465312047732, 53.864471803645856, 53.55150694013349, 53.83455966672514, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.33973774800166, 13.825501744421523, 14.728456965919694, 14.63099350938001, 13.824118967817144, 13.7785198325034, 14.72836000624202, 14.630604108154332, 14.61843904754546, 14.339912750386873, 14.728650838545583, 14.728603318193455, 14.339689073546207, 14.33978531324949, 13.825501744421523, 14.63099350938001, 13.825501744421523, 14.339735499061648, 14.61843904754546, 14.728602599451175, 14.339827351797773, 14.630616328039563, 14.339825653017522, 14.72847357406484, 14.728666036211786, 14.61843904754546, 14.339652967059697, 13.825501744421523, 14.339825653017522, 13.825501744421523, 14.339950759070799, 14.728585056182643, 14.630780570299253, 14.612863205399103, 13.824118967817144, 14.61843904754546, 13.825501744421523, 14.630616328039563, 14.728603318193455, 14.630604108154332, 14.340041925554642, 14.728650838545583, 14.630780570299253, 13.825501744421523, 14.33978531324949, 14.728603318193455, 14.630616328039563, 14.61843904754546, 14.61843904754546, 14.630780570299253, 14.612863205399103, 14.339950759070799, 14.61843904754546, 13.824118967817144, 14.728615266067688, 13.824118967817144, 14.339754867144269, 14.61843904754546, 14.618480742664287, 13.825501744421523, 14.606512208167038, 14.61843904754546, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-22 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-23 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6666, 6698, 6674, 6689, 6659, 6689, 6688, 6658, 6706, 6692, 6702, 6664, 6689, 6654, 6710, 6654, 6710, 6689, 6676, 6693, 6661, 6654, 6695, 6678, 6689, 6694, 6682, 6658, 6680, 6654, 6654, 6705, 6654, 6706, 6694, 6707, 6673, 6691, 6654, 6694, 6685, 6661, 6655, 6682, 6682, 6664, 6654, 6661, 6689, 6676, 6667, 6655, 6689, 6689, 6702, 6683, 6672, 6689, 6694, 6699, 6654, 6664, 6673 ], "ids": [ 6666, 6698, 6674, 6689, 6659, 6689, 6688, 6658, 6706, 6692, 6702, 6664, 6689, 6654, 6710, 6654, 6710, 6689, 6676, 6693, 6661, 6654, 6695, 6678, 6689, 6694, 6682, 6658, 6680, 6654, 6654, 6705, 6654, 6706, 6694, 6707, 6673, 6691, 6654, 6694, 6685, 6661, 6655, 6682, 6682, 6664, 6654, 6661, 6689, 6676, 6667, 6655, 6689, 6689, 6702, 6683, 6672, 6689, 6694, 6699, 6654, 6664, 6673 ], "lat": [ 53.809076375885944, 54.021059534496196, 53.80903972625709, 53.864471803645856, 53.80896520272324, 53.864471803645856, 53.80909221822267, 53.5296490438886, 53.80915072481978, 54.02094959149155, 53.8544314488554, 53.52975086923267, 53.864471803645856, 53.83455966672514, 53.54665593449985, 53.83455966672514, 53.54665593449985, 53.864471803645856, 54.020847759299066, 54.22725596601593, 54.020849005752474, 53.83455966672514, 54.0209599818226, 53.83465312047732, 53.864471803645856, 53.845303866200666, 53.52971923996491, 53.5296490438886, 54.020746549558325, 53.83455966672514, 53.83455966672514, 53.55150694013349, 53.83455966672514, 53.80915072481978, 53.845303866200666, 53.80902089070886, 53.80890241146502, 54.02097892369575, 53.83455966672514, 53.845303866200666, 53.80877462484214, 54.020849005752474, 53.80892384370499, 53.52971923996491, 53.52971923996491, 53.52975086923267, 53.83455966672514, 54.020849005752474, 53.864471803645856, 54.020847759299066, 54.02096962344496, 53.80892384370499, 53.864471803645856, 53.864471803645856, 53.8544314488554, 53.80901818337243, 54.020885788146515, 53.864471803645856, 53.845303866200666, 53.80892746585745, 53.83455966672514, 53.52975086923267, 53.80890241146502 ], "legendgroup": "", "lon": [ 14.339652967059697, 14.728615266067688, 14.339912750386873, 13.825501744421523, 14.339689073546207, 13.825501744421523, 14.339735499061648, 14.630604108154332, 14.339825653017522, 14.728666036211786, 14.630016842251354, 14.630616328039563, 13.825501744421523, 14.61843904754546, 14.612061912665261, 14.61843904754546, 14.612061912665261, 13.825501744421523, 14.728650838545583, 13.7785198325034, 14.728603318193455, 14.61843904754546, 14.72836000624202, 14.618480742664287, 13.825501744421523, 13.824118967817144, 14.630780570299253, 14.630604108154332, 14.728456965919694, 14.61843904754546, 14.61843904754546, 14.606512208167038, 14.61843904754546, 14.339825653017522, 13.824118967817144, 14.339754867144269, 14.339950759070799, 14.728585056182643, 14.61843904754546, 13.824118967817144, 14.340041925554642, 14.728603318193455, 14.33978531324949, 14.630780570299253, 14.630780570299253, 14.630616328039563, 14.61843904754546, 14.728603318193455, 13.825501744421523, 14.728650838545583, 14.728602599451175, 14.33978531324949, 13.825501744421523, 13.825501744421523, 14.630016842251354, 14.33973774800166, 14.72847357406484, 13.825501744421523, 13.824118967817144, 14.339827351797773, 14.61843904754546, 14.630616328039563, 14.339950759070799 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-23 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-24 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6694, 6661, 6654, 6674, 6654, 6695, 6654, 6694, 6659, 6654, 6707, 6655, 6692, 6706, 6710, 6694, 6682, 6676, 6666, 6680, 6702, 6693, 6654, 6664, 6699, 6694, 6702, 6689, 6682, 6689, 6676, 6706, 6689, 6710, 6654, 6689, 6673, 6672, 6689, 6683, 6689, 6688, 6667, 6689, 6661, 6654, 6664, 6664, 6661, 6655, 6682, 6678, 6689, 6658, 6654, 6691, 6658, 6673, 6654, 6685, 6698, 6705, 6689 ], "ids": [ 6694, 6661, 6654, 6674, 6654, 6695, 6654, 6694, 6659, 6654, 6707, 6655, 6692, 6706, 6710, 6694, 6682, 6676, 6666, 6680, 6702, 6693, 6654, 6664, 6699, 6694, 6702, 6689, 6682, 6689, 6676, 6706, 6689, 6710, 6654, 6689, 6673, 6672, 6689, 6683, 6689, 6688, 6667, 6689, 6661, 6654, 6664, 6664, 6661, 6655, 6682, 6678, 6689, 6658, 6654, 6691, 6658, 6673, 6654, 6685, 6698, 6705, 6689 ], "lat": [ 53.845303866200666, 54.020849005752474, 53.83455966672514, 53.80903972625709, 53.83455966672514, 54.0209599818226, 53.83455966672514, 53.845303866200666, 53.80896520272324, 53.83455966672514, 53.80902089070886, 53.80892384370499, 54.02094959149155, 53.80915072481978, 53.54740176091287, 53.845303866200666, 53.52971923996491, 54.020847759299066, 53.809076375885944, 54.020746549558325, 53.852784710396655, 54.22725596601593, 53.83455966672514, 53.52975086923267, 53.80892746585745, 53.845303866200666, 53.852784710396655, 53.864471803645856, 53.52971923996491, 53.864471803645856, 54.020847759299066, 53.80915072481978, 53.864471803645856, 53.54740176091287, 53.83455966672514, 53.864471803645856, 53.80890241146502, 54.020885788146515, 53.864471803645856, 53.80901818337243, 53.864471803645856, 53.80909221822267, 54.02096962344496, 53.864471803645856, 54.020849005752474, 53.83455966672514, 53.52975086923267, 53.52975086923267, 54.020849005752474, 53.80892384370499, 53.52971923996491, 53.83465312047732, 53.864471803645856, 53.5296490438886, 53.83455966672514, 54.02097892369575, 53.5296490438886, 53.80890241146502, 53.83455966672514, 53.80877462484214, 54.021059534496196, 53.55150694013349, 53.864471803645856 ], "legendgroup": "", "lon": [ 13.824118967817144, 14.728603318193455, 14.61843904754546, 14.339912750386873, 14.61843904754546, 14.72836000624202, 14.61843904754546, 13.824118967817144, 14.339689073546207, 14.61843904754546, 14.339754867144269, 14.33978531324949, 14.728666036211786, 14.339825653017522, 14.61126061993142, 13.824118967817144, 14.630780570299253, 14.728650838545583, 14.339652967059697, 14.728456965919694, 14.629040175122698, 13.7785198325034, 14.61843904754546, 14.630616328039563, 14.339827351797773, 13.824118967817144, 14.629040175122698, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.728650838545583, 14.339825653017522, 13.825501744421523, 14.61126061993142, 14.61843904754546, 13.825501744421523, 14.339950759070799, 14.72847357406484, 13.825501744421523, 14.33973774800166, 13.825501744421523, 14.339735499061648, 14.728602599451175, 13.825501744421523, 14.728603318193455, 14.61843904754546, 14.630616328039563, 14.630616328039563, 14.728603318193455, 14.33978531324949, 14.630780570299253, 14.618480742664287, 13.825501744421523, 14.630604108154332, 14.61843904754546, 14.728585056182643, 14.630604108154332, 14.339950759070799, 14.61843904754546, 14.340041925554642, 14.728615266067688, 14.606512208167038, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-24 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-25 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6685, 6664, 6654, 6654, 6689, 6683, 6682, 6659, 6705, 6682, 6689, 6695, 6654, 6710, 6702, 6676, 6682, 6691, 6661, 6654, 6655, 6661, 6672, 6694, 6699, 6674, 6710, 6664, 6689, 6688, 6676, 6654, 6689, 6689, 6654, 6694, 6680, 6707, 6694, 6667, 6689, 6689, 6673, 6693, 6698, 6678, 6689, 6654, 6692, 6689, 6666, 6654, 6655, 6654, 6673, 6694, 6702, 6706, 6658, 6658, 6664, 6661, 6706 ], "ids": [ 6685, 6664, 6654, 6654, 6689, 6683, 6682, 6659, 6705, 6682, 6689, 6695, 6654, 6710, 6702, 6676, 6682, 6691, 6661, 6654, 6655, 6661, 6672, 6694, 6699, 6674, 6710, 6664, 6689, 6688, 6676, 6654, 6689, 6689, 6654, 6694, 6680, 6707, 6694, 6667, 6689, 6689, 6673, 6693, 6698, 6678, 6689, 6654, 6692, 6689, 6666, 6654, 6655, 6654, 6673, 6694, 6702, 6706, 6658, 6658, 6664, 6661, 6706 ], "lat": [ 53.80877462484214, 53.52975086923267, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.80901818337243, 53.52971923996491, 53.80896520272324, 53.55150694013349, 53.52971923996491, 53.864471803645856, 54.0209599818226, 53.83455966672514, 53.548147587325886, 53.85113797193791, 54.020847759299066, 53.52971923996491, 54.02097892369575, 54.020849005752474, 53.83455966672514, 53.80892384370499, 54.020849005752474, 54.020885788146515, 53.845303866200666, 53.80892746585745, 53.80903972625709, 53.548147587325886, 53.52975086923267, 53.864471803645856, 53.80909221822267, 54.020847759299066, 53.83455966672514, 53.864471803645856, 53.864471803645856, 53.83455966672514, 53.845303866200666, 54.020746549558325, 53.80902089070886, 53.845303866200666, 54.02096962344496, 53.864471803645856, 53.864471803645856, 53.80890241146502, 54.22725596601593, 54.021059534496196, 53.83465312047732, 53.864471803645856, 53.83455966672514, 54.02094959149155, 53.864471803645856, 53.809076375885944, 53.83455966672514, 53.80892384370499, 53.83455966672514, 53.80890241146502, 53.845303866200666, 53.85113797193791, 53.80915072481978, 53.5296490438886, 53.5296490438886, 53.52975086923267, 54.020849005752474, 53.80915072481978 ], "legendgroup": "", "lon": [ 14.340041925554642, 14.630616328039563, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.33973774800166, 14.630780570299253, 14.339689073546207, 14.606512208167038, 14.630780570299253, 13.825501744421523, 14.72836000624202, 14.61843904754546, 14.61045932719758, 14.628063507994042, 14.728650838545583, 14.630780570299253, 14.728585056182643, 14.728603318193455, 14.61843904754546, 14.33978531324949, 14.728603318193455, 14.72847357406484, 13.824118967817144, 14.339827351797773, 14.339912750386873, 14.61045932719758, 14.630616328039563, 13.825501744421523, 14.339735499061648, 14.728650838545583, 14.61843904754546, 13.825501744421523, 13.825501744421523, 14.61843904754546, 13.824118967817144, 14.728456965919694, 14.339754867144269, 13.824118967817144, 14.728602599451175, 13.825501744421523, 13.825501744421523, 14.339950759070799, 13.7785198325034, 14.728615266067688, 14.618480742664287, 13.825501744421523, 14.61843904754546, 14.728666036211786, 13.825501744421523, 14.339652967059697, 14.61843904754546, 14.33978531324949, 14.61843904754546, 14.339950759070799, 13.824118967817144, 14.628063507994042, 14.339825653017522, 14.630604108154332, 14.630604108154332, 14.630616328039563, 14.728603318193455, 14.339825653017522 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-25 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-26 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6689, 6689, 6661, 6685, 6673, 6691, 6706, 6694, 6682, 6654, 6676, 6694, 6654, 6664, 6689, 6654, 6658, 6664, 6694, 6689, 6707, 6661, 6682, 6678, 6705, 6673, 6674, 6672, 6654, 6682, 6689, 6661, 6702, 6693, 6698, 6699, 6689, 6706, 6654, 6664, 6658, 6702, 6666, 6655, 6659, 6692, 6710, 6689, 6683, 6655, 6654, 6676, 6654, 6688, 6680, 6667, 6710, 6654, 6689, 6654, 6695, 6689, 6694 ], "ids": [ 6689, 6689, 6661, 6685, 6673, 6691, 6706, 6694, 6682, 6654, 6676, 6694, 6654, 6664, 6689, 6654, 6658, 6664, 6694, 6689, 6707, 6661, 6682, 6678, 6705, 6673, 6674, 6672, 6654, 6682, 6689, 6661, 6702, 6693, 6698, 6699, 6689, 6706, 6654, 6664, 6658, 6702, 6666, 6655, 6659, 6692, 6710, 6689, 6683, 6655, 6654, 6676, 6654, 6688, 6680, 6667, 6710, 6654, 6689, 6654, 6695, 6689, 6694 ], "lat": [ 53.864471803645856, 53.864471803645856, 54.020849005752474, 53.80877462484214, 53.80890241146502, 54.02097892369575, 53.80915072481978, 53.845303866200666, 53.52971923996491, 53.83455966672514, 54.020847759299066, 53.845303866200666, 53.83455966672514, 53.52975086923267, 53.864471803645856, 53.83455966672514, 53.5296490438886, 53.52975086923267, 53.845303866200666, 53.864471803645856, 53.80902089070886, 54.020849005752474, 53.52971923996491, 53.83465312047732, 53.55150694013349, 53.80890241146502, 53.80903972625709, 54.020885788146515, 53.83455966672514, 53.52971923996491, 53.864471803645856, 54.020849005752474, 53.84949123347917, 54.22725596601593, 54.021059534496196, 53.80892746585745, 53.864471803645856, 53.80915072481978, 53.83455966672514, 53.52975086923267, 53.5296490438886, 53.84949123347917, 53.809076375885944, 53.80892384370499, 53.80896520272324, 54.02094959149155, 53.5488934137389, 53.864471803645856, 53.80901818337243, 53.80892384370499, 53.83455966672514, 54.020847759299066, 53.83455966672514, 53.80909221822267, 54.020746549558325, 54.02096962344496, 53.5488934137389, 53.83455966672514, 53.864471803645856, 53.83455966672514, 54.0209599818226, 53.864471803645856, 53.845303866200666 ], "legendgroup": "", "lon": [ 13.825501744421523, 13.825501744421523, 14.728603318193455, 14.340041925554642, 14.339950759070799, 14.728585056182643, 14.339825653017522, 13.824118967817144, 14.630780570299253, 14.61843904754546, 14.728650838545583, 13.824118967817144, 14.61843904754546, 14.630616328039563, 13.825501744421523, 14.61843904754546, 14.630604108154332, 14.630616328039563, 13.824118967817144, 13.825501744421523, 14.339754867144269, 14.728603318193455, 14.630780570299253, 14.618480742664287, 14.606512208167038, 14.339950759070799, 14.339912750386873, 14.72847357406484, 14.61843904754546, 14.630780570299253, 13.825501744421523, 14.728603318193455, 14.627086840865385, 13.7785198325034, 14.728615266067688, 14.339827351797773, 13.825501744421523, 14.339825653017522, 14.61843904754546, 14.630616328039563, 14.630604108154332, 14.627086840865385, 14.339652967059697, 14.33978531324949, 14.339689073546207, 14.728666036211786, 14.609658034463738, 13.825501744421523, 14.33973774800166, 14.33978531324949, 14.61843904754546, 14.728650838545583, 14.61843904754546, 14.339735499061648, 14.728456965919694, 14.728602599451175, 14.609658034463738, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.72836000624202, 13.825501744421523, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-26 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-27 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6654, 6706, 6702, 6655, 6664, 6654, 6694, 6661, 6699, 6707, 6654, 6694, 6695, 6694, 6680, 6694, 6693, 6654, 6676, 6678, 6705, 6654, 6689, 6654, 6682, 6710, 6689, 6688, 6654, 6689, 6698, 6655, 6689, 6658, 6692, 6666, 6654, 6706, 6702, 6659, 6710, 6712, 6674, 6661, 6676, 6667, 6689, 6658, 6691, 6683, 6685, 6664, 6689, 6682, 6682, 6664, 6689, 6672, 6689, 6661, 6673, 6673, 6654, 6689 ], "ids": [ 6654, 6706, 6702, 6655, 6664, 6654, 6694, 6661, 6699, 6707, 6654, 6694, 6695, 6694, 6680, 6694, 6693, 6654, 6676, 6678, 6705, 6654, 6689, 6654, 6682, 6710, 6689, 6688, 6654, 6689, 6698, 6655, 6689, 6658, 6692, 6666, 6654, 6706, 6702, 6659, 6710, 6712, 6674, 6661, 6676, 6667, 6689, 6658, 6691, 6683, 6685, 6664, 6689, 6682, 6682, 6664, 6689, 6672, 6689, 6661, 6673, 6673, 6654, 6689 ], "lat": [ 53.83455966672514, 53.80915072481978, 53.847844495020425, 53.80892384370499, 53.52975086923267, 53.83455966672514, 53.845303866200666, 54.020849005752474, 53.80892746585745, 53.80902089070886, 53.83455966672514, 53.845303866200666, 54.0209599818226, 53.845303866200666, 54.020746549558325, 53.845303866200666, 54.22725596601593, 53.83455966672514, 54.020847759299066, 53.83465312047732, 53.55150694013349, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.52971923996491, 53.54963924015191, 53.864471803645856, 53.80909221822267, 53.83455966672514, 53.864471803645856, 54.021059534496196, 53.80892384370499, 53.864471803645856, 53.5296490438886, 54.02094959149155, 53.809076375885944, 53.83455966672514, 53.80915072481978, 53.847844495020425, 53.80896520272324, 53.54963924015191, 53.83455966672514, 53.80903972625709, 54.020849005752474, 54.020847759299066, 54.02096962344496, 53.864471803645856, 53.5296490438886, 54.02097892369575, 53.80901818337243, 53.80877462484214, 53.52975086923267, 53.864471803645856, 53.52971923996491, 53.52971923996491, 53.52975086923267, 53.864471803645856, 54.020885788146515, 53.864471803645856, 54.020849005752474, 53.80890241146502, 53.80890241146502, 53.83455966672514, 53.864471803645856 ], "legendgroup": "", "lon": [ 14.61843904754546, 14.339825653017522, 14.626110173736729, 14.33978531324949, 14.630616328039563, 14.61843904754546, 13.824118967817144, 14.728603318193455, 14.339827351797773, 14.339754867144269, 14.61843904754546, 13.824118967817144, 14.72836000624202, 13.824118967817144, 14.728456965919694, 13.824118967817144, 13.7785198325034, 14.61843904754546, 14.728650838545583, 14.618480742664287, 14.606512208167038, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.630780570299253, 14.608856741729898, 13.825501744421523, 14.339735499061648, 14.61843904754546, 13.825501744421523, 14.728615266067688, 14.33978531324949, 13.825501744421523, 14.630604108154332, 14.728666036211786, 14.339652967059697, 14.61843904754546, 14.339825653017522, 14.626110173736729, 14.339689073546207, 14.608856741729898, 14.61843904754546, 14.339912750386873, 14.728603318193455, 14.728650838545583, 14.728602599451175, 13.825501744421523, 14.630604108154332, 14.728585056182643, 14.33973774800166, 14.340041925554642, 14.630616328039563, 13.825501744421523, 14.630780570299253, 14.630780570299253, 14.630616328039563, 13.825501744421523, 14.72847357406484, 13.825501744421523, 14.728603318193455, 14.339950759070799, 14.339950759070799, 14.61843904754546, 13.825501744421523 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-27 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-02-28 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6661, 6664, 6659, 6654, 6664, 6692, 6691, 6688, 6689, 6672, 6654, 6676, 6654, 6682, 6654, 6658, 6673, 6685, 6698, 6654, 6712, 6689, 6682, 6655, 6706, 6694, 6702, 6680, 6654, 6683, 6667, 6694, 6654, 6689, 6674, 6689, 6693, 6710, 6689, 6689, 6706, 6682, 6654, 6658, 6707, 6695, 6676, 6689, 6664, 6694, 6678, 6689, 6702, 6666, 6661, 6654, 6661, 6689, 6673, 6655, 6699, 6694, 6705, 6710 ], "ids": [ 6661, 6664, 6659, 6654, 6664, 6692, 6691, 6688, 6689, 6672, 6654, 6676, 6654, 6682, 6654, 6658, 6673, 6685, 6698, 6654, 6712, 6689, 6682, 6655, 6706, 6694, 6702, 6680, 6654, 6683, 6667, 6694, 6654, 6689, 6674, 6689, 6693, 6710, 6689, 6689, 6706, 6682, 6654, 6658, 6707, 6695, 6676, 6689, 6664, 6694, 6678, 6689, 6702, 6666, 6661, 6654, 6661, 6689, 6673, 6655, 6699, 6694, 6705, 6710 ], "lat": [ 54.020849005752474, 53.52975086923267, 53.80896520272324, 53.83455966672514, 53.52975086923267, 54.02094959149155, 54.02097892369575, 53.80909221822267, 53.864471803645856, 54.020885788146515, 53.83455966672514, 54.020847759299066, 53.83455966672514, 53.52971923996491, 53.83455966672514, 53.5296490438886, 53.80890241146502, 53.80877462484214, 54.021059534496196, 53.83455966672514, 53.80892384370499, 53.864471803645856, 53.52971923996491, 53.80892384370499, 53.80915072481978, 53.845303866200666, 53.846197756561686, 54.020746549558325, 53.83455966672514, 53.80901818337243, 54.02096962344496, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.80903972625709, 53.864471803645856, 54.22725596601593, 53.55038506656493, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.52971923996491, 53.83455966672514, 53.5296490438886, 53.80902089070886, 54.0209599818226, 54.020847759299066, 53.864471803645856, 53.52975086923267, 53.845303866200666, 53.83465312047732, 53.864471803645856, 53.846197756561686, 53.809076375885944, 54.020849005752474, 53.83455966672514, 54.020849005752474, 53.864471803645856, 53.80890241146502, 53.80892384370499, 53.80892746585745, 53.845303866200666, 53.55150694013349, 53.55038506656493 ], "legendgroup": "", "lon": [ 14.728603318193455, 14.630616328039563, 14.339689073546207, 14.61843904754546, 14.630616328039563, 14.728666036211786, 14.728585056182643, 14.339735499061648, 13.825501744421523, 14.72847357406484, 14.61843904754546, 14.728650838545583, 14.61843904754546, 14.630780570299253, 14.61843904754546, 14.630604108154332, 14.339950759070799, 14.340041925554642, 14.728615266067688, 14.61843904754546, 14.33978531324949, 13.825501744421523, 14.630780570299253, 14.33978531324949, 14.339825653017522, 13.824118967817144, 14.625133506608073, 14.728456965919694, 14.61843904754546, 14.33973774800166, 14.728602599451175, 13.824118967817144, 14.61843904754546, 13.825501744421523, 14.339912750386873, 13.825501744421523, 13.7785198325034, 14.608055448996057, 13.825501744421523, 13.825501744421523, 14.339825653017522, 14.630780570299253, 14.61843904754546, 14.630604108154332, 14.339754867144269, 14.72836000624202, 14.728650838545583, 13.825501744421523, 14.630616328039563, 13.824118967817144, 14.618480742664287, 13.825501744421523, 14.625133506608073, 14.339652967059697, 14.728603318193455, 14.61843904754546, 14.728603318193455, 13.825501744421523, 14.339950759070799, 14.33978531324949, 14.339827351797773, 13.824118967817144, 14.606512208167038, 14.608055448996057 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-02-28 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-01 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6698, 6661, 6654, 6654, 6689, 6688, 6655, 6694, 6689, 6664, 6658, 6678, 6661, 6672, 6689, 6673, 6689, 6689, 6655, 6689, 6676, 6658, 6654, 6667, 6682, 6710, 6673, 6706, 6706, 6692, 6654, 6682, 6707, 6694, 6685, 6654, 6691, 6682, 6654, 6705, 6661, 6664, 6702, 6654, 6654, 6664, 6676, 6695, 6699, 6683, 6689, 6694, 6666, 6694, 6712, 6680, 6674, 6710, 6693, 6689, 6702, 6659, 6689, 6654 ], "ids": [ 6698, 6661, 6654, 6654, 6689, 6688, 6655, 6694, 6689, 6664, 6658, 6678, 6661, 6672, 6689, 6673, 6689, 6689, 6655, 6689, 6676, 6658, 6654, 6667, 6682, 6710, 6673, 6706, 6706, 6692, 6654, 6682, 6707, 6694, 6685, 6654, 6691, 6682, 6654, 6705, 6661, 6664, 6702, 6654, 6654, 6664, 6676, 6695, 6699, 6683, 6689, 6694, 6666, 6694, 6712, 6680, 6674, 6710, 6693, 6689, 6702, 6659, 6689, 6654 ], "lat": [ 54.021059534496196, 54.020849005752474, 53.83455966672514, 53.83455966672514, 53.864471803645856, 53.80909221822267, 53.80892384370499, 53.845303866200666, 53.864471803645856, 53.52975086923267, 53.5296490438886, 53.83465312047732, 54.020849005752474, 54.020885788146515, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.864471803645856, 53.80892384370499, 53.864471803645856, 54.020847759299066, 53.5296490438886, 53.83455966672514, 54.02096962344496, 53.52971923996491, 53.551130892977945, 53.80890241146502, 53.80915072481978, 53.80915072481978, 54.02094959149155, 53.83455966672514, 53.52971923996491, 53.80902089070886, 53.845303866200666, 53.80877462484214, 53.83455966672514, 54.02097892369575, 53.52971923996491, 53.83455966672514, 53.55150694013349, 54.020849005752474, 53.52975086923267, 53.84455101810294, 53.83455966672514, 53.83455966672514, 53.52975086923267, 54.020847759299066, 54.0209599818226, 53.80892746585745, 53.80901818337243, 53.864471803645856, 53.845303866200666, 53.809076375885944, 53.845303866200666, 54.02096962344496, 54.020746549558325, 53.80903972625709, 53.551130892977945, 54.22725596601593, 53.864471803645856, 53.84455101810294, 53.80896520272324, 53.864471803645856, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.728615266067688, 14.728603318193455, 14.61843904754546, 14.61843904754546, 13.825501744421523, 14.339735499061648, 14.33978531324949, 13.824118967817144, 13.825501744421523, 14.630616328039563, 14.630604108154332, 14.618480742664287, 14.728603318193455, 14.72847357406484, 13.825501744421523, 14.339950759070799, 13.825501744421523, 13.825501744421523, 14.33978531324949, 13.825501744421523, 14.728650838545583, 14.630604108154332, 14.61843904754546, 14.728602599451175, 14.630780570299253, 14.607254156262217, 14.339950759070799, 14.339825653017522, 14.339825653017522, 14.728666036211786, 14.61843904754546, 14.630780570299253, 14.339754867144269, 13.824118967817144, 14.340041925554642, 14.61843904754546, 14.728585056182643, 14.630780570299253, 14.61843904754546, 14.606512208167038, 14.728603318193455, 14.630616328039563, 14.624156839479417, 14.61843904754546, 14.61843904754546, 14.630616328039563, 14.728650838545583, 14.72836000624202, 14.339827351797773, 14.33973774800166, 13.825501744421523, 13.824118967817144, 14.339652967059697, 13.824118967817144, 14.728602599451175, 14.728456965919694, 14.339912750386873, 14.607254156262217, 13.7785198325034, 13.825501744421523, 14.624156839479417, 14.339689073546207, 13.825501744421523, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-01 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-02 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6655, 6655, 6654, 6707, 6702, 6664, 6654, 6654, 6658, 6661, 6694, 6694, 6699, 6680, 6694, 6693, 6694, 6654, 6673, 6706, 6682, 6689, 6689, 6706, 6710, 6674, 6702, 6659, 6689, 6683, 6654, 6654, 6692, 6682, 6685, 6682, 6691, 6705, 6661, 6664, 6654, 6654, 6676, 6695, 6689, 6666, 6712, 6710, 6689, 6672, 6676, 6658, 6689, 6654, 6667, 6689, 6689, 6688, 6698, 6678, 6661, 6664, 6689, 6673 ], "ids": [ 6655, 6655, 6654, 6707, 6702, 6664, 6654, 6654, 6658, 6661, 6694, 6694, 6699, 6680, 6694, 6693, 6694, 6654, 6673, 6706, 6682, 6689, 6689, 6706, 6710, 6674, 6702, 6659, 6689, 6683, 6654, 6654, 6692, 6682, 6685, 6682, 6691, 6705, 6661, 6664, 6654, 6654, 6676, 6695, 6689, 6666, 6712, 6710, 6689, 6672, 6676, 6658, 6689, 6654, 6667, 6689, 6689, 6688, 6698, 6678, 6661, 6664, 6689, 6673 ], "lat": [ 53.80892384370499, 53.80892384370499, 53.83455966672514, 53.80902089070886, 53.8429042796442, 53.52975086923267, 53.83455966672514, 53.83455966672514, 53.5296490438886, 54.020849005752474, 53.845303866200666, 53.845303866200666, 53.80892746585745, 54.020746549558325, 53.845303866200666, 54.22725596601593, 53.845303866200666, 53.83455966672514, 53.80890241146502, 53.80915072481978, 53.52971923996491, 53.864471803645856, 53.864471803645856, 53.80915072481978, 53.55187671939096, 53.80903972625709, 53.8429042796442, 53.80896520272324, 53.864471803645856, 53.80901818337243, 53.83455966672514, 53.83455966672514, 54.02094959149155, 53.52971923996491, 53.80877462484214, 53.52971923996491, 54.02097892369575, 53.55150694013349, 54.020849005752474, 53.52975086923267, 53.83455966672514, 53.83455966672514, 54.020847759299066, 54.0209599818226, 53.864471803645856, 53.809076375885944, 53.80915072481978, 53.55187671939096, 53.864471803645856, 54.020885788146515, 54.020847759299066, 53.5296490438886, 53.864471803645856, 53.83455966672514, 54.02096962344496, 53.864471803645856, 53.864471803645856, 53.80909221822267, 54.021059534496196, 53.83465312047732, 54.020849005752474, 53.52975086923267, 53.864471803645856, 53.80890241146502 ], "legendgroup": "", "lon": [ 14.33978531324949, 14.33978531324949, 14.61843904754546, 14.339754867144269, 14.623180172350759, 14.630616328039563, 14.61843904754546, 14.61843904754546, 14.630604108154332, 14.728603318193455, 13.824118967817144, 13.824118967817144, 14.339827351797773, 14.728456965919694, 13.824118967817144, 13.7785198325034, 13.824118967817144, 14.61843904754546, 14.339950759070799, 14.339825653017522, 14.630780570299253, 13.825501744421523, 13.825501744421523, 14.339825653017522, 14.606452863528375, 14.339912750386873, 14.623180172350759, 14.339689073546207, 13.825501744421523, 14.33973774800166, 14.61843904754546, 14.61843904754546, 14.728666036211786, 14.630780570299253, 14.340041925554642, 14.630780570299253, 14.728585056182643, 14.606512208167038, 14.728603318193455, 14.630616328039563, 14.61843904754546, 14.61843904754546, 14.728650838545583, 14.72836000624202, 13.825501744421523, 14.339652967059697, 14.339825653017522, 14.606452863528375, 13.825501744421523, 14.72847357406484, 14.728650838545583, 14.630604108154332, 13.825501744421523, 14.61843904754546, 14.728602599451175, 13.825501744421523, 13.825501744421523, 14.339735499061648, 14.728615266067688, 14.618480742664287, 14.728603318193455, 14.630616328039563, 13.825501744421523, 14.339950759070799 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-02 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-03 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6678, 6664, 6673, 6654, 6702, 6654, 6685, 6654, 6707, 6710, 6693, 6710, 6654, 6712, 6661, 6673, 6654, 6705, 6702, 6689, 6676, 6689, 6689, 6688, 6706, 6682, 6689, 6694, 6680, 6694, 6692, 6659, 6661, 6658, 6698, 6689, 6691, 6689, 6664, 6694, 6676, 6695, 6666, 6682, 6706, 6655, 6654, 6682, 6689, 6689, 6664, 6654, 6667, 6658, 6654, 6655, 6683, 6654, 6672, 6689, 6694, 6661, 6699, 6674 ], "ids": [ 6678, 6664, 6673, 6654, 6702, 6654, 6685, 6654, 6707, 6710, 6693, 6710, 6654, 6712, 6661, 6673, 6654, 6705, 6702, 6689, 6676, 6689, 6689, 6688, 6706, 6682, 6689, 6694, 6680, 6694, 6692, 6659, 6661, 6658, 6698, 6689, 6691, 6689, 6664, 6694, 6676, 6695, 6666, 6682, 6706, 6655, 6654, 6682, 6689, 6689, 6664, 6654, 6667, 6658, 6654, 6655, 6683, 6654, 6672, 6689, 6694, 6661, 6699, 6674 ], "lat": [ 53.83465312047732, 53.52975086923267, 53.80890241146502, 53.83455966672514, 53.841257541185456, 53.83455966672514, 53.80877462484214, 53.83455966672514, 53.80902089070886, 53.55187671939096, 54.22725596601593, 53.55187671939096, 53.83455966672514, 53.80915072481978, 54.020849005752474, 53.80890241146502, 53.83455966672514, 53.55150694013349, 53.841257541185456, 53.864471803645856, 54.020847759299066, 53.864471803645856, 53.864471803645856, 53.80909221822267, 53.80915072481978, 53.52971923996491, 53.864471803645856, 53.845303866200666, 54.020746549558325, 53.845303866200666, 54.02094959149155, 53.80896520272324, 54.020849005752474, 53.5296490438886, 54.021059534496196, 53.864471803645856, 54.02097892369575, 53.864471803645856, 53.52975086923267, 53.845303866200666, 54.020847759299066, 54.0209599818226, 53.809076375885944, 53.52971923996491, 53.80915072481978, 53.80892384370499, 53.83455966672514, 53.52971923996491, 53.864471803645856, 53.864471803645856, 53.52975086923267, 53.83455966672514, 54.02096962344496, 53.5296490438886, 53.83455966672514, 53.80892384370499, 53.80901818337243, 53.83455966672514, 54.020885788146515, 53.864471803645856, 53.845303866200666, 54.020849005752474, 53.80892746585745, 53.80903972625709 ], "legendgroup": "", "lon": [ 14.618480742664287, 14.630616328039563, 14.339950759070799, 14.61843904754546, 14.622203505222103, 14.61843904754546, 14.340041925554642, 14.61843904754546, 14.339754867144269, 14.606452863528375, 13.7785198325034, 14.606452863528375, 14.61843904754546, 14.339825653017522, 14.728603318193455, 14.339950759070799, 14.61843904754546, 14.606512208167038, 14.622203505222103, 13.825501744421523, 14.728650838545583, 13.825501744421523, 13.825501744421523, 14.339735499061648, 14.339825653017522, 14.630780570299253, 13.825501744421523, 13.824118967817144, 14.728456965919694, 13.824118967817144, 14.728666036211786, 14.339689073546207, 14.728603318193455, 14.630604108154332, 14.728615266067688, 13.825501744421523, 14.728585056182643, 13.825501744421523, 14.630616328039563, 13.824118967817144, 14.728650838545583, 14.72836000624202, 14.339652967059697, 14.630780570299253, 14.339825653017522, 14.33978531324949, 14.61843904754546, 14.630780570299253, 13.825501744421523, 13.825501744421523, 14.630616328039563, 14.61843904754546, 14.728602599451175, 14.630604108154332, 14.61843904754546, 14.33978531324949, 14.33973774800166, 14.61843904754546, 14.72847357406484, 13.825501744421523, 13.824118967817144, 14.728603318193455, 14.339827351797773, 14.339912750386873 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-03 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-04 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6682, 6694, 6706, 6695, 6689, 6673, 6664, 6655, 6685, 6702, 6654, 6676, 6666, 6710, 6683, 6694, 6674, 6661, 6682, 6689, 6654, 6707, 6658, 6712, 6706, 6689, 6654, 6705, 6664, 6692, 6689, 6694, 6689, 6654, 6688, 6654, 6673, 6676, 6654, 6689, 6672, 6699, 6689, 6654, 6661, 6680, 6710, 6682, 6664, 6654, 6661, 6689, 6654, 6667, 6689, 6691, 6698, 6702, 6693, 6658, 6655, 6659, 6678, 6694 ], "ids": [ 6682, 6694, 6706, 6695, 6689, 6673, 6664, 6655, 6685, 6702, 6654, 6676, 6666, 6710, 6683, 6694, 6674, 6661, 6682, 6689, 6654, 6707, 6658, 6712, 6706, 6689, 6654, 6705, 6664, 6692, 6689, 6694, 6689, 6654, 6688, 6654, 6673, 6676, 6654, 6689, 6672, 6699, 6689, 6654, 6661, 6680, 6710, 6682, 6664, 6654, 6661, 6689, 6654, 6667, 6689, 6691, 6698, 6702, 6693, 6658, 6655, 6659, 6678, 6694 ], "lat": [ 53.52971923996491, 53.845303866200666, 53.80915072481978, 54.0209599818226, 53.864471803645856, 53.80890241146502, 53.52975086923267, 53.80892384370499, 53.80877462484214, 53.83961080272672, 53.83455966672514, 54.020847759299066, 53.809076375885944, 53.55187671939096, 53.80901818337243, 53.845303866200666, 53.80903972625709, 54.020849005752474, 53.52971923996491, 53.864471803645856, 53.83455966672514, 53.80902089070886, 53.5296490438886, 53.80915072481978, 53.80915072481978, 53.864471803645856, 53.83455966672514, 53.55150694013349, 53.52975086923267, 54.02094959149155, 53.864471803645856, 53.845303866200666, 53.864471803645856, 53.83455966672514, 53.80909221822267, 53.83455966672514, 53.80890241146502, 54.020847759299066, 53.83455966672514, 53.864471803645856, 54.020885788146515, 53.80892746585745, 53.864471803645856, 53.83455966672514, 54.020849005752474, 54.020746549558325, 53.55187671939096, 53.52971923996491, 53.52975086923267, 53.83455966672514, 54.020849005752474, 53.864471803645856, 53.83455966672514, 54.02096962344496, 53.864471803645856, 54.02097892369575, 54.021059534496196, 53.83961080272672, 54.22725596601593, 53.5296490438886, 53.80892384370499, 53.80896520272324, 53.83465312047732, 53.845303866200666 ], "legendgroup": "", "lon": [ 14.630780570299253, 13.824118967817144, 14.339825653017522, 14.72836000624202, 13.825501744421523, 14.339950759070799, 14.630616328039563, 14.33978531324949, 14.340041925554642, 14.621226838093447, 14.61843904754546, 14.728650838545583, 14.339652967059697, 14.606452863528375, 14.33973774800166, 13.824118967817144, 14.339912750386873, 14.728603318193455, 14.630780570299253, 13.825501744421523, 14.61843904754546, 14.339754867144269, 14.630604108154332, 14.339825653017522, 14.339825653017522, 13.825501744421523, 14.61843904754546, 14.606512208167038, 14.630616328039563, 14.728666036211786, 13.825501744421523, 13.824118967817144, 13.825501744421523, 14.61843904754546, 14.339735499061648, 14.61843904754546, 14.339950759070799, 14.728650838545583, 14.61843904754546, 13.825501744421523, 14.72847357406484, 14.339827351797773, 13.825501744421523, 14.61843904754546, 14.728603318193455, 14.728456965919694, 14.606452863528375, 14.630780570299253, 14.630616328039563, 14.61843904754546, 14.728603318193455, 13.825501744421523, 14.61843904754546, 14.728602599451175, 13.825501744421523, 14.728585056182643, 14.728615266067688, 14.621226838093447, 13.7785198325034, 14.630604108154332, 14.33978531324949, 14.339689073546207, 14.618480742664287, 13.824118967817144 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-04 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-05 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6667, 6689, 6689, 6702, 6666, 6710, 6689, 6689, 6674, 6664, 6689, 6712, 6689, 6658, 6706, 6698, 6661, 6678, 6710, 6689, 6673, 6664, 6695, 6694, 6682, 6661, 6694, 6693, 6673, 6699, 6688, 6672, 6691, 6654, 6680, 6659, 6654, 6692, 6694, 6654, 6689, 6654, 6676, 6694, 6689, 6683, 6654, 6664, 6658, 6654, 6654, 6702, 6655, 6676, 6682, 6706, 6654, 6654, 6682, 6705, 6655, 6707, 6661, 6685 ], "ids": [ 6667, 6689, 6689, 6702, 6666, 6710, 6689, 6689, 6674, 6664, 6689, 6712, 6689, 6658, 6706, 6698, 6661, 6678, 6710, 6689, 6673, 6664, 6695, 6694, 6682, 6661, 6694, 6693, 6673, 6699, 6688, 6672, 6691, 6654, 6680, 6659, 6654, 6692, 6694, 6654, 6689, 6654, 6676, 6694, 6689, 6683, 6654, 6664, 6658, 6654, 6654, 6702, 6655, 6676, 6682, 6706, 6654, 6654, 6682, 6705, 6655, 6707, 6661, 6685 ], "lat": [ 54.02096962344496, 53.864471803645856, 53.864471803645856, 53.83796406426797, 53.809076375885944, 53.55187671939096, 53.864471803645856, 53.864471803645856, 53.80903972625709, 53.52975086923267, 53.864471803645856, 53.52971923996491, 53.864471803645856, 53.5296490438886, 53.80915072481978, 54.021059534496196, 54.020849005752474, 53.83465312047732, 53.55187671939096, 53.864471803645856, 53.80890241146502, 53.52975086923267, 54.0209599818226, 53.845303866200666, 53.52971923996491, 54.020849005752474, 53.845303866200666, 54.22725596601593, 53.80890241146502, 53.80892746585745, 53.80909221822267, 54.020885788146515, 54.02097892369575, 53.83455966672514, 54.020746549558325, 53.80896520272324, 53.83455966672514, 54.02094959149155, 53.845303866200666, 53.83455966672514, 53.864471803645856, 53.83455966672514, 54.020847759299066, 53.845303866200666, 53.864471803645856, 53.80901818337243, 53.83455966672514, 53.52975086923267, 53.5296490438886, 53.83455966672514, 53.83455966672514, 53.83796406426797, 53.80892384370499, 54.020847759299066, 53.52971923996491, 53.80915072481978, 53.83455966672514, 53.83455966672514, 53.52971923996491, 53.55150694013349, 53.80892384370499, 53.80902089070886, 54.020849005752474, 53.80877462484214 ], "legendgroup": "", "lon": [ 14.728602599451175, 13.825501744421523, 13.825501744421523, 14.620250170964791, 14.339652967059697, 14.606452863528375, 13.825501744421523, 13.825501744421523, 14.339912750386873, 14.630616328039563, 13.825501744421523, 14.630780570299253, 13.825501744421523, 14.630604108154332, 14.339825653017522, 14.728615266067688, 14.728603318193455, 14.618480742664287, 14.606452863528375, 13.825501744421523, 14.339950759070799, 14.630616328039563, 14.72836000624202, 13.824118967817144, 14.630780570299253, 14.728603318193455, 13.824118967817144, 13.7785198325034, 14.339950759070799, 14.339827351797773, 14.339735499061648, 14.72847357406484, 14.728585056182643, 14.61843904754546, 14.728456965919694, 14.339689073546207, 14.61843904754546, 14.728666036211786, 13.824118967817144, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.728650838545583, 13.824118967817144, 13.825501744421523, 14.33973774800166, 14.61843904754546, 14.630616328039563, 14.630604108154332, 14.61843904754546, 14.61843904754546, 14.620250170964791, 14.33978531324949, 14.728650838545583, 14.630780570299253, 14.339825653017522, 14.61843904754546, 14.61843904754546, 14.630780570299253, 14.606512208167038, 14.33978531324949, 14.339754867144269, 14.728603318193455, 14.340041925554642 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-05 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-06 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6699, 6654, 6655, 6689, 6673, 6694, 6689, 6658, 6655, 6689, 6706, 6707, 6689, 6694, 6664, 6693, 6678, 6689, 6694, 6680, 6694, 6664, 6712, 6702, 6654, 6676, 6705, 6674, 6673, 6688, 6710, 6682, 6695, 6664, 6692, 6685, 6689, 6654, 6683, 6654, 6659, 6654, 6691, 6706, 6702, 6682, 6689, 6710, 6654, 6689, 6654, 6654, 6666, 6676, 6658, 6698, 6667, 6661, 6661, 6689, 6661, 6672, 6682, 6654 ], "ids": [ 6699, 6654, 6655, 6689, 6673, 6694, 6689, 6658, 6655, 6689, 6706, 6707, 6689, 6694, 6664, 6693, 6678, 6689, 6694, 6680, 6694, 6664, 6712, 6702, 6654, 6676, 6705, 6674, 6673, 6688, 6710, 6682, 6695, 6664, 6692, 6685, 6689, 6654, 6683, 6654, 6659, 6654, 6691, 6706, 6702, 6682, 6689, 6710, 6654, 6689, 6654, 6654, 6666, 6676, 6658, 6698, 6667, 6661, 6661, 6689, 6661, 6672, 6682, 6654 ], "lat": [ 53.80892746585745, 53.83455966672514, 53.80892384370499, 53.864471803645856, 53.80890241146502, 53.845303866200666, 53.864471803645856, 53.5296490438886, 53.80892384370499, 53.864471803645856, 53.80915072481978, 53.80902089070886, 53.864471803645856, 53.845303866200666, 53.52975086923267, 54.22725596601593, 53.83465312047732, 53.864471803645856, 53.845303866200666, 54.020746549558325, 53.845303866200666, 53.52975086923267, 53.83455966672514, 53.83631732580923, 53.83455966672514, 54.020847759299066, 53.55150694013349, 53.80903972625709, 53.80890241146502, 53.80909221822267, 53.55187671939096, 53.52971923996491, 54.0209599818226, 53.52975086923267, 54.02094959149155, 53.80877462484214, 53.864471803645856, 53.83455966672514, 53.80901818337243, 53.83455966672514, 53.80896520272324, 53.83455966672514, 54.02097892369575, 53.80915072481978, 53.83631732580923, 53.52971923996491, 53.864471803645856, 53.55187671939096, 53.83455966672514, 53.864471803645856, 53.83455966672514, 53.83455966672514, 53.809076375885944, 54.020847759299066, 53.5296490438886, 54.021059534496196, 54.02096962344496, 54.020849005752474, 54.020849005752474, 53.864471803645856, 54.020849005752474, 54.020885788146515, 53.52971923996491, 53.83455966672514 ], "legendgroup": "", "lon": [ 14.339827351797773, 14.61843904754546, 14.33978531324949, 13.825501744421523, 14.339950759070799, 13.824118967817144, 13.825501744421523, 14.630604108154332, 14.33978531324949, 13.825501744421523, 14.339825653017522, 14.339754867144269, 13.825501744421523, 13.824118967817144, 14.630616328039563, 13.7785198325034, 14.618480742664287, 13.825501744421523, 13.824118967817144, 14.728456965919694, 13.824118967817144, 14.630616328039563, 14.61843904754546, 14.619273503836133, 14.61843904754546, 14.728650838545583, 14.606512208167038, 14.339912750386873, 14.339950759070799, 14.339735499061648, 14.606452863528375, 14.630780570299253, 14.72836000624202, 14.630616328039563, 14.728666036211786, 14.340041925554642, 13.825501744421523, 14.61843904754546, 14.33973774800166, 14.61843904754546, 14.339689073546207, 14.61843904754546, 14.728585056182643, 14.339825653017522, 14.619273503836133, 14.630780570299253, 13.825501744421523, 14.606452863528375, 14.61843904754546, 13.825501744421523, 14.61843904754546, 14.61843904754546, 14.339652967059697, 14.728650838545583, 14.630604108154332, 14.728615266067688, 14.728602599451175, 14.728603318193455, 14.728603318193455, 13.825501744421523, 14.728603318193455, 14.72847357406484, 14.630780570299253, 14.61843904754546 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-06 00:00:00" }, { "data": [ { "hovertemplate": "%{hovertext}

Date=2023-03-07 00:00:00
lat=%{lat}
lon=%{lon}", "hovertext": [ 6693, 6689, 6694, 6664, 6673, 6694, 6654, 6654, 6654, 6655, 6699, 6661, 6672, 6691, 6654, 6676, 6694, 6688, 6692, 6654, 6659, 6680, 6654, 6682, 6707, 6654, 6664, 6712, 6706, 6666, 6661, 6698, 6678, 6674, 6664, 6658, 6689, 6689, 6689, 6689, 6710, 6667, 6689, 6695, 6689, 6702, 6694, 6676, 6706, 6661, 6705, 6682, 6685, 6710, 6682, 6655, 6658, 6654, 6683, 6689, 6673, 6689, 6654, 6702 ], "ids": [ 6693, 6689, 6694, 6664, 6673, 6694, 6654, 6654, 6654, 6655, 6699, 6661, 6672, 6691, 6654, 6676, 6694, 6688, 6692, 6654, 6659, 6680, 6654, 6682, 6707, 6654, 6664, 6712, 6706, 6666, 6661, 6698, 6678, 6674, 6664, 6658, 6689, 6689, 6689, 6689, 6710, 6667, 6689, 6695, 6689, 6702, 6694, 6676, 6706, 6661, 6705, 6682, 6685, 6710, 6682, 6655, 6658, 6654, 6683, 6689, 6673, 6689, 6654, 6702 ], "lat": [ 54.22725596601593, 53.864471803645856, 53.845303866200666, 53.52975086923267, 53.80890241146502, 53.845303866200666, 53.83455966672514, 53.83455966672514, 53.83455966672514, 53.80892384370499, 53.80892746585745, 54.020849005752474, 54.020885788146515, 54.02097892369575, 53.83455966672514, 54.020847759299066, 53.845303866200666, 53.80909221822267, 54.02094959149155, 53.83455966672514, 53.80896520272324, 54.020746549558325, 53.83455966672514, 53.52971923996491, 53.80902089070886, 53.83455966672514, 53.52975086923267, 53.83467058735049, 53.80915072481978, 53.809076375885944, 54.020849005752474, 54.021059534496196, 53.83465312047732, 53.80903972625709, 53.52975086923267, 53.5296490438886, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.864471803645856, 53.55187671939096, 54.02096962344496, 53.864471803645856, 54.0209599818226, 53.864471803645856, 53.83467058735049, 53.845303866200666, 54.020847759299066, 53.80915072481978, 54.020849005752474, 53.55150694013349, 53.52971923996491, 53.80877462484214, 53.55187671939096, 53.52971923996491, 53.80892384370499, 53.5296490438886, 53.83455966672514, 53.80901818337243, 53.864471803645856, 53.80890241146502, 53.864471803645856, 53.83455966672514, 53.83467058735049 ], "legendgroup": "", "lon": [ 13.7785198325034, 13.825501744421523, 13.824118967817144, 14.630616328039563, 14.339950759070799, 13.824118967817144, 14.61843904754546, 14.61843904754546, 14.61843904754546, 14.33978531324949, 14.339827351797773, 14.728603318193455, 14.72847357406484, 14.728585056182643, 14.61843904754546, 14.728650838545583, 13.824118967817144, 14.339735499061648, 14.728666036211786, 14.61843904754546, 14.339689073546207, 14.728456965919694, 14.61843904754546, 14.630780570299253, 14.339754867144269, 14.61843904754546, 14.630616328039563, 14.618296836707477, 14.339825653017522, 14.339652967059697, 14.728603318193455, 14.728615266067688, 14.618480742664287, 14.339912750386873, 14.630616328039563, 14.630604108154332, 13.825501744421523, 13.825501744421523, 13.825501744421523, 13.825501744421523, 14.606452863528375, 14.728602599451175, 13.825501744421523, 14.72836000624202, 13.825501744421523, 14.618296836707477, 13.824118967817144, 14.728650838545583, 14.339825653017522, 14.728603318193455, 14.606512208167038, 14.630780570299253, 14.340041925554642, 14.606452863528375, 14.630780570299253, 14.33978531324949, 14.630604108154332, 14.61843904754546, 14.33973774800166, 13.825501744421523, 14.339950759070799, 13.825501744421523, 14.61843904754546, 14.618296836707477 ], "marker": { "color": "#636efa" }, "mode": "markers", "name": "", "showlegend": false, "subplot": "mapbox", "type": "scattermapbox" } ], "name": "2023-03-07 00:00:00" } ], "layout": { "height": 800, "legend": { "tracegroupgap": 0 }, "mapbox": { "center": { "lat": 53.8303207459395, "lon": 14.36696856325709 }, "domain": { "x": [ 0, 1 ], "y": [ 0, 1 ] }, "style": "open-street-map", "zoom": 8 }, "margin": { "t": 60 }, "sliders": [ { "active": 0, "currentvalue": { "prefix": "Date=" }, "len": 0.9, "pad": { "b": 10, "t": 60 }, "steps": [ { "args": [ [ "2022-11-28 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-11-28 00:00:00", "method": "animate" }, { "args": [ [ "2022-11-29 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-11-29 00:00:00", "method": "animate" }, { "args": [ [ "2022-11-30 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-11-30 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-01 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-01 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-02 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-02 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-03 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-03 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-04 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-04 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-05 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-05 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-06 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-06 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-07 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-07 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-08 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-08 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-09 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-09 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-10 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-10 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-11 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-11 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-12 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-12 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-13 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-13 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-14 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-14 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-15 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-15 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-16 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-16 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-17 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-17 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-18 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-18 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-19 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-19 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-20 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-20 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-21 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-21 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-22 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-22 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-23 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-23 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-24 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-24 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-25 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-25 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-26 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-26 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-27 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-27 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-28 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-28 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-29 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-29 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-30 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-30 00:00:00", "method": "animate" }, { "args": [ [ "2022-12-31 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2022-12-31 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-01 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-01 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-02 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-02 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-03 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-03 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-04 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-04 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-05 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-05 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-06 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-06 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-07 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-07 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-08 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-08 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-09 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-09 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-10 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-10 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-11 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-11 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-12 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-12 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-13 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-13 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-14 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-14 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-15 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-15 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-16 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-16 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-17 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-17 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-18 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-18 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-19 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-19 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-20 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-20 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-21 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-21 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-22 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-22 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-23 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-23 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-24 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-24 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-25 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-25 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-26 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-26 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-27 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-27 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-28 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-28 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-29 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-29 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-30 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-30 00:00:00", "method": "animate" }, { "args": [ [ "2023-01-31 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-01-31 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-01 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-01 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-02 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-02 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-03 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-03 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-04 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-04 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-05 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-05 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-06 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-06 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-07 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-07 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-08 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-08 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-09 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-09 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-10 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-10 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-11 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-11 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-12 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-12 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-13 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-13 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-14 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-14 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-15 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-15 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-16 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-16 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-17 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-17 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-18 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-18 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-19 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-19 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-20 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-20 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-21 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-21 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-22 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-22 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-23 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-23 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-24 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-24 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-25 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-25 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-26 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-26 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-27 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-27 00:00:00", "method": "animate" }, { "args": [ [ "2023-02-28 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-02-28 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-01 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-01 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-02 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-02 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-03 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-03 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-04 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-04 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-05 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-05 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-06 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-06 00:00:00", "method": "animate" }, { "args": [ [ "2023-03-07 00:00:00" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2023-03-07 00:00:00", "method": "animate" } ], "x": 0.1, "xanchor": "left", "y": 0, "yanchor": "top" } ], "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 } } }, "updatemenus": [ { "buttons": [ { "args": [ null, { "frame": { "duration": 500, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 500, "easing": "linear" } } ], "label": "▶", "method": "animate" }, { "args": [ [ null ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "◼", "method": "animate" } ], "direction": "left", "pad": { "r": 10, "t": 70 }, "showactive": false, "type": "buttons", "x": 0.1, "xanchor": "right", "y": 0, "yanchor": "top" } ], "width": 1000 } } }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig = px.scatter_mapbox(\n", " dfs.loc[dfs.Date > \"2022-11-27\"],\n", " lat=\"lat\", lon=\"lon\",\n", " hover_name=\"ID\",\n", " mapbox_style=\"open-street-map\",\n", " animation_frame=\"Date\",\n", " animation_group=\"ID\",\n", " width=1000,\n", " height=800,\n", " )\n", "\n", "fig.show()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "alpaca", "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.11.5" } }, "nbformat": 4, "nbformat_minor": 2 }